/* ═══════════════════════════════════════════════════════════════════════════
   ESTILOS CSS - SITE INSTITUCIONAL
   - Design Responsivo e Moderno
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & VARIÁVEIS
   ═══════════════════════════════════════════════════════════════════════════ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tema Amex — prateado / platinum */
    --c0m2xk: #2C3E50;
    --yudtg9j7: #95A5A6;
    --ehvf: #006FCF;
    --r9j8qpd: #F7F9FA;
    --zu73: #1A1A1A;
    --zu73-claro: #5D6D7E;
    --x42c: #FFFFFF;
    --p112: #4A4A4A;
    --d82bt4e9: #E8ECEF;
    --d82bt4e9-escuro: #6C757D;
    --n2a1a33k: #000000;
    --m986z: #BDC3C7;
    
    --u63mk6: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --p0ty: 'Montserrat', sans-serif;
    
    --t19s7: all 0.3s ease;
    --p0v4: 0 4px 12px rgba(0, 0, 0, 0.06);
    --sh423a5: 0 6px 20px rgba(0, 0, 0, 0.1);
    --nzyf6z5x: 0 12px 40px rgba(0, 0, 0, 0.14);
    --qa9w05b: 10px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--u63mk6);
    color: var(--zu73);
    line-height: 1.7;
    background: var(--x42c);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t19s7);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--t19s7);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITÁRIOS
   ═══════════════════════════════════════════════════════════════════════════ */
.h98vg5b6 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t16ct6zfb {
    text-align: center;
    margin-bottom: 50px;
}

.t16ct6zfb .vv066ew::after {
    left: 50%;
    transform: translateX(-50%);
}

.t16ct6zfb .gzj63jv5 {
    margin-left: auto;
    margin-right: auto;
}

.vv066ew {
    font-family: var(--p0ty);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yudtg9j7);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vv066ew::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--c0m2xk), var(--ehvf));
    border-radius: 2px;
}

.gzj63jv5 {
    font-size: 1.125rem;
    color: var(--zu73-claro);
    max-width: 700px;
    margin: 10px 0 0 0;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--x42c);
    box-shadow: var(--p0v4);
    z-index: 1000;
    transition: var(--t19s7);
}

.navbar.scrolled {
    box-shadow: var(--sh423a5);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.qdub33cg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.fz62n9kr {
    font-family: var(--p0ty);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c0m2xk);
}

.z3h7zwud5 {
    background: linear-gradient(135deg, var(--c0m2xk), var(--ehvf));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--zu73);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c0m2xk);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.nav-link-cta {
    background: linear-gradient(135deg, var(--c0m2xk), var(--ehvf));
    color: var(--x42c);
    padding: 10px 25px;
    border-radius: 25px;
}

.nav-link.nav-link-cta::after {
    display: none;
}

.nav-link.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh423a5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--c0m2xk);
    border-radius: 2px;
    transition: var(--t19s7);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.ce5fx0 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #1a202c 0%, var(--c0m2xk) 40%, #3d4f5f 70%, var(--yudtg9j7) 100%);
    padding: 100px 20px 60px;
    overflow: hidden;
}

.ce5fx0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_whhvy4zz.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.me73y53ekj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.12), transparent 55%);
    z-index: 0;
}

