:root {
    --primary: #000000;     /* preto */
    --secondary: #1a1a1a;   /* cinza quase preto */
    --accent: #404040;      /* cinza escuro */
    --gray: #ffffff;        /* cinza médio */
    --text-dark: #262626;   /* texto principal */
    --border-color: #d4d4d4;/* bordas */
    --light: #f5f5f5;       /* cinza muito claro */
    --btn-white-bg: #ffffff;      /* botão branco — fundo */
    --btn-white-text: #000000;    /* botão branco — texto */
    --btn-white-hover-bg: #f5f5f5;/* botão branco — hover fundo */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: auto; }

/* Animação Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* HEADER */
header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 22px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
header.header-scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; color: white; font-weight: 700; font-size: 24px; text-decoration: none; letter-spacing: 0.5px; z-index: 1002; }
.logo svg { width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav a { color: #e2e8f0; text-decoration: none; font-weight: 500; transition: color 0.3s; font-size: 15px; }
nav a:hover { color: var(--gray); }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1002; }
.hamburger span { width: 28px; height: 3px; background-color: white; border-radius: 3px; transition: all 0.3s ease; }

/* BOTÕES */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 28px; border-radius: 8px; text-decoration: none;
    font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 16px;
}
.btn-primary { background: var(--secondary); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 1px solid var(--secondary); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.4); }
.btn-outline { background: rgba(255,255,255,0.05); color: white; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border: 1px solid var(--border-color); }
.btn-outline-dark:hover { background: var(--light); border-color: var(--gray); }
.btn-white { background: var(--btn-white-bg); color: var(--btn-white-text); border: 1px solid var(--btn-white-bg); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--btn-white-hover-bg); border-color: var(--border-color); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }

section { padding: 90px 0; overflow: hidden; scroll-margin-top: 75px; }
.section-title { font-size: 36px; margin-bottom: 40px; text-align: center; font-weight: 700; }
.bg-light { background-color: #f1f5f9; }

/* HERO */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; color: white; padding-top: 150px; }
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.683) 0%, rgba(20, 20, 20, 0.57) 100%), url('assets/FACHADA.jpg') center / cover no-repeat fixed;
    z-index: -1;
}
.hero-content { max-width: 80%; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: rgba(64,64,64,0.20); color: #d4d4d4; border: 1px solid rgba(64,64,64,0.5);
    border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 { max-width: 80%; font-size: 54px; font-weight: 700; margin-bottom: 24px; line-height: 1.15; letter-spacing: -0.5px; }
.hero p { font-size: 20px; color: #cbd5e1; margin-bottom: 40px; line-height: 1.6; max-width: 750px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 45px; }
.hero-trust { display: flex; gap: 30px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 25px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #cbd5e1; font-weight: 500; }
.trust-item svg { color: var(--gray); }

/* SOBRE - VÍDEO DE FUNDO */
#sobre {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    display: flex;
    align-items: center;
    color: white;
    min-height: 80vh;
    overflow: hidden;
}

#sobre::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.683) 0%, rgba(20, 20, 20, 0.607) 100%);
    z-index: 0;
}

#sobre .container {
    position: relative;
    z-index: 2;
}

.sobre-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.sobre-content {
    margin: 0 auto;
}

.sobre-content .section-title {
    text-align: left;
    color: white;
    margin-bottom: 25px;
    font-size: 46px;
}

.sobre-content .section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--accent); border-radius: 2px; margin-top: 18px;
}

.sobre-content p.lead {
    font-size: 20px; color: #f8fafc; font-weight: 500; line-height: 1.7; margin-bottom: 24px;
}

.sobre-content p {
    font-size: 18px; color: #cbd5e1; line-height: 1.8; margin-bottom: 40px;
}

.sobre-lista-clean {
    list-style: none; display: grid; grid-template-columns: 1fr; gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.15); padding-top: 30px;
}

.sobre-lista-clean li {
    display: flex; align-items: flex-start; gap: 16px;
    font-size: 16px; color: #f8fafc; line-height: 1.6;
}

.sobre-lista-clean li svg { color: var(--gray); flex-shrink: 0; margin-top: 3px; }

/* PARCEIROS / CARROSSEL DE SOLUÇÕES */
.parceiros-banner {
    background: rgba(15, 17, 23, 0.96);
    backdrop-filter: blur(12px);
    padding: 26px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.parceiros-banner::before, .parceiros-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.parceiros-banner::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}
.parceiros-banner::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}
.parceiros-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}
.parceiros-banner:hover .parceiros-track {
    animation-play-state: paused;
}
.parceiros-group {
    display: flex;
    align-items: center;
    gap: 45px;
    padding-right: 45px;
}
.parceiro-item {
    font-size: 16px;
    font-weight: 600;
    color: #cbd5e1;
    white-space: nowrap;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    cursor: default;
}
.parceiro-item:hover {
    color: #38bdf8;
    transform: translateY(-2px);
    text-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}
