/* Home page — estilos específicos (layout geral vem de theme.css) */

.home-logo-banner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem 20px;
}

.home-logo-banner-img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

@media (max-width: 640px) {
    .home-logo-banner {
        padding: 2rem 1rem 20px;
    }
    .home-logo-banner-img {
        max-width: 340px;
    }
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    padding: 2rem 2rem 4rem;
}

.home-logo-banner + .hero { padding-top: 2rem; }

.hero-eyebrow {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 52ch;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ============================================================
 * Hero visual — main-card + floating-cards (Fase 9.x)
 * ============================================================ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-card {
    position: relative;
    background: var(--gradient-card);
    box-shadow: var(--shadow-md);
    padding: 2.4rem 2rem;
    z-index: 2;
}
.card-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), #d4a657);
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(212, 166, 87, 0.35);
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(212, 166, 87, 0.12);
}
.card-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.card-icon {
    width: 50px; height: 50px;
    background: rgba(212, 166, 87, 0.1);
    border: 1px solid rgba(212, 166, 87, 0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem;
}

.benefits-list {
    list-style: none;
    margin: 0; padding: 0;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-check {
    width: 26px; height: 26px;
    background: rgba(45, 134, 89, 0.18);
    color: #4ade80;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.benefit-text {
    flex: 1;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 500;
}
.benefit-value {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* Floating cards — flutuam ao redor do main-card. Aqui o efeito faz sentido
   porque é hero/landing, não listagem. Empurramos os cards bem pra fora pra
   não atrapalhar a leitura da tabela central. */
.floating-card {
    position: absolute;
    background: var(--gradient-card);
    border: 1px solid rgba(212, 166, 87, 0.18);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    animation: hero-float 5s ease-in-out infinite;
    max-width: 240px;
}
.float-card-1 {
    top: -68px;       /* sobe bem mais — fica acima do badge "Em destaque" */
    left: -56px;
}
.float-card-2 {
    bottom: -56px;    /* desce pra fora do main-card */
    right: -56px;
    animation-delay: 2.5s;
}
.float-icon {
    width: 44px; height: 44px;
    background: rgba(212, 166, 87, 0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.float-logo {
    width: 60px; height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}
.float-text { font-size: 0.86rem; line-height: 1.3; min-width: 0; }
.float-text strong {
    display: block;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.float-text span { color: var(--accent); font-size: 0.78rem; font-weight: 600; }

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
    .floating-card { animation: none; }
}

/* Em telas estreitas, floating cards podem encostar nas bordas — colapsa o
   layout pra single column e some o visual (texto + grid de parceiros bastam). */
@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 2rem 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   Destaques VIP — empresas selecionadas pelo master (Fase 11)
   ============================================================ */
.destaques-vip {
    padding: 4rem 0 2rem;
}

.destaques-vip-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.destaques-vip-eyebrow {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a2e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.destaques-vip-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 0.6rem;
    line-height: 1.2;
}

.destaques-vip-header h2 em {
    color: #d4af37;
    font-style: normal;
}

.destaques-vip-header p {
    color: var(--text-muted, #888);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
}

.destaques-vip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 14px;
}

@media (max-width: 900px) {
    .destaques-vip-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.dvip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #1a1a2e;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid #d4af37;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18),
                0 0 0 6px rgba(212, 175, 55, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dvip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(212, 175, 55, 0.32),
                0 0 0 6px rgba(212, 175, 55, 0.14);
}

.dvip-badge {
    position: absolute;
    top: -14px;
    left: 18px;
    z-index: 3;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.dvip-media {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf6e8 0%, #f4ebcc 100%);
    padding: 1.5rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.dvip-logo {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.dvip-logo-vazio {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
}

.dvip-body {
    padding: 1.3rem 1.3rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.dvip-titulo {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
    line-height: 1.3;
}

.dvip-oferta {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
    border-left: 3px solid #d4af37;
    border-radius: 6px;
}

.dvip-oferta-label {
    font-size: 0.72rem;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.dvip-oferta-valor {
    font-size: 1.1rem;
    font-weight: 800;
    color: #b8941f;
}

.dvip-cat {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid;
    width: fit-content;
}

.dvip-ufs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
}

.dvip-uf {
    background: #f0ebd8;
    color: #5c4a1f;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}

.dvip-uf.nacional {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a2e;
}

.dvip-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a1628 100%);
    color: #d4af37;
    font-weight: 700;
    font-size: 0.92rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.dvip-cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.18s ease;
}

.dvip-card:hover .dvip-cta-arrow {
    transform: translateX(4px);
}

/* Partners */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partners-ver-mais {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.25rem 2.6rem;
    background: linear-gradient(135deg, var(--accent, #d4af37) 0%, #b8941f 100%);
    color: #1a1a2e;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-pill, 999px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-ver-mais:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, #e6c14a 0%, #d4a730 100%);
}

.btn-ver-mais:active {
    transform: translateY(0);
}

.btn-ver-mais-arrow {
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.btn-ver-mais:hover .btn-ver-mais-arrow {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .btn-ver-mais {
        padding: 1.05rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        max-width: 360px;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
    padding: 2.2rem 1.3rem 1.8rem;
    overflow: visible;  /* deixa as flags "saírem" pra cima */
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.partner-logo {
    width: 100%;
    max-width: 220px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0.6rem;
    background: transparent;
    padding: 0;
}

.partner-logo-vazio {
    width: 100%;
    max-width: 220px;
    height: 150px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(212, 166, 87, 0.15), rgba(212, 166, 87, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.partner-card h3 {
    font-size: 1.2rem;
    font-weight: 700;       /* negrito, conforme pedido */
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.partner-card .text-muted {
    color: #fff;             /* categoria em branco — legibilidade pra todos os perfis */
    opacity: 0.92;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Oferta (melhor desconto disponível) ----------------------------- */
.partner-oferta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #d4a657);
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(212, 166, 87, 0.3);
    white-space: nowrap;
}

/* Flags NOVO e SUPER CONVÊNIO — flutuantes acima do card --------- */
.partner-flags {
    position: absolute;
    top: -0.7rem;            /* sai pra fora da borda superior */
    left: 0.8rem;
    right: 0.8rem;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 2;
}
.partner-flag {
    position: relative;
    display: inline-block;
    padding: 0.36rem 0.85rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;          /* clipa o shimmer dentro do badge */
    isolation: isolate;        /* mantém o ::after isolado do empilhamento do card */
}
/* Shimmer: faixa de luz cruza a tag a cada 4.5s — pausa, brilha, pausa.
   Mais elegante que um movimento contínuo; não desloca o badge. */
.partner-flag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: flag-shimmer 4.5s ease-in-out infinite;
    pointer-events: none;
}
.flag-super {
    background: linear-gradient(135deg, #b88a30, #f0c87b);
    color: #1a1a1a;
    box-shadow: 0 4px 14px rgba(212, 166, 87, 0.5);
}
.flag-novo {
    background: linear-gradient(135deg, #228a55, #34b878);
    color: #fff;
    margin-left: auto;         /* empurra pra direita quando SUPER também aparece */
    box-shadow: 0 4px 14px rgba(45, 134, 89, 0.5);
}
.flag-novo::after {
    animation-delay: 2.25s;     /* desencontra os brilhos das duas flags */
}

@keyframes flag-shimmer {
    /* O shimmer cruza rápido (~0.9s) e pausa o resto do ciclo. */
    0%   { left: -120%; }
    18%  { left: 220%; }
    100% { left: 220%; }
}

/* Respeita preferência de redução de movimento (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
    .partner-flag::after { animation: none; display: none; }
}

/* CTA */
.cta {
    padding: 4rem 2rem;
}

.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-hover);
}

.cta-box h2 {
    margin-bottom: 0.75rem;
}

.cta-box p {
    max-width: 50ch;
    margin: 0 auto 1.5rem;
}

/* CTA "Seja parceiro" — para empresas (Fase 11) */
.cta-parceiro {
    padding: 0 2rem 4rem;
}

.cta-parceiro-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem 2.2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a1628 100%);
    color: #f4ebcc;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.cta-parceiro-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.cta-parceiro-icon {
    font-size: 3.4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.cta-parceiro-content {
    min-width: 0;
}

.cta-parceiro-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.4rem;
}

.cta-parceiro-content h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
    line-height: 1.25;
}

.cta-parceiro-content h2 em {
    color: #d4af37;
    font-style: normal;
}

.cta-parceiro-content p {
    margin: 0;
    color: rgba(244, 235, 204, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-parceiro-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.7rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.32);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    flex-shrink: 0;
}

.btn-parceiro-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(212, 175, 55, 0.45);
}

.btn-parceiro-cta span:last-child {
    transition: transform 0.18s ease;
}

.btn-parceiro-cta:hover span:last-child {
    transform: translateX(4px);
}

@media (max-width: 860px) {
    .cta-parceiro-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }
    .cta-parceiro-icon {
        margin: 0 auto;
        font-size: 3rem;
    }
    .btn-parceiro-cta {
        justify-content: center;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* Responsivo */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
 * Wrapper topo-claro (Fase 10) — pattern de losangos dourados aplicado só
 * na faixa hero + stats + banners. A partir de "Marcas que valorizam você"
 * volta ao navy puro do bg-primary. Pattern fica em opacity baixa pra não
 * competir com o conteúdo, mas o suficiente pra dar textura visível.
 * ============================================================ */
.topo-claro {
    position: relative;
}
.bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50L50 0z' fill='%23d4af37' fill-opacity='1'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.hero, .stats, .banners { position: relative; z-index: 1; }

/* ============================================================
 * Carrossel de banners (Fase 10) — entre stats e partners.
 * Master gerencia em /master/banners; auto-rotate 5s; pausa no hover.
 * ============================================================ */
.banners {
    padding: 0.5rem 2rem 2.5rem;
}
.banners-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 166, 87, 0.15);
}
.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.4s ease;
    display: block;
    text-decoration: none;
}
.banner-slide.is-active { opacity: 1; z-index: 1; }
/* Hover sutil só quando o slide é clicável (tag <a>) */
a.banner-slide:hover { transform: scale(1.01); }
.banners-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}
.banners-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.banners-dot:hover { background: rgba(255, 255, 255, 0.4); }
.banners-dot.is-active {
    background: var(--accent);
    transform: scale(1.35);
}
@media (max-width: 720px) {
    .banners { padding: 0.5rem 1rem 2rem; }
}
@media (prefers-reduced-motion: reduce) {
    .banner-slide { transition: none; }
}
