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

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

:root {
    /* Tema Amex — prateado / platinum */
    --w6vv: #2C3E50;
    --b9akkmj: #95A5A6;
    --r72dj2w: #006FCF;
    --s6579: #F7F9FA;
    --d05a1ha: #1A1A1A;
    --d05a1ha-claro: #5D6D7E;
    --atxy69: #FFFFFF;
    --k8wmut9: #4A4A4A;
    --n88n: #E8ECEF;
    --n88n-escuro: #6C757D;
    --yacs45: #000000;
    --pung6: #BDC3C7;
    
    --v9gpmj: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mdrs: 'Montserrat', sans-serif;
    
    --xepvc6s: all 0.3s ease;
    --p4m6d5: 0 4px 12px rgba(0, 0, 0, 0.06);
    --qjg8nf82: 0 6px 20px rgba(0, 0, 0, 0.1);
    --kua35: 0 12px 40px rgba(0, 0, 0, 0.14);
    --q2641: 10px;
}

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

body {
    font-family: var(--v9gpmj);
    color: var(--d05a1ha);
    line-height: 1.7;
    background: var(--atxy69);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

.hh1f08 .wu59sa::after {
    left: 50%;
    transform: translateX(-50%);
}

.hh1f08 .h92k6cue {
    margin-left: auto;
    margin-right: auto;
}

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

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

.h92k6cue {
    font-size: 1.125rem;
    color: var(--d05a1ha-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(--atxy69);
    box-shadow: var(--p4m6d5);
    z-index: 1000;
    transition: var(--xepvc6s);
}

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

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

.rqh4aqa4e6 {
    font-family: var(--mdrs);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--w6vv);
}

.xe6fcq {
    background: linear-gradient(135deg, var(--w6vv), var(--r72dj2w));
    -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(--d05a1ha);
    position: relative;
    padding: 5px 0;
}

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

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

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

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

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

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

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

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

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

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

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

.hu9k1as {
    background: var(--atxy69);
    color: var(--w6vv);
    box-shadow: var(--qjg8nf82);
}

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

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

.zbnete958j:hover {
    background: var(--atxy69);
    color: var(--w6vv);
}

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

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

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

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

.g08z106f2 img {
    border-radius: var(--q2641);
    box-shadow: var(--qjg8nf82);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.bwmx57 h2 {
    text-align: left;
}

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

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

.u2200s1 {
    background: var(--s6579);
    padding: 25px;
    border-radius: var(--q2641);
    border-left: 4px solid var(--w6vv);
    margin-bottom: 30px;
}

.u2200s1 h3 {
    font-family: var(--mdrs);
    color: var(--w6vv);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

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

.snd36b {
    font-size: 1.1rem;
    color: var(--d05a1ha);
}

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

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

.tr2k12 {
    background: var(--atxy69);
    padding: 40px 30px;
    border-radius: var(--q2641);
    border-left: 4px solid var(--w6vv);
    box-shadow: none;
    transition: var(--xepvc6s);
    text-align: left;
}

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

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

.q80e839ft {
    font-family: var(--mdrs);
    font-size: 1.4rem;
    color: var(--b9akkmj);
    margin-bottom: 15px;
}

.vkfngh9d {
    color: var(--d05a1ha-claro);
    line-height: 1.7;
}

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

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

.g6s94zefy {
    background: linear-gradient(135deg, var(--s6579) 0%, var(--atxy69) 100%);
    padding: 30px;
    border-radius: var(--q2641);
    border-left: 4px solid var(--w6vv);
    transition: var(--xepvc6s);
}

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

.p542hqrb {
    font-family: var(--mdrs);
    font-size: 1.25rem;
    color: var(--w6vv);
    margin-bottom: 10px;
}

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

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

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

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

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

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

.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(--atxy69);
    padding: 50px 40px;
    border-radius: var(--q2641);
    box-shadow: var(--qjg8nf82);
}

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

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

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

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

.rn547c87 {
    background: var(--w6vv);
    color: var(--atxy69);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--xepvc6s);
}

.rn547c87:hover {
    background: var(--r72dj2w);
    transform: scale(1.1);
}

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

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

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

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

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

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

.faq-item {
    background: var(--atxy69);
    border: 2px solid var(--n88n);
    border-radius: var(--q2641);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--xepvc6s);
}

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

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

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

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

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

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

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

