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

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

:root {
    /* Tema Amex — prateado / platinum */
    --xdqk1c: #2C3E50;
    --wz6254h: #95A5A6;
    --a6285: #006FCF;
    --wa88d: #F7F9FA;
    --fa5s43qw: #1A1A1A;
    --fa5s43qw-claro: #5D6D7E;
    --d91y4m1r: #FFFFFF;
    --cpt7gzu2: #4A4A4A;
    --fk68fhkp: #E8ECEF;
    --fk68fhkp-escuro: #6C757D;
    --bry6: #000000;
    --r6qb1z7: #BDC3C7;
    
    --cru9: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --dm32x4y7: 'Montserrat', sans-serif;
    
    --m5r9: all 0.3s ease;
    --fe40: 0 4px 12px rgba(0, 0, 0, 0.06);
    --ch363kq: 0 6px 20px rgba(0, 0, 0, 0.1);
    --u33fm0: 0 12px 40px rgba(0, 0, 0, 0.14);
    --xqrqjv: 10px;
}

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

body {
    font-family: var(--cru9);
    color: var(--fa5s43qw);
    line-height: 1.7;
    background: var(--d91y4m1r);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

.k5ba7qt3h0 .z4r5sm2f::after {
    left: 50%;
    transform: translateX(-50%);
}

.k5ba7qt3h0 .ga43x21 {
    margin-left: auto;
    margin-right: auto;
}

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

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

.ga43x21 {
    font-size: 1.125rem;
    color: var(--fa5s43qw-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(--d91y4m1r);
    box-shadow: var(--fe40);
    z-index: 1000;
    transition: var(--m5r9);
}

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

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

.by1fcr {
    font-family: var(--dm32x4y7);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--xdqk1c);
}

.j3db7009 {
    background: linear-gradient(135deg, var(--xdqk1c), var(--a6285));
    -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(--fa5s43qw);
    position: relative;
    padding: 5px 0;
}

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

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

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

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

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

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

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

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

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

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

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

.u8y188f36c {
    background: var(--d91y4m1r);
    color: var(--xdqk1c);
    box-shadow: var(--ch363kq);
}

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

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

.kjd9ejk:hover {
    background: var(--d91y4m1r);
    color: var(--xdqk1c);
}

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

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

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

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

.u5xq7z6pj img {
    border-radius: var(--xqrqjv);
    box-shadow: var(--ch363kq);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.camk0t6 h2 {
    text-align: left;
}

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

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

.xf5399 {
    background: var(--wa88d);
    padding: 25px;
    border-radius: var(--xqrqjv);
    border-left: 4px solid var(--xdqk1c);
    margin-bottom: 30px;
}

.xf5399 h3 {
    font-family: var(--dm32x4y7);
    color: var(--xdqk1c);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

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

.nsvg6a {
    font-size: 1.1rem;
    color: var(--fa5s43qw);
}

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

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

.twb1xs21 {
    background: var(--d91y4m1r);
    padding: 40px 30px;
    border-radius: var(--xqrqjv);
    border-left: 4px solid var(--xdqk1c);
    box-shadow: none;
    transition: var(--m5r9);
    text-align: left;
}

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

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

.h61agc9 {
    font-family: var(--dm32x4y7);
    font-size: 1.4rem;
    color: var(--wz6254h);
    margin-bottom: 15px;
}

.h429w42z5 {
    color: var(--fa5s43qw-claro);
    line-height: 1.7;
}

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

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

.r703g470 {
    background: linear-gradient(135deg, var(--wa88d) 0%, var(--d91y4m1r) 100%);
    padding: 30px;
    border-radius: var(--xqrqjv);
    border-left: 4px solid var(--xdqk1c);
    transition: var(--m5r9);
}

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

.p8n6rf {
    font-family: var(--dm32x4y7);
    font-size: 1.25rem;
    color: var(--xdqk1c);
    margin-bottom: 10px;
}

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

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

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

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

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

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

.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(--d91y4m1r);
    padding: 50px 40px;
    border-radius: var(--xqrqjv);
    box-shadow: var(--ch363kq);
}

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

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

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

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

.tx9nw2 {
    background: var(--xdqk1c);
    color: var(--d91y4m1r);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--m5r9);
}

.tx9nw2:hover {
    background: var(--a6285);
    transform: scale(1.1);
}

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

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

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

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

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

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

.faq-item {
    background: var(--d91y4m1r);
    border: 2px solid var(--fk68fhkp);
    border-radius: var(--xqrqjv);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--m5r9);
}

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

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

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

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

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

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

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

