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

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

:root {
    /* Tema Amex — prateado / platinum */
    --e97129: #2C3E50;
    --dd8647: #95A5A6;
    --zysddu2x: #006FCF;
    --c02x: #F7F9FA;
    --h57as7: #1A1A1A;
    --h57as7-claro: #5D6D7E;
    --q17y: #FFFFFF;
    --j8sj9: #4A4A4A;
    --d0qk26v7: #E8ECEF;
    --d0qk26v7-escuro: #6C757D;
    --u7m48evj: #000000;
    --x775s0: #BDC3C7;
    
    --wyj6: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --xxb0cv3m: 'Montserrat', sans-serif;
    
    --yf4tpc: all 0.3s ease;
    --k51pv1wh: 0 4px 12px rgba(0, 0, 0, 0.06);
    --u03gd5: 0 6px 20px rgba(0, 0, 0, 0.1);
    --r240: 0 12px 40px rgba(0, 0, 0, 0.14);
    --pb5j: 10px;
}

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

body {
    font-family: var(--wyj6);
    color: var(--h57as7);
    line-height: 1.7;
    background: var(--q17y);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

.jbxudtee .ydhcs5::after {
    left: 50%;
    transform: translateX(-50%);
}

.jbxudtee .m6m2xqm1s8 {
    margin-left: auto;
    margin-right: auto;
}

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

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

.m6m2xqm1s8 {
    font-size: 1.125rem;
    color: var(--h57as7-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(--q17y);
    box-shadow: var(--k51pv1wh);
    z-index: 1000;
    transition: var(--yf4tpc);
}

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

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

.a8aam73a {
    font-family: var(--xxb0cv3m);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--e97129);
}

.z9c459a6de {
    background: linear-gradient(135deg, var(--e97129), var(--zysddu2x));
    -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(--h57as7);
    position: relative;
    padding: 5px 0;
}

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

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

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

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

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

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

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

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

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

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

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

.f78c330u87 {
    background: var(--q17y);
    color: var(--e97129);
    box-shadow: var(--u03gd5);
}

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

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

.d0284ar7:hover {
    background: var(--q17y);
    color: var(--e97129);
}

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

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

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

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

.scef1nq9 img {
    border-radius: var(--pb5j);
    box-shadow: var(--u03gd5);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sk4aaaymrh h2 {
    text-align: left;
}

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

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

.q4163ra {
    background: var(--c02x);
    padding: 25px;
    border-radius: var(--pb5j);
    border-left: 4px solid var(--e97129);
    margin-bottom: 30px;
}

.q4163ra h3 {
    font-family: var(--xxb0cv3m);
    color: var(--e97129);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

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

.wucdgn {
    font-size: 1.1rem;
    color: var(--h57as7);
}

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

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

.b6cw3k2j {
    background: var(--q17y);
    padding: 40px 30px;
    border-radius: var(--pb5j);
    border-left: 4px solid var(--e97129);
    box-shadow: none;
    transition: var(--yf4tpc);
    text-align: left;
}

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

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

.j6vd7g {
    font-family: var(--xxb0cv3m);
    font-size: 1.4rem;
    color: var(--dd8647);
    margin-bottom: 15px;
}

.j6ym3h2 {
    color: var(--h57as7-claro);
    line-height: 1.7;
}

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

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

.p0kcz16t5 {
    background: linear-gradient(135deg, var(--c02x) 0%, var(--q17y) 100%);
    padding: 30px;
    border-radius: var(--pb5j);
    border-left: 4px solid var(--e97129);
    transition: var(--yf4tpc);
}

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

.d76y4ne80 {
    font-family: var(--xxb0cv3m);
    font-size: 1.25rem;
    color: var(--e97129);
    margin-bottom: 10px;
}

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

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

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

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

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

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

.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(--q17y);
    padding: 50px 40px;
    border-radius: var(--pb5j);
    box-shadow: var(--u03gd5);
}

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

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

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

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

.u48bb9 {
    background: var(--e97129);
    color: var(--q17y);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--yf4tpc);
}

.u48bb9:hover {
    background: var(--zysddu2x);
    transform: scale(1.1);
}

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

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

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

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

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

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

.faq-item {
    background: var(--q17y);
    border: 2px solid var(--d0qk26v7);
    border-radius: var(--pb5j);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--yf4tpc);
}

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

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

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

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

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

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

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

