@charset "UTF-8";

:root {
    --cor-primaria: #0A2540;
    --cor-secundaria: #00B4D8;
    --cor-fundo: #FAFAFA;
    --cor-fundo-header: rgba(255, 255, 255, 0.95);
    --cor-texto: #333333;
    --cor-texto-mutado: #666666;
    --cor-destaque: #128C7E;
    --cor-secundaria-texto: #007A93; 
    --cor-texto-mutado: #555555; 

    --fonte-padrao: 'Inter', system-ui, -apple-system, sans-serif;
    --text-sm: clamp(0.875rem, 0.8vw + 0.5rem, 1rem);
    --text-md: clamp(1rem, 1vw + 0.75rem, 1.125rem);

    --container-max: 1200px;
    --padding-container: clamp(1rem, 4vw, 2rem);
    --header-height: clamp(90px, 12vh, 120px);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    touch-action: manipulation;
}

body {
    min-height: 100vh;
    font-family: var(--fonte-padrao);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
    padding-top: var(--header-height);
}

*:focus-visible {
    outline: 3px solid var(--cor-secundaria);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
    color: var(--cor-primaria);
}

img,
picture,
svg,
video {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--padding-container);
}

/* --- 3. COMPONENTE: HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--cor-fundo-header);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    max-height: clamp(70px, 10vh, 90px);
    width: auto;
    object-fit: contain;
    transform-origin: left center;
}

/* Navegação Desktop */
.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    list-style: none;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cor-secundaria);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--cor-secundaria);
}

.btn-primary-nav {
    background-color: var(--cor-primaria);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    border: 1px solid var(--cor-primaria);
}

.btn-primary-nav:hover {
    background-color: transparent;
    color: var(--cor-primaria);
}

.mobile-menu-btn {
    display: none;
    z-index: 1001;
}

@media (width <=1024px) {
    .nav-list {
        gap: 1.5rem;
    }
}

