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

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

:root {
    /* Tema Amex — prateado / platinum */
    --d98u3k: #2C3E50;
    --q2su0cx: #95A5A6;
    --jx7q9: #006FCF;
    --b93kh: #F7F9FA;
    --y9apb: #1A1A1A;
    --y9apb-claro: #5D6D7E;
    --vd61: #FFFFFF;
    --u6uz22s: #4A4A4A;
    --wh9ps: #E8ECEF;
    --wh9ps-escuro: #6C757D;
    --n543uk5y: #000000;
    --cfy4t: #BDC3C7;
    
    --x30ws: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --dx5z3hwb: 'Montserrat', sans-serif;
    
    --pr00pk44: all 0.3s ease;
    --yq6dm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --r8g4t14: 0 6px 20px rgba(0, 0, 0, 0.1);
    --y618628: 0 12px 40px rgba(0, 0, 0, 0.14);
    --mkqc: 10px;
}

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

body {
    font-family: var(--x30ws);
    color: var(--y9apb);
    line-height: 1.7;
    background: var(--vd61);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

.d6k2c7zb .gxb8m3::after {
    left: 50%;
    transform: translateX(-50%);
}

.d6k2c7zb .jgcuk39x {
    margin-left: auto;
    margin-right: auto;
}

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

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

.jgcuk39x {
    font-size: 1.125rem;
    color: var(--y9apb-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(--vd61);
    box-shadow: var(--yq6dm);
    z-index: 1000;
    transition: var(--pr00pk44);
}

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

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

.j89ucesj17 {
    font-family: var(--dx5z3hwb);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--d98u3k);
}

.eyu96u4g4 {
    background: linear-gradient(135deg, var(--d98u3k), var(--jx7q9));
    -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(--y9apb);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--d98u3k);
    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(--d98u3k), var(--jx7q9));
    color: var(--vd61);
    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(--r8g4t14);
}

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

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

.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
   ═══════════════════════════════════════════════════════════════════════════ */
.me73f4u951 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #1a202c 0%, var(--d98u3k) 40%, #3d4f5f 70%, var(--q2su0cx) 100%);
    padding: 100px 20px 60px;
    overflow: hidden;
}

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

.kv392c9vv {
    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;
}

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

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

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

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

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

.t00t9k67 {
    background: var(--vd61);
    color: var(--d98u3k);
    box-shadow: var(--r8g4t14);
}

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

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

.wvgn4yn:hover {
    background: var(--vd61);
    color: var(--d98u3k);
}

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

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

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

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

.tfn2u7k87 img {
    border-radius: var(--mkqc);
    box-shadow: var(--r8g4t14);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.h9e95tp8 h2 {
    text-align: left;
}

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

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

.b3tk191gw {
    background: var(--b93kh);
    padding: 25px;
    border-radius: var(--mkqc);
    border-left: 4px solid var(--d98u3k);
    margin-bottom: 30px;
}

.b3tk191gw h3 {
    font-family: var(--dx5z3hwb);
    color: var(--d98u3k);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

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

.f7jsa59y0 {
    font-size: 1.1rem;
    color: var(--y9apb);
}

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

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

.x6mz25k37 {
    background: var(--vd61);
    padding: 40px 30px;
    border-radius: var(--mkqc);
    border-left: 4px solid var(--d98u3k);
    box-shadow: none;
    transition: var(--pr00pk44);
    text-align: left;
}

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

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

.v3txc88p5 {
    font-family: var(--dx5z3hwb);
    font-size: 1.4rem;
    color: var(--q2su0cx);
    margin-bottom: 15px;
}

.f6t894qk3 {
    color: var(--y9apb-claro);
    line-height: 1.7;
}

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

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

.e336p90 {
    background: linear-gradient(135deg, var(--b93kh) 0%, var(--vd61) 100%);
    padding: 30px;
    border-radius: var(--mkqc);
    border-left: 4px solid var(--d98u3k);
    transition: var(--pr00pk44);
}

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

.kx6b79 {
    font-family: var(--dx5z3hwb);
    font-size: 1.25rem;
    color: var(--d98u3k);
    margin-bottom: 10px;
}

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

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

.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(--mkqc);
    background: rgba(255, 255, 255, 0.08);
}

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

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

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

.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(--vd61);
    padding: 50px 40px;
    border-radius: var(--mkqc);
    box-shadow: var(--r8g4t14);
}

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

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

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

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