.p1qrsu {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.w8g505u {
    font-family: var(--p0ty);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--x42c);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fjxjy56 {
    font-size: 1.35rem;
    color: var(--r9j8qpd);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.q2p47u5y {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.jptw29 {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: var(--t19s7);
    cursor: pointer;
}

.fxtm7c8 {
    background: var(--x42c);
    color: var(--c0m2xk);
    box-shadow: var(--sh423a5);
}

.fxtm7c8:hover {
    transform: translateY(-3px);
    box-shadow: var(--nzyf6z5x);
}

.yn8cs2p {
    background: transparent;
    color: var(--x42c);
    border: 2px solid var(--x42c);
}

.yn8cs2p:hover {
    background: var(--x42c);
    color: var(--c0m2xk);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOBRE
   ═══════════════════════════════════════════════════════════════════════════ */
.k28p08k6j9 {
    padding: 100px 20px;
    background: var(--x42c);
}

.k8k9229 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-grid--invertido .uc920g {
    order: 2;
}

.sobre-grid--invertido .x8b3p01kg {
    order: 1;
}

.x8b3p01kg img {
    border-radius: var(--qa9w05b);
    box-shadow: var(--sh423a5);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.uc920g h2 {
    text-align: left;
}

.uc920g h2::after {
    left: 0;
    transform: none;
}

.bva3mzem {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--zu73-claro);
    margin-bottom: 30px;
}

.w3b7w1wd5x {
    background: var(--r9j8qpd);
    padding: 25px;
    border-radius: var(--qa9w05b);
    border-left: 4px solid var(--c0m2xk);
    margin-bottom: 30px;
}

.w3b7w1wd5x h3 {
    font-family: var(--p0ty);
    color: var(--c0m2xk);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.v6t9z635q {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.esx5t9 {
    flex: 1;
    min-width: 200px;
}

.zsu93jcc {
    display: block;
    font-weight: 600;
    color: var(--yudtg9j7);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.y5kpyc9v1 {
    font-size: 1.1rem;
    color: var(--zu73);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════════════════════════════════════════ */
.k5rm0u {
    padding: 100px 20px;
    background: var(--x42c);
}

.m9v9pz39 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bdan2qm4 {
    background: var(--x42c);
    padding: 40px 30px;
    border-radius: var(--qa9w05b);
    border-left: 4px solid var(--c0m2xk);
    box-shadow: none;
    transition: var(--t19s7);
    text-align: left;
}

.bdan2qm4:hover {
    transform: translateX(6px);
    box-shadow: var(--sh423a5);
    border-left-width: 6px;
}

.rjz67w7g7 {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: grayscale(0.2);
}

.j6853rj4t {
    font-family: var(--p0ty);
    font-size: 1.4rem;
    color: var(--yudtg9j7);
    margin-bottom: 15px;
}

.uwy8g2nh1b {
    color: var(--zu73-claro);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VALORES
   ═══════════════════════════════════════════════════════════════════════════ */
.r364u81pd {
    padding: 100px 20px;
    background: var(--x42c);
}

.w873u59k9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.eand29j7 {
    background: linear-gradient(135deg, var(--r9j8qpd) 0%, var(--x42c) 100%);
    padding: 30px;
    border-radius: var(--qa9w05b);
    border-left: 4px solid var(--c0m2xk);
    transition: var(--t19s7);
}

.eand29j7:hover {
    transform: translateX(8px);
    box-shadow: var(--sh423a5);
    border-left-width: 6px;
}

.qc7n52 {
    font-family: var(--p0ty);
    font-size: 1.25rem;
    color: var(--c0m2xk);
    margin-bottom: 10px;
}

.dk6qh4 {
    color: var(--zu73-claro);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ESTATÍSTICAS
   ═══════════════════════════════════════════════════════════════════════════ */
.estatisticas {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--c0m2xk) 0%, #3d4f5f 50%, var(--yudtg9j7) 100%);
    color: var(--x42c);
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 20px 15px;
    border-radius: var(--qa9w05b);
    background: rgba(255, 255, 255, 0.08);
}

.stat-numero {
    font-family: var(--p0ty);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--x42c);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--r9j8qpd);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DEPOIMENTOS
   ═══════════════════════════════════════════════════════════════════════════ */
.r0y51t {
    padding: 100px 20px;
    background: var(--r9j8qpd);
}

.depoimentos-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    min-height: 250px;
}

.depoimento-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    background: var(--x42c);
    padding: 50px 40px;
    border-radius: var(--qa9w05b);
    box-shadow: var(--sh423a5);
}

.depoimento-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.u9b1tq2 {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--zu73);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.u1sj0vk {
    font-weight: 600;
    color: var(--c0m2xk);
    text-align: center;
    font-size: 1.1rem;
}

.yy35s45x29 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.b9wpt6 {
    background: var(--c0m2xk);
    color: var(--x42c);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t19s7);
}

.b9wpt6:hover {
    background: var(--ehvf);
    transform: scale(1.1);
}

.b9wpt6 svg {
    width: 20px;
    height: 20px;
}

.cs224tca59 {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--d82bt4e9);
    transition: var(--t19s7);
}

.dot.active,
.dot:hover {
    background: var(--c0m2xk);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.p7x856 {
    padding: 100px 20px;
    background: var(--x42c);
}

.b01ufjd6a {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--x42c);
    border: 2px solid var(--d82bt4e9);
    border-radius: var(--qa9w05b);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--t19s7);
}

.faq-item:hover {
    border-color: var(--c0m2xk);
}

.faq-pergunta {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yudtg9j7);
    cursor: pointer;
    transition: var(--t19s7);
}

.faq-pergunta:hover {
    color: var(--c0m2xk);
}

.faq-icone {
    width: 24px;
    height: 24px;
    min-width: 24px;
    transition: transform 0.3s ease;
    color: var(--c0m2xk);
}

.faq-item.active .faq-icone {
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-resposta {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-resposta p {
    color: var(--zu73-claro);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTATO
   ═══════════════════════════════════════════════════════════════════════════ */
.mx9f2677 {
    padding: 100px 20px;
    background: #f0f4f8;
}

.j85qs8 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.bz8ac2r2q h3 {
    font-family: var(--p0ty);
    font-size: 1.75rem;
    color: var(--yudtg9j7);
    margin-bottom: 30px;
}

.y0mh1y5akk {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bz8ac2r2q .esx5t9 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.b9t4n3vn2 {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--c0m2xk);
    margin-top: 3px;
}

.bz8ac2r2q .esx5t9 strong {
    display: block;
    color: var(--yudtg9j7);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.bz8ac2r2q .esx5t9 p {
    color: var(--zu73-claro);
    line-height: 1.6;
}

.mjmz3v4q5m {
    background: var(--x42c);
    padding: 40px;
    border-radius: var(--qa9w05b);
    box-shadow: var(--sh423a5);
}

.esu7u167w .z6r14743d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.r9y71452z {
    margin-bottom: 25px;
}

.r9y71452z label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--yudtg9j7);
}

.r9y71452z input,
.r9y71452z textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--d82bt4e9);
    border-radius: var(--qa9w05b);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--t19s7);
}

.r9y71452z input:focus,
.r9y71452z textarea:focus {
    outline: none;
    border-color: var(--c0m2xk);
    box-shadow: 0 0 0 3px rgba(30, 90, 125, 0.1);
}

.r9y71452z textarea {
    resize: vertical;
    min-height: 120px;
}

.st3b3p7v5 {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--c0m2xk), var(--ehvf));
    color: var(--x42c);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--t19s7);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--nzyf6z5x);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.vq38w84 {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--zu73-claro);
}

