* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    overflow-x: hidden;
}

/* tabular para o counter não pular largura durante animação */
.contador {
    font-variant-numeric: tabular-nums;
    display: inline-block;
}

/* ── HEADER ── */
#main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* header rola junto com a página — sem efeito glass no scroll */
#main-header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.cabecalho {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1px 40px;
}

.logo img {
    height: 150px;
    display: block;
}

.opcoes {
    display: flex;
    align-items: center;
 
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 10px 28px;
    gap: 32px;
}

.opcoes a {
    text-decoration: none;
    color: #01182D;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.opcoes a:hover {
    opacity: 0.6;
}

/* ── BUSCA ── */
.buscarProduto {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

#lupaIcon {
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
}

.hamburguer {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #01182D;
    cursor: pointer;
    line-height: 1;
}

.search-container {
    display: none;
    align-items: center;
    background: rgba(255,255,255,0.7);
    border-radius: 999px;
    padding: 6px 16px;
    gap: 8px;
}

.search-container.ativo {
    display: flex;
}

.search-container input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #01182D;
    width: 200px;
}

.btn-fechar-busca {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #01182D;
    line-height: 1;
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-content h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 7vw, 50px);
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ── SCROLL INDICATOR (compartilhado entre páginas com hero) ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    z-index: 3;
    padding: 6px 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-scroll-indicator:hover .scroll-text {
    letter-spacing: 0.34em;
}

.hero-scroll-indicator .scroll-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    transition: letter-spacing 0.3s ease;
    animation: scrollBounce 1.6s ease-in-out infinite;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-scroll-indicator .scroll-track {
    position: relative;
    width: 18px;
    height: 18px;
    background: transparent;
    overflow: visible;
    animation: scrollBounce 1.6s ease-in-out infinite;
    animation-delay: 0.08s;
}

.hero-scroll-indicator .scroll-track::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.8px solid #fff;
    border-bottom: 1.8px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

.hero-scroll-indicator.escondido {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.btn-hero {
    display: inline-block;
    text-decoration: none;
    color: #01182D;
    font-size: 12px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 10px 22px;
    transition: background-color 0.2s, opacity 0.2s;
}

.btn-hero:hover {
    background-color: #01182D;
    color: #fff;
}

/* ── WHATSAPP ── */
.botaoWhats {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    background-color: #25D366;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.botaoWhats:hover {
    transform: scale(1.1);
    background-color: #359257;
}

/* ── MENU MOBILE — LIQUID GLASS ── */
.menu-mobile {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-mobile.aberto {
    opacity: 1;
    pointer-events: all;
}

/* camada de blur/glass */
.menu-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(28, 183, 183, 0.18) 0%,
        rgba(1, 24, 45, 0.55) 100%
    );
    backdrop-filter: blur(72px) saturate(180%) brightness(1.05);
    -webkit-backdrop-filter: blur(72px) saturate(180%) brightness(1.05);
}

/* reflexo especular no topo */
.menu-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 40%,
        rgba(28, 183, 183, 0.8) 60%,
        transparent 100%
    );
}

.menu-mobile-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 110px 36px 52px;
}

.menu-mobile-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 4px;
}

.menu-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition:
        opacity 0.45s ease calc(var(--i) * 0.06s),
        transform 0.45s ease calc(var(--i) * 0.06s),
        background 0.25s ease;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-mobile.aberto .menu-mobile-nav a {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.menu-mobile-nav a:active {
    background: rgba(28, 183, 183, 0.15);
}

.menu-mobile-nav .num {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1CB7B7;
    min-width: 22px;
    align-self: flex-start;
    margin-top: 6px;
}

.menu-mobile-nav .label {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 9vw, 48px);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
    letter-spacing: -0.01em;
}

/* brilho glass em cada card */
.menu-mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    border-radius: 1px;
}

.menu-mobile-nav a {
    position: relative;
    overflow: hidden;
}

/* brilho interno no hover */
.menu-mobile-nav a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(28,183,183,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.menu-mobile-nav a:hover::after {
    opacity: 1;
}

.menu-mobile-nav a:hover .label {
    color: #fff;
}

.menu-mobile-rodape {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.08em;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.38s;
}

.menu-mobile.aberto .menu-mobile-rodape {
    opacity: 1;
}

/* ── BOTTOM NAV ── */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* esconde nav e hamburguer do header */
    .opcoes,
    .hamburguer,
    #lupaIcon,
    .buscarProduto {
        display: none;
    }

    .cabecalho {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 12px 20px;
    }

    /* hero mobile */
    .hero-content {
        align-items: flex-start;
        padding: 0 28px;
        position: absolute;
        top: 50%;
        transform: translateY(-60%);
        left: 0;
        right: 0;
    }

    .hero-content h1 {
        text-align: left;
        font-size: clamp(36px, 11vw, 56px);
    }

    .btn-hero {
        position: absolute;
        bottom: 96px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    /* whatsapp sobe acima da bottom nav */
    .botaoWhats {
        bottom: 90px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 22px;
        background-color: #25D366;
    }

    /* ── BOTTOM NAV — card branco clean ── */
    .bottom-nav {
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        position: fixed;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 16px;
        right: 16px;
        z-index: 200;
        padding: 10px 6px;
        border-radius: 24px;
        background: #ffffff;
        border: 1px solid rgba(1, 24, 45, 0.06);
        box-shadow:
            0 -2px 8px rgba(1, 24, 45, 0.03),
            0 8px 28px rgba(1, 24, 45, 0.14),
            0 2px 6px rgba(1, 24, 45, 0.06);
    }

    .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 6px 4px;
        text-decoration: none;
        color: rgba(1, 24, 45, 0.42);
        border-radius: 14px;
        transition: color 0.2s ease, transform 0.2s ease;
        position: relative;
    }

    .bottom-nav-item i {
        font-size: 22px;
        line-height: 1;
        transition: transform 0.2s ease;
    }

    .bottom-nav-item span {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    /* item ativo — cor da marca + indicador teal */
    .bottom-nav-item.ativo {
        color: #01182D;
    }

    .bottom-nav-item.ativo i {
        transform: scale(1.06);
    }

    /* dot/pill teal indicador do ativo */
    .bottom-nav-item.ativo::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 3px;
        border-radius: 999px;
        background: #1CB7B7;
    }

    /* tap feedback */
    .bottom-nav-item:active {
        transform: scale(0.94);
        transition: transform 0.1s ease;
    }

    /* menu mobile some no mobile */
    .menu-mobile {
        display: none !important;
    }
}