.nbh31f828 {
    background: var(--d98u3k);
    color: var(--vd61);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pr00pk44);
}

.nbh31f828:hover {
    background: var(--jx7q9);
    transform: scale(1.1);
}

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

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

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

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

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

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

.faq-item {
    background: var(--vd61);
    border: 2px solid var(--wh9ps);
    border-radius: var(--mkqc);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--pr00pk44);
}

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

.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(--q2su0cx);
    cursor: pointer;
    transition: var(--pr00pk44);
}

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

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

.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(--y9apb-claro);
    line-height: 1.7;
}

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

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

.zg7r7b h3 {
    font-family: var(--dx5z3hwb);
    font-size: 1.75rem;
    color: var(--q2su0cx);
    margin-bottom: 30px;
}

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

.zg7r7b .nk4gj39 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.zg7r7b .nk4gj39 strong {
    display: block;
    color: var(--q2su0cx);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.zg7r7b .nk4gj39 p {
    color: var(--y9apb-claro);
    line-height: 1.6;
}

.s108264024 {
    background: var(--vd61);
    padding: 40px;
    border-radius: var(--mkqc);
    box-shadow: var(--r8g4t14);
}

.bz7356 .y1svy10rmq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rdctn1 {
    margin-bottom: 25px;
}

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

.rdctn1 input,
.rdctn1 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--wh9ps);
    border-radius: var(--mkqc);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--pr00pk44);
}

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

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

.bx1k13ev2b {
    margin-top: 30px;
}

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

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

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

.btn-loading {
    display: none;
}

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

.sn1n2v5j15 a {
    color: var(--d98u3k);
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--mkqc);
    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
   ═══════════════════════════════════════════════════════════════════════════ */
.wgsk1r8u57 {
    background: linear-gradient(180deg, #1a202c 0%, var(--d98u3k) 45%, #3d4f5f 100%);
    color: var(--vd61);
    padding: 60px 20px 20px;
}

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

.n26353 h3,
.n26353 h4 {
    margin-bottom: 20px;
    font-family: var(--dx5z3hwb);
    color: var(--b93kh);
}

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

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

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

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

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

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

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

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

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

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

.gccrcjmv7 .s788k453 {
    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(--y618628);
    z-index: 999;
    color: var(--vd61);
    transition: var(--pr00pk44);
    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(--d98u3k);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--r8g4t14);
    z-index: 999;
    color: var(--vd61);
    transition: var(--pr00pk44);
}

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

.scroll-to-top:hover {
    background: var(--jx7q9);
    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(--vd61);
}

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

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

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

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

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

.legal-content p {
    color: var(--y9apb);
    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(--y9apb);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-notice {
    background: var(--b93kh);
    padding: 25px;
    border-radius: var(--mkqc);
    border-left: 4px solid var(--d98u3k);
    margin: 30px 0;
}

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

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

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

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

    .sobre-grid--invertido .tfn2u7k87 {
        order: 2;
    }
    
    .tfn2u7k87 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(--vd61);
        box-shadow: var(--y618628);
        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;
    }
    
    .rqujq2 {
        font-size: 2.5rem;
    }
    
    .dm15yz27x1 {
        font-size: 1.1rem;
    }
    
    .urhecb {
        flex-direction: column;
        gap: 15px;
    }
    
    .s2k3fh4f {
        width: 100%;
        text-align: center;
    }
    
    .gxb8m3 {
        font-size: 1.9rem;
    }
    
    .jgcuk39x {
        font-size: 1rem;
    }
    
    .jn85p37s6 {
        grid-template-columns: 1fr;
    }
    
    .y71fem {
        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;
    }
    
    .rzq7v331 {
        font-size: 1.1rem;
    }
    
    .grb3mg17 {
        gap: 20px;
    }
    
    .s108264024 {
        padding: 30px 25px;
    }
    
    .bz7356 .y1svy10rmq {
        grid-template-columns: 1fr;
    }
    
    .f65qpp {
        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) {
    .ura472 {
        padding: 0 15px;
    }
    
    .rqujq2 {
        font-size: 2rem;
    }
    
    .dm15yz27x1 {
        font-size: 1rem;
    }
    
    .gxb8m3 {
        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(--d98u3k); 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,
    .urhecb,
    .grb3mg17,
    .s108264024 {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .me73f4u951 {
        min-height: auto;
        padding: 40px 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}