.g88vw1 h3 {
    font-family: var(--xxb0cv3m);
    font-size: 1.75rem;
    color: var(--dd8647);
    margin-bottom: 30px;
}

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

.g88vw1 .gdf3cp762 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.g88vw1 .gdf3cp762 strong {
    display: block;
    color: var(--dd8647);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.g88vw1 .gdf3cp762 p {
    color: var(--h57as7-claro);
    line-height: 1.6;
}

.ksgq4y37hm {
    background: var(--q17y);
    padding: 40px;
    border-radius: var(--pb5j);
    box-shadow: var(--u03gd5);
}

.mt4g716c8 .n7k4x264y {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hum4a6 {
    margin-bottom: 25px;
}

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

.hum4a6 input,
.hum4a6 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--d0qk26v7);
    border-radius: var(--pb5j);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--yf4tpc);
}

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

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

.cy6y85sfk {
    margin-top: 30px;
}

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

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

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

.btn-loading {
    display: none;
}

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

.wh32ydr3f a {
    color: var(--e97129);
    text-decoration: underline;
}

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

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

.vru2g5hh95 h3,
.vru2g5hh95 h4 {
    margin-bottom: 20px;
    font-family: var(--xxb0cv3m);
    color: var(--c02x);
}

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

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

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

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

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

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

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

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

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

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

.tt0k9t .g3vahn18 {
    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(--r240);
    z-index: 999;
    color: var(--q17y);
    transition: var(--yf4tpc);
    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(--e97129);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--u03gd5);
    z-index: 999;
    color: var(--q17y);
    transition: var(--yf4tpc);
}

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

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

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

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

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

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

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

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

.legal-notice {
    background: var(--c02x);
    padding: 25px;
    border-radius: var(--pb5j);
    border-left: 4px solid var(--e97129);
    margin: 30px 0;
}

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

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

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

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

    .sobre-grid--invertido .scef1nq9 {
        order: 2;
    }
    
    .scef1nq9 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(--q17y);
        box-shadow: var(--r240);
        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;
    }
    
    .ax9868hr {
        font-size: 2.5rem;
    }
    
    .xjq1s1dj {
        font-size: 1.1rem;
    }
    
    .r218be8c5 {
        flex-direction: column;
        gap: 15px;
    }
    
    .d275tn7 {
        width: 100%;
        text-align: center;
    }
    
    .ydhcs5 {
        font-size: 1.9rem;
    }
    
    .m6m2xqm1s8 {
        font-size: 1rem;
    }
    
    .t46ygwa61 {
        grid-template-columns: 1fr;
    }
    
    .y041wm9s26 {
        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;
    }
    
    .v3h5xx86 {
        font-size: 1.1rem;
    }
    
    .n5ztv6b6t5 {
        gap: 20px;
    }
    
    .ksgq4y37hm {
        padding: 30px 25px;
    }
    
    .mt4g716c8 .n7k4x264y {
        grid-template-columns: 1fr;
    }
    
    .b5h485 {
        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) {
    .ksy7904s4x {
        padding: 0 15px;
    }
    
    .ax9868hr {
        font-size: 2rem;
    }
    
    .xjq1s1dj {
        font-size: 1rem;
    }
    
    .ydhcs5 {
        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(--e97129); 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,
    .r218be8c5,
    .n5ztv6b6t5,
    .ksgq4y37hm {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .x4tjan4qfj {
        min-height: auto;
        padding: 40px 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}