.azjrqdsc h3 {
    font-family: var(--dm32x4y7);
    font-size: 1.75rem;
    color: var(--wz6254h);
    margin-bottom: 30px;
}

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

.azjrqdsc .n5h7e9 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.azjrqdsc .n5h7e9 strong {
    display: block;
    color: var(--wz6254h);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.azjrqdsc .n5h7e9 p {
    color: var(--fa5s43qw-claro);
    line-height: 1.6;
}

.nk1xbt2r7x {
    background: var(--d91y4m1r);
    padding: 40px;
    border-radius: var(--xqrqjv);
    box-shadow: var(--ch363kq);
}

.n41864m10 .vy65ehb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fh7v982j {
    margin-bottom: 25px;
}

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

.fh7v982j input,
.fh7v982j textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--fk68fhkp);
    border-radius: var(--xqrqjv);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--m5r9);
}

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

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

.sp71c1t4 {
    margin-top: 30px;
}

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

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

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

.btn-loading {
    display: none;
}

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

.b85juq6qmc a {
    color: var(--xdqk1c);
    text-decoration: underline;
}

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

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

.v3a378k h3,
.v3a378k h4 {
    margin-bottom: 20px;
    font-family: var(--dm32x4y7);
    color: var(--wa88d);
}

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

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

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

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

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

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

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

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

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

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

.j31631 .vv7k5y {
    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(--u33fm0);
    z-index: 999;
    color: var(--d91y4m1r);
    transition: var(--m5r9);
    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(--xdqk1c);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ch363kq);
    z-index: 999;
    color: var(--d91y4m1r);
    transition: var(--m5r9);
}

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

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

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

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

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

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

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

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

.legal-notice {
    background: var(--wa88d);
    padding: 25px;
    border-radius: var(--xqrqjv);
    border-left: 4px solid var(--xdqk1c);
    margin: 30px 0;
}

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

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

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

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

    .sobre-grid--invertido .u5xq7z6pj {
        order: 2;
    }
    
    .u5xq7z6pj 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(--d91y4m1r);
        box-shadow: var(--u33fm0);
        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;
    }
    
    .c9akk02xb {
        font-size: 2.5rem;
    }
    
    .c2agx7sg30 {
        font-size: 1.1rem;
    }
    
    .m9b1bqz {
        flex-direction: column;
        gap: 15px;
    }
    
    .ju841rysz {
        width: 100%;
        text-align: center;
    }
    
    .z4r5sm2f {
        font-size: 1.9rem;
    }
    
    .ga43x21 {
        font-size: 1rem;
    }
    
    .t44p08n {
        grid-template-columns: 1fr;
    }
    
    .ehys23u7 {
        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;
    }
    
    .ru527k {
        font-size: 1.1rem;
    }
    
    .q8w7018rjr {
        gap: 20px;
    }
    
    .nk1xbt2r7x {
        padding: 30px 25px;
    }
    
    .n41864m10 .vy65ehb {
        grid-template-columns: 1fr;
    }
    
    .uf83z4e375 {
        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) {
    .c0gd7t307c {
        padding: 0 15px;
    }
    
    .c9akk02xb {
        font-size: 2rem;
    }
    
    .c2agx7sg30 {
        font-size: 1rem;
    }
    
    .z4r5sm2f {
        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(--xdqk1c); 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,
    .m9b1bqz,
    .q8w7018rjr,
    .nk1xbt2r7x {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .tkdw2q {
        min-height: auto;
        padding: 40px 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}