.vq38w84 a {
    color: var(--c0m2xk);
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--qa9w05b);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.a35888 {
    background: linear-gradient(180deg, #1a202c 0%, var(--c0m2xk) 45%, #3d4f5f 100%);
    color: var(--x42c);
    padding: 60px 20px 20px;
}

.h4q0220g1t {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.s2nb43v8r5 h3,
.s2nb43v8r5 h4 {
    margin-bottom: 20px;
    font-family: var(--p0ty);
    color: var(--r9j8qpd);
}

.s2nb43v8r5 p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 10px;
}

.e07us0xf4e {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.dek7a06y {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dek7a06y a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--t19s7);
}

.dek7a06y a:hover {
    color: var(--ehvf);
    padding-left: 8px;
}

.u0snj305 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.v54942c7xe {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.ym6ahs30r {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--qa9w05b);
    margin-bottom: 20px;
}

.ym6ahs30r p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.fm7a8zg {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.fm7a8zg .c015sn {
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Links de políticas discretos - visíveis para crawlers, quase invisíveis para usuários */
.footer-legal-links {
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.footer-legal-links:hover {
    opacity: 0.6;
}

.footer-legal-links .legal-link {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.75rem;
    text-decoration: none;
}

.footer-legal-links .legal-link:hover {
    color: rgba(255, 255, 255, 0.5) !important;
    padding-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ═══════════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--nzyf6z5x);
    z-index: 999;
    color: var(--x42c);
    transition: var(--t19s7);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════════════════════════════════ */
.scroll-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--c0m2xk);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh423a5);
    z-index: 999;
    color: var(--x42c);
    transition: var(--t19s7);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    background: var(--ehvf);
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PÁGINAS LEGAIS
   ═══════════════════════════════════════════════════════════════════════════ */
.page-content {
    padding-top: 80px;
}

.legal-page {
    padding: 80px 20px;
    background: var(--x42c);
}

.legal-page h1 {
    font-family: var(--p0ty);
    font-size: 2.75rem;
    color: var(--yudtg9j7);
    margin-bottom: 15px;
}

.legal-intro {
    color: var(--zu73-claro);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--p0ty);
    font-size: 1.75rem;
    color: var(--c0m2xk);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--yudtg9j7);
    margin: 25px 0 15px;
}