/* ══════════════════════════════════════════
   FOOTER — Contato · Selos · Bottom
   ══════════════════════════════════════════ */
#main-footer {
    display: block;
    position: relative;
    z-index: 3;
}

/* ── CONTATO + MAPA ── */
.footer-contato {
    position: relative;
    padding: clamp(80px, 11vw, 140px) 24px;
    background: linear-gradient(160deg, #01182D 0%, #04284B 60%, #1CB7B7 180%);
    color: #fff;
    overflow: hidden;
}

.footer-contato::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -10%;
    width: 55%;
    height: 75%;
    background: radial-gradient(circle, rgba(28, 183, 183, 0.30) 0%, transparent 70%);
    pointer-events: none;
}

.footer-contato::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(28, 183, 183, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.footer-contato-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-contato-header {
    text-align: center;
    margin-bottom: 64px;
}

.footer-contato-header .home-eyebrow {
    color: #1CB7B7;
}

.footer-contato-header .home-eyebrow::before,
.footer-contato-header .home-eyebrow::after {
    background: #1CB7B7;
}

.footer-contato-titulo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-contato-titulo span:not(.sw):not(.sw-i) {
    color: #1CB7B7;
}

.footer-contato-sub {
    margin-top: 16px;
    font-size: clamp(14px, 1.3vw, 17px);
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: stretch;
}

.footer-contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-bloco {
    display: flex;
    gap: 18px;
    padding: 24px 24px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.footer-info-bloco:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 183, 183, 0.50);
    background: linear-gradient(
        180deg,
        rgba(28, 183, 183, 0.10) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

.footer-info-icone {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(28, 183, 183, 0.15);
    color: #1CB7B7;
    font-size: 20px;
}

.footer-info-conteudo h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.footer-info-conteudo p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.footer-info-conteudo strong {
    color: #fff;
    font-weight: 600;
}

.footer-info-conteudo a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info-conteudo a:hover {
    color: #1CB7B7;
}

.footer-mapa {
    position: relative;
    display: block;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.footer-mapa:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 183, 183, 0.50);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.footer-mapa iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-mapa-cta {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(1, 24, 45, 0.92);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease;
}

.footer-mapa:hover .footer-mapa-cta {
    background: #1CB7B7;
}

.footer-mapa-cta i {
    font-size: 14px;
}

/* ── SELOS · Certificados e Licenças (glass cards sobre navy) ── */
.footer-selos {
    position: relative;
    background: #01182D;
    padding: clamp(72px, 10vw, 120px) 24px;
    overflow: hidden;
}

/* glow sutil pra dar profundidade no navy */
.footer-selos::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(28, 183, 183, 0.10) 0%, transparent 65%);
    pointer-events: none;
}

.footer-selos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.footer-selo-bloco {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 30px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.footer-selo-bloco:hover {
    transform: translateY(-4px);
    border-color: rgba(28, 183, 183, 0.50);
    background: linear-gradient(
        180deg,
        rgba(28, 183, 183, 0.10) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

.footer-selo-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-selo-icone {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(28, 183, 183, 0.15);
    color: #1CB7B7;
    font-size: 20px;
}

.footer-selo-titulo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 28px);
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.footer-selo-texto {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.footer-selo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
}

.footer-selo-grid img {
    height: 130px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-selo-grid img:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

/* ── BOTTOM · Copyright · Links ── */
.footer-bottom {
    background: #01182D;
    padding: 28px 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.footer-bottom-brand .footer-bottom-logo {
    height: 120px;
    width: auto;
    display: block;
    opacity: 0.9;
}

.footer-bottom-links {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: #1CB7B7;
}

.footer-bottom-divisor {
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-copy {
    justify-self: end;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
}

/* ══════════════════════════════════════════
   FOOTER — Responsivo
   ══════════════════════════════════════════ */
@media (max-width: 960px) {
    .footer-contato-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-mapa {
        min-height: 320px;
    }

    .footer-selos-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footer-bottom-brand,
    .footer-bottom-links,
    .footer-bottom-copy {
        justify-self: center;
        text-align: center;
    }

    .footer-bottom-copy {
        align-items: center;
    }

    /* respiro acima da bottom-nav glass mobile */
    .footer-bottom {
        padding-bottom: 110px;
    }

    .footer-info-bloco {
        padding: 20px;
    }

    .footer-selo-grid img {
        height: 50px;
    }

    .footer-selo-bloco {
        padding: 26px 22px;
    }
}