.ticker-sep {
    color: #0ea5e9;
    font-size: 14px;
    opacity: 0.8;
    text-shadow: 0 0 8px rgba(14, 165, 233, 0.6);
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* DIFERENCIAIS */
.bg-diferenciais {
    background: linear-gradient(rgba(0, 0, 0, 0.696), rgba(26, 26, 26, 0.657)), url('assets/recepcao.jpg') center/cover fixed;
    color: white;
    min-height: 60vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.bg-diferenciais .section-title { color: white; }

#diferenciais .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}
#diferenciais .card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.683) 0%, rgba(20, 20, 20, 0.486) 100%);
    padding: 40px 32px; border-radius: 14px; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
#diferenciais .card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.35); background: rgba(255,255,255,0.10); }
#diferenciais .card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 4px; background-color: var(--gray); transition: width 0.4s ease; }
#diferenciais .card:hover::after { width: 100%; }
.card h3 { font-size: 19px; margin-bottom: 12px; color: white; }
.card-icon { color: var(--gray); margin-bottom: 16px; }
.card p { font-size: 15px; color: #cbd5e1; line-height: 1.6; }

/* FAQ */
.faq-item { background: white; border-radius: 12px; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid var(--border-color); overflow: hidden; transition: border-color 0.3s ease; }
.faq-summary { width: 100%; text-align: left; padding: 24px; font-weight: 600; font-size: 17px; color: var(--primary); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: inherit; transition: background 0.3s ease; }
.faq-summary:hover { background: var(--light); }
.faq-summary::after { content: "+"; font-size: 24px; color: var(--accent); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.faq-item.faq-open { border-color: var(--accent); }
.faq-item.faq-open .faq-summary::after { content: "−"; transform: rotate(180deg); }
.faq-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.faq-item.faq-open .faq-content { grid-template-rows: 1fr; }
.faq-content-inner { overflow: hidden; }
.faq-content p { padding: 0 24px; margin: 0; color: var(--accent); font-size: 16px; line-height: 1.7; opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease, padding-bottom 0.4s ease; }
.faq-item.faq-open .faq-content p { opacity: 1; transform: translateY(0); padding-bottom: 24px; }

.contact {
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64,64,64,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact .section-title {
    color: white;
    margin-bottom: 8px;
}

.contact-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 36px;
}

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.quick-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.quick-info-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(115,115,115,0.5);
    transform: translateY(-3px);
}

.quick-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(64,64,64,0.18);
    border: 1px solid rgba(64,64,64,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    flex-shrink: 0;
}

.quick-info-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 5px;
}

.quick-info-text a,
.quick-info-text p {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    margin: 0;
}

.quick-info-text a:hover { color: #d4d4d4; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

/* Formulário */
.contact-form-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 32px;
}

.contact-form-box h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 6px;
}

.contact-form-box p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 28px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    position: relative;
    margin-bottom: 16px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 22px 16px 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s, background 0.3s;
    appearance: none;
}

.input-group select option { background: #111111; color: white; }

.input-group input::placeholder,
.input-group textarea::placeholder { color: transparent; }

.input-group label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-size: 15px;
    color: #64748b;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:valid + label {
    top: 6px; font-size: 11px; color: var(--gray); font-weight: 600;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--gray);
    background: rgba(255,255,255,0.08);
}

.input-group.select-group label {
    top: 6px; font-size: 11px; color: var(--gray); font-weight: 600;
}

.input-group.select-group select { padding-top: 22px; }

.contact-side {
    display: flex;
    flex-direction: column;
}

.map-container {
    width: 100%;
    flex: 1;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
    display: block;
}

.map-container:hover iframe { filter: grayscale(0%); }

.horario-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
}

.horario-card h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.horario-card h4 svg { color: var(--gray); }