.legal-content p {
    color: var(--zu73);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--zu73);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-notice {
    background: var(--r9j8qpd);
    padding: 25px;
    border-radius: var(--qa9w05b);
    border-left: 4px solid var(--c0m2xk);
    margin: 30px 0;
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE FIRST
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablets */
@media (max-width: 1024px) {
    .vv066ew {
        font-size: 2.2rem;
    }
    
    .k8k9229,
    .j85qs8 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-grid--invertido .uc920g {
        order: 1;
    }

    .sobre-grid--invertido .x8b3p01kg {
        order: 2;
    }
    
    .x8b3p01kg img {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--x42c);
        box-shadow: var(--nzyf6z5x);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .w8g505u {
        font-size: 2.5rem;
    }
    
    .fjxjy56 {
        font-size: 1.1rem;
    }
    
    .q2p47u5y {
        flex-direction: column;
        gap: 15px;
    }
    
    .jptw29 {
        width: 100%;
        text-align: center;
    }
    
    .vv066ew {
        font-size: 1.9rem;
    }
    
    .gzj63jv5 {
        font-size: 1rem;
    }
    
    .m9v9pz39 {
        grid-template-columns: 1fr;
    }
    
    .w873u59k9 {
        grid-template-columns: 1fr;
    }
    
    .estatisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-numero {
        font-size: 2.75rem;
    }
    
    .depoimento-card {
        padding: 30px 25px;
    }
    
    .u9b1tq2 {
        font-size: 1.1rem;
    }
    
    .yy35s45x29 {
        gap: 20px;
    }
    
    .mjmz3v4q5m {
        padding: 30px 25px;
    }
    
    .esu7u167w .z6r14743d {
        grid-template-columns: 1fr;
    }
    
    .h4q0220g1t {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .h98vg5b6 {
        padding: 0 15px;
    }
    
    .w8g505u {
        font-size: 2rem;
    }
    
    .fjxjy56 {
        font-size: 1rem;
    }
    
    .vv066ew {
        font-size: 1.7rem;
    }
    
    .estatisticas-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .scroll-to-top {
        bottom: 85px;
        right: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════════════════════════════════════════ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #e0e0e0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    font-size: 0.85rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
}
.cookie-consent p { margin: 0; }
.cookie-consent a { color: var(--c0m2xk); text-decoration: underline; }
.cookie-consent .btn-sm { padding: 8px 20px; font-size: 0.8rem; white-space: nowrap; }
@media (max-width: 600px) {
    .cookie-consent { flex-direction: column; gap: 10px; text-align: center; padding: 14px 16px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-to-top,
    .q2p47u5y,
    .yy35s45x29,
    .mjmz3v4q5m {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .ce5fx0 {
        min-height: auto;
        padding: 40px 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}