.x1zm0z0 h3 {
    font-family: var(--mdrs);
    font-size: 1.75rem;
    color: var(--b9akkmj);
    margin-bottom: 30px;
}

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

.x1zm0z0 .bk11zy0 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.x1zm0z0 .bk11zy0 strong {
    display: block;
    color: var(--b9akkmj);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.x1zm0z0 .bk11zy0 p {
    color: var(--d05a1ha-claro);
    line-height: 1.6;
}

.d153dwh {
    background: var(--atxy69);
    padding: 40px;
    border-radius: var(--q2641);
    box-shadow: var(--qjg8nf82);
}

.q19akc7 .vr80169 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.f7f6ex1nb {
    margin-bottom: 25px;
}

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

.f7f6ex1nb input,
.f7f6ex1nb textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--n88n);
    border-radius: var(--q2641);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--xepvc6s);
}

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

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

.sug1fu95zc {
    margin-top: 30px;
}

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

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

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

.btn-loading {
    display: none;
}

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

.t001cf0f9 a {
    color: var(--w6vv);
    text-decoration: underline;
}

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

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

.naw07vzyt h3,
.naw07vzyt h4 {
    margin-bottom: 20px;
    font-family: var(--mdrs);
    color: var(--s6579);
}

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

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

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

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

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

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

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

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

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

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

.jrck5fmtc5 .jxm32wh9 {
    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(--kua35);
    z-index: 999;
    color: var(--atxy69);
    transition: var(--xepvc6s);
    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(--w6vv);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--qjg8nf82);
    z-index: 999;
    color: var(--atxy69);
    transition: var(--xepvc6s);
}

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

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

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

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

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

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

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

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

.legal-notice {
    background: var(--s6579);
    padding: 25px;
    border-radius: var(--q2641);
    border-left: 4px solid var(--w6vv);
    margin: 30px 0;
}

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

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

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

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

    .sobre-grid--invertido .g08z106f2 {
        order: 2;
    }
    
    .g08z106f2 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(--atxy69);
        box-shadow: var(--kua35);
        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;
    }
    
    .ry4aj5 {
        font-size: 2.5rem;
    }
    
    .tdcf91n36c {
        font-size: 1.1rem;
    }
    
    .qnhg5x8 {
        flex-direction: column;
        gap: 15px;
    }
    
    .nv36802xrz {
        width: 100%;
        text-align: center;
    }
    
    .wu59sa {
        font-size: 1.9rem;
    }
    
    .h92k6cue {
        font-size: 1rem;
    }
    
    .ypnc62k {
        grid-template-columns: 1fr;
    }
    
    .be22u3c4 {
        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;
    }
    
    .f7t0vj26 {
        font-size: 1.1rem;
    }
    
    .hgz9jt {
        gap: 20px;
    }
    
    .d153dwh {
        padding: 30px 25px;
    }
    
    .q19akc7 .vr80169 {
        grid-template-columns: 1fr;
    }
    
    .v5388rgw30 {
        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) {
    .d6941a7b2 {
        padding: 0 15px;
    }
    
    .ry4aj5 {
        font-size: 2rem;
    }
    
    .tdcf91n36c {
        font-size: 1rem;
    }
    
    .wu59sa {
        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(--w6vv); 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,
    .qnhg5x8,
    .hgz9jt,
    .d153dwh {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .c1tx6e5 {
        min-height: auto;
        padding: 40px 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}