.horario-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.horario-linha:last-child { border-bottom: none; }
.horario-linha span:first-child { color: #94a3b8; }
.horario-linha span:last-child { color: #e2e8f0; font-weight: 500; }
.horario-linha .badge-fechado { background: rgba(239,68,68,0.15); color: #f87171; padding: 2px 10px; border-radius: 20px; font-size: 12px; }
.horario-linha .badge-aberto { background: rgba(255,255,255,0.10); color: #d4d4d4; padding: 2px 10px; border-radius: 20px; font-size: 12px; }

.advisor {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.advisor .reveal {
    opacity: 1;
    transform: none;
}

.advisor-card {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    padding: 50px 56px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.advisor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 24px;
}

.advisor-monogram {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.advisor-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.advisor-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #64748b;
}

.advisor-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 18px;
}

.advisor-body p:last-child {
    margin-bottom: 0;
}


@media(max-width: 768px) {
    .advisor {
        padding: 70px 0;
    }

    .advisor-card {
        padding: 34px 24px;
        border-radius: 14px;
    }

    .advisor-header {
        gap: 16px;
    }

    .advisor-monogram {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .advisor-card h3 {
        font-size: 22px;
    }

    .advisor-role {
        font-size: 12px;
    }

    .advisor-body p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.consultor-cta {
    background: var( --primary);
    backdrop-filter: blur(8px);
    padding: 60px 0;
}

.consultor-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--secondary);
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 48px 52px;
}

.consultor-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.consultor-icon img{
    width: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.consultor-text {
    flex: 1;
}

.consultor-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.consultor-text p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media(max-width: 768px) {
    .consultor-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    .consultor-text h3 { font-size: 22px; }
}

.cookie-banner {
    position: fixed;
    left: 0;
    height: 90px;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: var(--text-dark);
    box-shadow: 0 -4px 25px rgba(0,0,0,0.1);
    z-index: 100000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: auto;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* BASE PADRÃO (simetria total) */
.back-to-top,
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

/* POSIÇÕES */
.back-to-top {
    left: 30px;
    background: rgba(26,26,26,0.9);
    color: white;
    border: none;
}

.whatsapp-float {
    right: 30px;
    background: #25D366;
}

/* SOMBRA (profissional) */
.back-to-top,
.whatsapp-float {
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {

    .back-to-top,
    .whatsapp-float {
        width: 46px;
        height: 46px;
        right: 16px;
        left: auto; /* ESSENCIAL */
        bottom: auto; /* reset geral */
    }

    .whatsapp-float {
        bottom: 76px; /* em cima */
    }

    .back-to-top {
        bottom: 25px; /* embaixo */
    }

    /* Ícones centralizados corretamente */
    .back-to-top svg,
    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* FOOTER */
footer {
    background: #000000;
    color: #94a3b8;
    text-align: center;
    padding: 60px 0 30px 0;
    font-size: 15px;
}

.footer-logo-wrap {
    width: 160px;
    margin: 0 auto 28px auto;
    display: block;
}

.footer-logo-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}

.footer-tagline {
    font-size: 15px;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-sub {
    font-size: 13px;
    color: #52525b;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 28px 0;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #71717a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover { color: white; }

.footer-contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact-info a {
    color: #71717a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.footer-contact-info a svg { color: #52525b; flex-shrink: 0; }
.footer-contact-info a:hover { color: white; }

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717a;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.footer-credits {
    font-size: 10px;
    color: #3f3f46;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    flex-wrap: wrap;
}

.footer-dev { color: #3f3f46; }
.footer-dev a { color: #52525b; text-decoration: none; transition: color 0.3s; }
.footer-dev a:hover { color: #a1a1aa; }

@media(max-width: 768px) {
    .footer-middle { flex-direction: column; align-items: center; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-credits { flex-direction: column; gap: 8px; }
}

@media(max-width: 1024px) {
    .contact-quick-info { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media(max-width: 900px) {
    .sobre-content { padding: 0 20px; }
    .sobre-content .section-title { font-size: 36px; }
    .sobre-content p.lead { font-size: 18px; }
    .sobre-content p { font-size: 16px; }
    .hero h1 { font-size: 44px; }
    .section-title { font-size: 30px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-box { padding: 28px; }
    #diferenciais .grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
    .hamburger { display: flex; }

    nav ul {
        position: fixed; top: 0; left: 0; width: 100%;
        background: rgba(0,0,0,0.98); backdrop-filter: blur(10px);
        flex-direction: column; align-items: center; padding: 85px 0 40px 0; gap: 25px;
        transform: translateY(-110%);
        transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
        border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 1001;
    }
    nav ul.active { transform: translateY(0); }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

    .hero { text-align: left; padding-top: 120px; padding-bottom: 60px; }
    .hero h1 { font-size: 38px; }
    .hero-trust { gap: 15px; }

    .parceiros-track { gap: 40px; }
    .parceiro-logo { height: 30px; }
    .parceiros-banner::before, .parceiros-banner::after { width: 50px; }

    #diferenciais .grid { grid-template-columns: 1fr; }

    .contact-quick-info { grid-template-columns: 1fr; }
    .input-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-buttons { width: 100%; justify-content: center; }

    .hero::before {
        background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(26,26,26,0.80) 100%),
                    url('assets/FACHADA.jpg') center / cover no-repeat scroll;
    }

    #sobre::before {
        background: linear-gradient(135deg, #000000 0%, #141414 35%, #1f1f1f 65%, #0a0a0a 100%);
    }

    .sobre-video-bg {
        display: none;
    }

    .contact {
        background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
    }

    .bg-diferenciais {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.683) 0%, rgba(20, 20, 20, 0.486) 100%),
                    url('assets/recepcao.jpg') center / cover scroll;
    }
}