@media (width <=768px) {
    .mobile-menu-btn {
        display: block;
        width: 48px;
        height: 48px;
        position: relative;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--cor-primaria);
        position: absolute;
        transition: transform 0.3s ease, opacity 0.3s ease;
        left: 9px;
    }

    .hamburger {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger::before {
        top: -8px;
        left: 0;
    }

    .hamburger::after {
        bottom: -8px;
        left: 0;
    }

    .hamburger {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        bottom: -8px;
    }

    .mobile-menu-btn.active .hamburger {
        background-color: transparent;
    }

    .mobile-menu-btn.active .hamburger::before {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active .hamburger::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80%, 350px);
        height: 100dvh;
        background-color: var(--cor-fundo);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .btn-primary-nav {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (width <=360px) {
    .nav-menu {
        width: 100%;
    }
}

/* --- 5. COMPONENTE: HERO SECTION --- */
.hero {
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.6) 0%, rgba(10, 37, 64, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    gap: 1.5rem;
    z-index: 1;
    padding-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.star-icon {
    color: #FFD700;
}

.hero-title {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    max-width: 900px;
}

.hero-subtitle {
    font-size: var(--text-md);
    font-weight: 400;
    color: #E2E8F0;
    max-width: 700px;
}

.hero-subtitle strong {
    color: var(--cor-secundaria);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-primary-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--cor-destaque);
    color: #FFFFFF;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-green 2s infinite;
}

.btn-primary-pulse:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    animation: none;
}

.wpp-icon {
    display: flex;
}

.micro-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (width <=1024px) {
    .hero-title {
        max-width: 800px;
        line-height: 1.15;
    }

    .hero-subtitle {
        max-width: 600px;
    }
}

@media (width <=768px) {
    .hero-content {
        align-items: flex-start;
        text-align: left;
        padding-bottom: 3rem;
        gap: 1.25rem;
    }

    .hero-actions {
        width: 100%;
        align-items: flex-start;
        margin-top: 0.5rem;
    }

    .btn-primary-pulse {
        width: 100%;
        justify-content: center;
    }
}

@media (width <=360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary-pulse {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .trust-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* --- 6. COMPONENTE: SEÇÃO DE RESULTADOS (ANTES E DEPOIS) --- */
.secao-resultados {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background-color: #FFFFFF;
}

.cabecalho-secao {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tag-secao {
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--cor-secundaria-texto);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.titulo-secao {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--cor-primaria);
}

.subtitulo-secao {
    font-size: var(--text-md);
    color: var(--cor-texto-mutado);
    max-width: 650px;
}

.grid-resultados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.card-resultado {
    background-color: var(--cor-fundo);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-resultado:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.comparacao-wrapper {
    display: flex;
    width: 100%;
}

.box-imagem {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.box-antes::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 2;
}

.img-fluida {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.card-resultado:hover .img-fluida {
    transform: scale(1.05);
}

.badge-status {
    position: absolute;
    top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    color: #FFFFFF;
    z-index: 3;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.badge-antes {
    left: 1rem;
    background-color: #EF4444;
}

.badge-depois {
    right: 1rem;
    background-color: var(--cor-destaque);
}

.info-resultado {
    padding: 1.5rem;
}

.titulo-card {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--cor-primaria);
}

.texto-card {
    font-size: 0.95rem;
    color: var(--cor-texto-mutado);
    line-height: 1.5;
}

@media (width <=1024px) {
    .grid-resultados {
        gap: 1.5rem;
    }

    .comparacao-wrapper {
        aspect-ratio: auto;
    }
}

@media (width <=768px) {
    .secao-resultados {
        padding: 3rem 0;
    }

    .cabecalho-secao {
        margin-bottom: 2rem;
        text-align: left;
        align-items: flex-start;
    }

    .titulo-secao {
        br {
            display: none;
        }

    }

    .comparacao-wrapper {
        flex-direction: column;
    }

    .box-imagem {
        width: 100%;
    }

    .box-antes::after {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: 0;
    }

    .badge-status {
        top: 0.75rem;
    }

    .badge-antes {
        left: 0.75rem;
    }

    .badge-depois {
        right: auto;
        left: 0.75rem;
    }
}

@media (width <=360px) {
    .titulo-secao {
        font-size: 1.6rem;
    }

    .info-resultado {
        padding: 1rem;
    }

    .titulo-card {
        font-size: 1.1rem;
    }

    .texto-card {
        font-size: 0.85rem;
    }
}

/* --- 7. COMPONENTE: BIOGRAFIA E AUTORIDADE --- */
.secao-sobre {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background-color: var(--cor-fundo);
    overflow: hidden;
}

.wrapper-sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.sobre-visual {
    position: relative;
    width: 100%;
}

.box-imagem-principal {
    position: relative;
    width: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
}

.img-sobre-destaque {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.box-imagem-principal:hover .img-sobre-destaque {
    transform: scale(1.03);
}

.selo-anos {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    background-color: var(--cor-primaria);
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.2);
    z-index: 2;
}

.numero-selo {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--cor-secundaria);
}

.texto-selo {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.box-imagem-secundaria {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 45%;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--cor-fundo);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.img-sobre-detalhe {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: bottom center;
}

.sobre-conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.titulo-secao-esquerda {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: var(--cor-primaria);
    margin: 1rem 0 1.5rem 0;
}

.texto-sobre {
    font-size: var(--text-md);
    color: var(--cor-texto-mutado);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.texto-sobre strong {
    color: var(--cor-primaria);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.icone-stat {
    width: 28px;
    height: 28px;
    color: var(--cor-secundaria);
    flex-shrink: 0;
}

.stat-titulo {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cor-primaria);
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--cor-texto-mutado);
}

.cta-sobre-wrapper {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.btn-whatsapp-sobre {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--cor-destaque);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-whatsapp-sobre::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(35deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-whatsapp-sobre:hover {
    background-color: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-sobre:hover::after {
    left: 120%;
}

.micro-copy-sobre {
    font-size: 0.85rem;
    color: var(--cor-texto-mutado);
    font-weight: 600;
}

@media (width <=1024px) {
    .wrapper-sobre {
        gap: 2rem;
    }

    .selo-anos {
        left: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }

    .numero-selo {
        font-size: 2.5rem;
    }

    .cta-sobre-wrapper {
        margin-top: 2rem;
    }

    .btn-whatsapp-sobre {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (width <=768px) {
    .wrapper-sobre {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .box-imagem-principal {
        width: 90%;
        margin: 0 auto;
    }



    .selo-anos {
        left: 5%;
        bottom: 1.5rem;
        transform: scale(1);
    }

    .box-imagem-secundaria {
        right: 0;
        bottom: -15%;
        width: 40%;
    }

    .sobre-conteudo {
        padding-top: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cta-sobre-wrapper {
        width: 100%;
        margin-top: 2.5rem;
        align-items: center;
        text-align: center;
    }

    .btn-whatsapp-sobre {
        width: 100%;
        justify-content: center;
    }
}

@media (width <=360px) {
    .secao-sobre {
        padding: 4rem 0;
    }

    .box-imagem-secundaria {
        display: none;
    }

    .box-imagem-principal {
        width: 100%;
        border-radius: 16px;
    }

    .selo-anos {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        width: 90%;
        justify-content: center;
    }

    .titulo-secao-esquerda {
        font-size: 1.7rem;
    }

    .stat-item {
        padding: 0.8rem 1rem;
    }

    .cta-sobre-wrapper {
        margin-top: 2rem;
        gap: 0.5rem;
    }

    .btn-whatsapp-sobre {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .btn-whatsapp-sobre svg {
        width: 18px;
        height: 18px;
    }

    .micro-copy-sobre {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* --- 8. COMPONENTE: SERVIÇOS E ESPECIALIDADES --- */
.secao-servicos {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background-color: var(--cor-primaria);
    color: #FFFFFF;
}

.cabecalho-claro .titulo-secao {
    color: #FFFFFF;
}

.cabecalho-claro .subtitulo-secao {
    color: rgba(255, 255, 255, 0.7);
}

.tag-clara {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--cor-secundaria);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 3rem;
}

.card-servico {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    isolation: isolate;
}

.bg-servico {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-servico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overlay-servico {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.1) 0%, rgba(10, 37, 64, 0.95) 90%);
    z-index: -1;
    transition: background-color 0.4s ease;
}

.conteudo-servico {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(2rem);
    transition: transform 0.4s ease;
}

.icone-servico {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.titulo-servico {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.desc-servico {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.link-servico {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cor-secundaria);
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.4s ease, gap 0.3s ease;
}

.link-absoluto {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.badge-premium {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #D4AF37;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (hover: hover) {
    .card-servico:hover .bg-servico img {
        transform: scale(1.08);
    }

    .card-servico:hover .overlay-servico {
        background: linear-gradient(180deg, rgba(10, 37, 64, 0.4) 0%, rgba(10, 37, 64, 1) 100%);
    }

    .card-servico:hover .conteudo-servico {
        transform: translateY(0);
    }

    .card-servico:hover .desc-servico,
    .card-servico:hover .link-servico {
        opacity: 1;
    }

    .card-servico:hover .link-servico {
        gap: 0.8rem;
    }
}

@media (width <=1024px) {
    .grid-servicos {
        gap: 1.5rem;
    }

    .card-servico {
        aspect-ratio: 3/4;
    }
}

@media (width <=768px) {
    .secao-servicos {
        padding: 4rem 0;
    }

    .conteudo-servico {
        transform: translateY(0);
        padding: 1.5rem 1.25rem;
    }

    .desc-servico,
    .link-servico {
        opacity: 1;
    }

    .overlay-servico {
        background: linear-gradient(180deg, rgba(10, 37, 64, 0.1) 0%, rgba(10, 37, 64, 0.95) 100%);
    }

    .icone-servico {
        font-size: 1.75rem;
    }

    .titulo-servico {
        font-size: 1.35rem;
    }
}

@media (width <=360px) {
    .cabecalho-secao {
        margin-bottom: 1.5rem;
    }

    .card-servico {
        aspect-ratio: auto;
        min-height: 380px;
    }

    .conteudo-servico {
        padding: 1.25rem 1rem;
        gap: 0.5rem;
    }

    .titulo-servico {
        font-size: 1.2rem;
    }

    .desc-servico {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .link-servico {
        font-size: 0.85rem;
    }

    .badge-premium {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
    }
}

/* --- 9. COMPONENTE: DIFERENCIAIS E VANTAGENS --- */
.secao-diferenciais {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background-color: #F8FAFC;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.grid-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
}

.card-diferencial {
    background-color: #FFFFFF;
    padding: clamp(2rem, 3vw, 2.5rem);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-diferencial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
}

.icone-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cor-secundaria);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card-diferencial:hover .icone-box {
    background-color: var(--cor-secundaria);
    color: #FFFFFF;
}

.icone-box svg {
    width: 30px;
    height: 30px;
}

.titulo-diferencial {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.desc-diferencial {
    font-size: 0.95rem;
    color: var(--cor-texto-mutado);
    line-height: 1.6;
}

@media (width <=1024px) {
    .grid-diferenciais {
        gap: 2rem;
    }
}

@media (width <=768px) {
    .secao-diferenciais {
        padding: 4rem 0;
    }

    .card-diferencial {
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .icone-box {
        margin-bottom: 1.25rem;
    }
}

@media (width <=360px) {
    .card-diferencial {
        padding: 1.5rem 1.25rem;
    }

    .icone-box {
        width: 50px;
        height: 50px;
    }

    .icone-box svg {
        width: 24px;
        height: 24px;
    }

    .titulo-diferencial {
        font-size: 1.15rem;
    }

    .desc-diferencial {
        font-size: 0.85rem;
    }
}

/* --- 10. COMPONENTE: DEPOIMENTOS (MARQUEE INFINITO CSS) --- */
.secao-depoimentos {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100vw;
    max-width: 100%;
    margin-top: 3rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
    padding: 1rem 0;
}

.marquee-track:hover,
.marquee-track:active {
    animation-play-state: paused;
}

.card-depoimento {
    width: clamp(300px, 80vw, 400px);
    background-color: #F8FAFC;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-depoimento:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.08);
}

.estrelas {
    color: #F59E0B;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.texto-depoimento {
    font-size: 1rem;
    color: var(--cor-texto-mutado);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.autor-depoimento {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
}

.avatar-autor {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--cor-primaria);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.avatar-autor.img-bg {
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

.nome-autor {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-primaria);
}

.cargo-autor {
    font-size: 0.85rem;
    color: var(--cor-secundaria-texto);
    font-weight: 600;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .card-depoimento {
        scroll-snap-align: center;
    }

    .marquee-wrapper {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (width <=1024px) {
    .marquee-wrapper {
        mask-image: none;
        -webkit-mask-image: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .marquee-wrapper::-webkit-scrollbar {
        display: none;
    }

    .marquee-track {
        animation: none !important;
        width: max-content;
        padding: 1rem 2rem;
        gap: 2rem;
    }

    .card-depoimento {
        width: 350px;
        padding: 1.5rem;
        scroll-snap-align: center;
    }
}

@media (width <=768px) {
    .secao-depoimentos {
        padding: 4rem 0;
    }

    .marquee-wrapper {
        margin-top: 2rem;
        padding-bottom: 1.5rem;
    }

    .marquee-track {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }

    .card-depoimento {
        width: 300px;
    }

    .texto-depoimento {
        font-size: 0.95rem;
    }
}

@media (width <=360px) {
    .marquee-track {
        padding: 1rem;
        gap: 1rem;
    }

    .card-depoimento {
        width: 270px;
        padding: 1.25rem;
    }

    .texto-depoimento {
        font-size: 0.9rem;
    }

    .avatar-autor {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .nome-autor {
        font-size: 0.95rem;
    }
}

/* --- 11. COMPONENTE: LOCALIZAÇÃO E MAPA --- */
.secao-localizacao {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background-color: var(--cor-fundo);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.wrapper-localizacao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.cabecalho-secao-esquerda {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lista-contatos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.item-contato {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: #FFFFFF;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.item-contato:hover {
    transform: translateX(5px);
}

.icone-contato {
    font-size: 1.5rem;
    background-color: rgba(0, 180, 216, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.titulo-contato {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 0.25rem;
}

.texto-contato {
    font-size: 0.95rem;
    color: var(--cor-texto-mutado);
    line-height: 1.4;
}

.destaque-texto {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cor-secundaria);
}

.micro-texto {
    display: block;
    font-size: 0.75rem;
    color: #94A3B8;
    margin-top: 0.25rem;
}

.link-email {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--cor-texto-mutado);
    margin-top: 0.25rem;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.link-email:hover {
    color: var(--cor-primaria);
    text-decoration-color: var(--cor-primaria);
}

.mt-btn {
    margin-top: 1rem;
}

.box-mapa {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
    border: 8px solid #FFFFFF;
}

.overlay-mapa {
    position: absolute;
    inset: 0;
    background-color: var(--cor-primaria);
    mix-blend-mode: color;
    opacity: 0.1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.box-mapa:hover .overlay-mapa {
    opacity: 0;
}

@media (width <=1024px) {
    .wrapper-localizacao {
        gap: 3rem;
    }

    .box-mapa {
        aspect-ratio: 1/1;
    }
}

@media (width <=768px) {
    .secao-localizacao {
        padding: 4rem 0;
    }

    .wrapper-localizacao {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cabecalho-secao-esquerda {
        align-items: center;
        text-align: center;
    }

    .item-contato {
        padding: 1rem;
    }

    .box-mapa {
        aspect-ratio: 4/3;
        border-width: 4px;
        border-radius: 16px;
    }

    .mt-btn {
        width: 100%;
    }
}

@media (width <=360px) {
    .secao-localizacao {
        padding: 3.5rem 0;
    }

    .lista-contatos {
        gap: 1rem;
    }

    .item-contato {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .icone-contato {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .titulo-contato {
        font-size: 1rem;
    }

    .texto-contato {
        font-size: 0.85rem;
    }

    .destaque-texto {
        font-size: 1rem;
    }

    .box-mapa {
        aspect-ratio: 1/1;
    }
}

/* --- 12. COMPONENTE: FAQ (SANFONA NATIVA) --- */
.secao-faq {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background-color: #F8FAFC;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.wrapper-faq {
    max-width: 800px;
    margin: 0 auto;
}

.lista-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.item-faq {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.item-faq:hover {
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.08);
}

.pergunta-faq {
    list-style: none;
    padding: clamp(1.25rem, 3vw, 1.5rem);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cor-primaria);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pergunta-faq::-webkit-details-marker {
    display: none;
}

.item-faq[open] .pergunta-faq {
    color: var(--cor-secundaria);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.icone-faq {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cor-secundaria);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.item-faq[open] .icone-faq {
    transform: rotate(45deg);
}

.resposta-faq {
    padding: 0 clamp(1.25rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.5rem);
    color: var(--cor-texto-mutado);
    font-size: 0.95rem;
    line-height: 1.6;
}

.resposta-faq p {
    margin-top: 1rem;
}

.item-faq::details-content {
    transition: content-visibility 0.3s allow-discrete;
}

@media (width <=1024px) {
    .wrapper-faq {
        max-width: 90%;
    }
}

@media (width <=768px) {
    .secao-faq {
        padding: 4rem 0;
    }

    .wrapper-faq {
        max-width: 100%;
    }

    .lista-faq {
        margin-top: 2rem;
    }

    .pergunta-faq {
        font-size: 1.05rem;
        padding: 1.25rem;
    }

    .resposta-faq {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (width <=360px) {
    .pergunta-faq {
        font-size: 0.95rem;
        padding: 1rem;
        line-height: 1.3;
    }

    .icone-faq {
        font-size: 1.25rem;
    }

    .resposta-faq {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
}

/* --- 13. COMPONENTE GLOBAL: WHATSAPP FLUTUANTE --- */
.btn-whatsapp-flutuante {
    position: fixed;
    bottom: clamp(1.5rem, 4vw, 2.5rem);
    right: clamp(1.5rem, 4vw, 2.5rem);
    background-color: var(--cor-destaque);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: float-wpp 3s ease-in-out infinite;
}

.btn-whatsapp-flutuante:hover {
    background-color: #1DA851;
    transform: scale(1.1);
    animation: none;
}

@keyframes float-wpp {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- 14. COMPONENTE: FOOTER --- */
.footer {
    background-color: #051320;
    color: rgba(255, 255, 255, 0.7);
    padding-top: clamp(4rem, 8vw, 6rem);
}

.footer-superior {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(3rem, 5vw, 4rem);
    padding-bottom: 4rem;
}

.logo-footer img {

    margin-bottom: 1.5rem;

}

.desc-footer {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.cnpj-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.5);
}

.badge-seguro {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--cor-destaque);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--fonte-padrao);
}

.titulo-footer {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lista-links-footer {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lista-links-footer a {
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.lista-links-footer a:hover {
    color: var(--cor-secundaria);
    padding-left: 5px;
}

.links-contato li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.icone-footer {
    font-size: 1.1rem;
}

.redes-sociais {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.link-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #FFFFFF;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.link-social:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-3px);
}

.link-social svg {
    width: 20px;
    height: 20px;
}

/* Barra Inferior (Legal e Assinatura) */
.footer-inferior {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #030a11;
}

.wrapper-inferior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copy-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.links-legais {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.links-legais a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.links-legais a:hover {
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}

.separador {
    color: rgba(255, 255, 255, 0.3);
}

.assinatura-agencia p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.frontlab-signature {
    position: relative;
    font-family: monospace, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    opacity: 0.6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.frontlab-signature::before,
.frontlab-signature::after {
    content: '';
    opacity: 0;
    color: var(--cor-destaque);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.frontlab-signature::before {
    content: '[';
    transform: translateX(10px);
}

.frontlab-signature::after {
    content: ']';
    transform: translateX(-10px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cor-destaque);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
    animation: serverPulse 2s infinite;
}

@keyframes serverPulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(37, 211, 102, 0.8);
    }

    100% {
        opacity: 0.4;
    }
}

.frontlab-signature:hover {
    opacity: 1;
    color: var(--cor-destaque);
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

.frontlab-signature:hover::before,
.frontlab-signature:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (width <=1024px) {
    .footer-superior {
        grid-template-columns: 1fr 1fr;
    }

    .footer-coluna:first-child {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

@media (width <=768px) {
    .footer-superior {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wrapper-inferior {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .copy-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .btn-whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (width <=360px) {
    .footer {
        padding-top: 3rem;
    }

    .desc-footer {
        font-size: 0.85rem;
    }

    .titulo-footer {
        font-size: 1.05rem;
    }

    .lista-links-footer a,
    .links-contato li {
        font-size: 0.85rem;
    }

    .btn-whatsapp-flutuante {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* --- 15. COMPONENTE: AVISO DE COOKIES --- */
.cookie-box {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 420px;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-box.mostrar {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-conteudo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icone {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icone svg {
    width: 20px;
    height: 20px;
}

.cookie-titulo {
    font-size: 1.05rem;
    color: var(--cor-primaria);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cookie-texto {
    font-size: 0.85rem;
    color: var(--cor-texto-mutado);
    line-height: 1.5;
}

.cookie-link {
    color: var(--cor-secundaria);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.cookie-link:hover {
    text-decoration-color: var(--cor-secundaria);
}

.cookie-botoes {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.cookie-botoes button {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-botoes button:active {
    transform: scale(0.97);
}

.btn-cookie-primario {
    background-color: var(--cor-primaria);
    color: #FFFFFF;
}

.btn-cookie-primario:hover {
    background-color: #0d3256;
}

.btn-cookie-secundario {
    background-color: #F1F5F9;
    color: var(--cor-texto);
}

.btn-cookie-secundario:hover {
    background-color: #E2E8F0;
}

@media (width <=1024px) {
    .cookie-box {
        bottom: 1.5rem;
        left: 1.5rem;
        max-width: 380px;
    }
}

@media (width <=768px) {
    .cookie-box {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 1.5rem 1.25rem;
    }

    .cookie-botoes {
        flex-direction: column-reverse;
    }

    .cookie-botoes button {
        width: 100%;
        padding: 0.9rem;
    }
}

@media (width <=360px) {
    .cookie-conteudo {
        gap: 0.75rem;
    }

    .cookie-icone {
        display: none;
    }

    .cookie-titulo {
        font-size: 1rem;
    }

    .cookie-texto {
        font-size: 0.8rem;
    }
}

/* --- 16. PÁGINAS LEGAIS (PRIVACIDADE E TERMOS) --- */

.pagina-legal {
    background-color: var(--cor-fundo);
    padding-top: var(--header-height);
}

.header-legal {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-voltar-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cor-texto-mutado);
    transition: color 0.3s ease;
}

.btn-voltar-home:hover {
    color: var(--cor-secundaria);
}

.container-legal {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 6rem) var(--padding-container);
}

.conteudo-documento {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cabecalho-documento {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.titulo-documento {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--cor-primaria);
    line-height: 1.2;
    margin: 1rem 0 0.5rem;
}

.data-atualizacao {
    font-size: 0.9rem;
    color: #94A3B8;
}

.texto-formatado {
    color: var(--cor-texto);
    line-height: 1.8;
}

.texto-formatado h2 {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin: 2.5rem 0 1rem;
}

.texto-formatado p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.texto-formatado ul {
    margin: 0 0 1.5rem 1.5rem;
}

.texto-formatado li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.texto-formatado strong {
    color: var(--cor-primaria);
}

.footer-legal {
    background-color: #051320;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4rem;
}

@media (width <=768px) {
    .container-legal {
        padding: 3rem var(--padding-container);
    }

    .conteudo-documento {
        padding: 2rem 1.5rem;
    }

    .texto-formatado h2 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem;
    }
}

@media (width <=360px) {
    .btn-voltar-home span {
        display: none;
    }

    .conteudo-documento {
        padding: 1.5rem 1rem;
    }

}