/* ===================================== */
/* RESET */
/* ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #111;
    scroll-behavior: smooth;
}

/* ===================================== */
/* NAVBAR */
/* ===================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
    background: rgba(4, 4, 8, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    padding: 14px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.logo h1 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.logo h1::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, #0d6efd, transparent);
    margin-top: 4px;
    transition: width 0.4s ease;
}

.logo:hover h1::after {
    width: 100%;
}

/* ===== MENU HAMBÚRGUER ===== */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    padding: 9px 11px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1100;
    position: relative;
}

.menu-toggle:hover {
    border-color: rgba(13,110,253,0.5);
    background: rgba(13,110,253,0.08);
}

/* Linhas do hambúrguer customizadas */
.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger-lines span {
    display: block;
    height: 1px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-lines span:nth-child(2) {
    width: 14px;
    align-self: flex-end;
}

/* Estado aberto */
.menu-toggle.open .hamburger-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open .hamburger-lines span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.open .hamburger-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Menu normal no desktop */
nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: linear-gradient(to right, #0d6efd, rgba(13,110,253,0.2));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* ===== MENU MOBILE OVERLAY ===== */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #06060e;
    border-left: 1px solid rgba(255,255,255,0.06);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 48px 60px;
    gap: 0;
}

/* Linha decorativa vertical */
.mobile-menu-panel::before {
    content: "";
    position: absolute;
    left: 48px;
    top: 100px;
    width: 1px;
    height: calc(100% - 160px);
    background: linear-gradient(to bottom, #0d6efd, transparent);
    opacity: 0.3;
}

.mobile-menu.open {
    pointer-events: all;
    visibility: visible;
}

.mobile-menu.open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-panel nav ul {
    flex-direction: column;
    gap: 0;
    padding-left: 24px;
}

.mobile-menu-panel nav ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-menu-panel nav ul li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.12s; }
.mobile-menu.open .mobile-menu-panel nav ul li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-panel nav ul li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }
.mobile-menu.open .mobile-menu-panel nav ul li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu-panel nav ul li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.36s; }

.mobile-menu-panel nav ul li a {
    display: block;
    padding: 18px 0;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: none;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu-panel nav ul li a::after {
    display: none;
}

.mobile-menu-panel nav ul li a:hover,
.mobile-menu-panel nav ul li a.active {
    color: #fff;
    padding-left: 8px;
}

.mobile-menu-panel nav ul li:last-child a {
    border-bottom: none;
}

/* Label do menu mobile */
.mobile-menu-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 40px;
    padding-left: 24px;
}

/* Linha decorativa de contato no rodapé do painel */
.mobile-menu-contact {
    margin-top: auto;
    padding-left: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.mobile-menu.open .mobile-menu-contact {
    opacity: 1;
}

.mobile-menu-contact p {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    line-height: 1.8;
}

.mobile-menu-contact a {
    color: rgba(13,110,253,0.8);
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin-top: 8px;
    transition: color 0.2s;
}

.mobile-menu-contact a:hover {
    color: #fff;
}

/* ===================================== */
/* HERO COM IMAGEM DE FUNDO E DEGRADÊ DA ESQUERDA PARA DIREITA */
/* ===================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    /* Imagem de fundo */
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradiente horizontal: escuro sólido à esquerda → transparente à direita */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        #000000 0%,        /* preto absoluto na borda esquerda */
        #000000 30%,       /* mantém preto por um trecho */
        rgba(0,0,0,0.8) 50%,
        rgba(0,0,0,0.3) 70%,
        transparent 100%
    );
    z-index: 0;
}

.hero-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start; /* garante alinhamento à esquerda */
}

.hero-content {
    max-width: 600px;
    text-align: left; /* força texto à esquerda */
    margin-left: 0;
}

.hero-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-content p {
    margin-bottom: 35px;
    color: #e0e0e0;
    line-height: 1.8;
}

.hero .hero-button {
    display: inline-block;
    background: linear-gradient(90deg, #1e5eff, #4da3ff);
    border: none;
    padding: 15px 34px;
    border-radius: 40px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.hero .hero-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 94, 255, 0.35);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 5% 60px;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 5% 60px;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(8, 42, 94, 0.5) 100%
        );
    }
}


/* ===================================== */
/* CABEÇALHO SIMPLES (páginas internas) */
/* ===================================== */
.page-header-simples {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 80px;
    background: linear-gradient(
        140deg,
        #000000 0%,
        #000000 35%,
        #082a5e 65%,
        #0d6efd 100%
    );
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-simples::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(13,110,253,0.20) 0%, transparent 70%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 56px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .page-header-simples {
        min-height: 30vh;
    }
    .page-header-content h1 {
        font-size: 42px;
    }
}

/* ===================================== */
/* SERVIÇOS – DARK MODERNO              */
/* ===================================== */
.areas-dark {
    padding: 120px 7%;
    background: #06060e;
    position: relative;
    overflow: hidden;
}

.areas-dark::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13,110,253,0.3), transparent);
}

.areas-dark::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13,110,253,0.15), transparent);
}

.areas-dark-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.areas-dark-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 16px;
    font-weight: 400;
}

.areas-dark-header h2 {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.areas-dark-header p {
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    line-height: 1.7;
}

.areas-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}

.area-dark-card {
    background: rgba(255,255,255,0.02);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background 0.35s ease;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: default;
    overflow: hidden;
}

/* Glow ao hover */
.area-dark-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(13,110,253,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.area-dark-card:hover::before {
    opacity: 1;
}

.area-dark-card:hover {
    background: rgba(13,110,253,0.05);
}

.area-dark-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.area-dark-num {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(13,110,253,0.4);
    font-weight: 500;
}

.area-dark-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(13,110,253,0.1);
    border: 1px solid rgba(13,110,253,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.area-dark-card:hover .area-dark-icon {
    background: rgba(13,110,253,0.2);
    border-color: rgba(13,110,253,0.4);
}

.area-dark-card h3 {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.area-dark-card:hover h3 {
    color: #e8f0ff;
}

.area-dark-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.38);
    line-height: 1.75;
    flex: 1;
}

.area-dark-footer {
    margin-top: 8px;
}

.area-dark-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(13,110,253,0.6);
    border: 1px solid rgba(13,110,253,0.2);
    border-radius: 30px;
    padding: 4px 12px;
    transition: all 0.3s ease;
}

.area-dark-card:hover .area-dark-tag {
    color: #0d6efd;
    border-color: rgba(13,110,253,0.5);
    background: rgba(13,110,253,0.08);
}

/* Responsivo */
@media (max-width: 992px) {
    .areas-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .areas-dark {
        padding: 80px 5%;
    }
    .areas-dark-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .areas-dark-header h2 {
        font-size: 28px;
    }
    .area-dark-card {
        padding: 32px 26px;
    }
}

/* ===================================== */
/* DIFERENCIAIS – LAYOUT MODERNO        */
/* ===================================== */
.diferenciais {
    padding: 120px 7%;
    background: #f4f6fa;
    position: relative;
    overflow: hidden;
}

/* Glow decorativo */
.diferenciais::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13,110,253,0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* Linha decorativa topo */
.diferenciais-topo {
    max-width: 1200px;
    margin: 0 auto 70px;
    display: flex;
    align-items: baseline;
    gap: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 32px;
}

.diferenciais-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d6efd;
    white-space: nowrap;
    flex-shrink: 0;
}

.diferenciais-topo h2 {
    font-size: 38px;
    font-weight: 600;
    color: #111;
    line-height: 1.15;
}

/* Layout dois colunas */
.diferenciais-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

/* Coluna esquerda */
.diferenciais-destaque {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.diferenciais-destaque-text {
    font-size: 18px;
    color: rgba(0,0,0,0.45);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
}

.diferenciais-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(13,110,253,0.4);
    padding-bottom: 6px;
    width: fit-content;
    transition: all 0.3s ease;
}

.diferenciais-cta svg {
    transition: transform 0.3s ease;
}

.diferenciais-cta:hover {
    color: #fff;
    border-bottom-color: #0d6efd;
    gap: 14px;
}

.diferenciais-cta:hover svg {
    transform: translateX(4px);
}

/* Grid de cards */
.diferenciais-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dif-card {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: background 0.3s ease;
    cursor: default;
}

.dif-card:first-child {
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* Linha azul que aparece no hover */
.dif-card-linha {
    position: absolute;
    left: -7%;
    top: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(to bottom, #0d6efd, transparent);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.dif-card:hover .dif-card-linha {
    height: 100%;
}

.dif-card:hover {
    background: rgba(13,110,253,0.04);
}

.dif-card-num {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(13,110,253,0.5);
    font-weight: 500;
    padding-top: 4px;
    font-variant-numeric: tabular-nums;
}

.dif-card-body h3 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.dif-card:hover .dif-card-body h3 {
    color: #0d6efd;
}

.dif-card-body p {
    font-size: 14px;
    color: rgba(0,0,0,0.45);
    line-height: 1.75;
}

/* Responsivo */
@media (max-width: 992px) {
    .diferenciais-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .diferenciais-destaque {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 24px;
    }
    .diferenciais-destaque-text {
        font-size: 16px;
    }
    .dif-card-linha {
        left: 0;
        top: auto;
        bottom: 0;
        width: 0%;
        height: 2px;
        background: linear-gradient(to right, #0d6efd, transparent);
    }
    .dif-card:hover .dif-card-linha {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 768px) {
    .diferenciais {
        padding: 80px 5%;
    }
    .diferenciais-topo {
        flex-direction: column;
        gap: 12px;
    }
    .diferenciais-topo h2 {
        font-size: 28px;
    }
    .dif-card {
        grid-template-columns: 40px 1fr;
        gap: 16px;
        padding: 28px 0;
    }
    .diferenciais-destaque {
        flex-direction: column;
    }
}

/* ===================================== */
/* CASES */
/* ===================================== */
.cases {
    padding: 100px 5%;
    background: #f4f6fa;
}

.cases-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cases-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
}

.cases-header p {
    color: #555;
    font-size: 16px;
}

.cases-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-left: 4px solid #0d6efd;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13,110,253,0.1);
}

.case-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0d6efd;
}

.case-card p {
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

/* ===================================== */
/* CTA BANNER */
/* ===================================== */
.cta-banner {
    background: linear-gradient(135deg, #0b1120, #082a5e);
    padding: 80px 5%;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta-content button,
.cta-banner .cta-whatsapp-button {
    display: inline-block;
    background: linear-gradient(90deg, #1e5eff, #4da3ff);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.cta-content button:hover,
.cta-banner .cta-whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 94, 255, 0.35);
}

/* ===================================== */
/* FAQ MODERNO */
/* ===================================== */
.faq {
    padding: 120px 5%;
    background: linear-gradient(135deg, #f8f9fc, #eef2f7);
    color: #111;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-header p {
    color: #555;
    font-size: 16px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.1);
}

.faq-item.active {
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(13, 110, 253, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #0d6efd;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    border-top-color: #eaeef5;
}

.faq-answer p {
    padding: 0 28px 28px 28px;
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

.destaque {
    font-weight: 700;
    color: #0d6efd;
}

/* ===================================== */
/* CONTATO – LAYOUT LUXURY REFINADO    */
/* ===================================== */
.contato {
    padding: 120px 5% 100px;
    background: #06060e;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Fundo decorativo sutil */
.contato::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,110,253,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.contato::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13,110,253,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Título da seção */
.contato-titulo {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.contato-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 16px;
    font-weight: 400;
}

.contato-titulo h2 {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contato-titulo p {
    color: rgba(255,255,255,0.45);
    font-size: 15px;
    line-height: 1.7;
}

/* Grid principal */
.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Coluna esquerda */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Bloco de dados */
.contato-dados {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.contato-dado-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s ease;
}

.contato-dado-item:last-child {
    border-bottom: none;
}

.contato-dado-item:hover {
    background: rgba(13,110,253,0.05);
}

.contato-dado-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(13,110,253,0.12);
    border: 1px solid rgba(13,110,253,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.25s ease;
}

.contato-dado-item:hover .contato-dado-icon {
    background: rgba(13,110,253,0.22);
}

.contato-dado-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 5px;
    font-weight: 400;
}

.contato-dado-valor {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Foto */
.contato-imagem {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.imagem-contato {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.6s ease;
}

.contato-imagem:hover .imagem-contato {
    transform: scale(1.04);
}

.contato-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,6,14,0.5) 0%, transparent 60%);
    pointer-events: none;
}

/* Botão */
.btn-rota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(13,110,253,0.5);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.35s ease;
    width: 100%;
}

.btn-rota:hover {
    background: rgba(13,110,253,0.12);
    border-color: #0d6efd;
    color: #fff;
    letter-spacing: 2px;
}

/* Mapa */
.contato-mapa {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    height: 100%;
    min-height: 560px;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: none;
    display: block;
    filter: grayscale(30%) brightness(0.85) contrast(1.1);
    transition: filter 0.4s ease;
}

.contato-mapa:hover iframe {
    filter: grayscale(0%) brightness(0.95) contrast(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
    .contato-container {
        grid-template-columns: 1fr;
    }
    .contato-mapa, .contato-mapa iframe {
        min-height: 400px;
    }
    .contato-titulo h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .contato {
        padding: 80px 5% 70px;
    }
    .contato-titulo {
        margin-bottom: 50px;
    }
    .contato-mapa, .contato-mapa iframe {
        min-height: 320px;
    }
}

/* ===================================== */
/* BOTÕES FLUTUANTES (WHATSAPP + INSTAGRAM) */
/* ===================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20b859;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
}

.instagram-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    overflow: hidden;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.instagram-float .instagram-icon-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ===================================== */
/* FOOTER */
/* ===================================== */
.footer {
    background: #0b0f19;
    color: #d1d5db;
    padding: 80px 5% 0;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13,110,253,0.4), transparent);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
}

.footer h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: rgba(13,110,253,0.4);
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    color: #9ca3af;
}

.footer a {
    display: block;
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: rgba(13,110,253,0.4);
    transform: translateX(5px);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer-brand {
    max-width: 260px;
}

.logo-footer {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
    color: #6b7280;
}

/* ===================================== */
/* EQUIPE */
/* ===================================== */
.equipe {
    padding: 120px 5%;
    background: #ffffff;
}

.equipe-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.equipe-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #111;
}

.equipe-header p {
    color: #555;
    font-size: 16px;
}

.equipe-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.equipe-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
    padding: 0 0 25px 0;
    border: 1px solid #f0f0f0;
}

.equipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13,110,253,0.1);
    border-color: #0d6efd;
}

.equipe-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}

.equipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}

.equipe-card:hover .equipe-img img {
    transform: scale(1.05);
}

.equipe-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0d6efd;
    font-weight: 600;
}

.equipe-card p {
    color: #666;
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.5;
}

/* ===================================== */
/* RESPONSIVIDADE GERAL */
/* ===================================== */

/* Tablets e telas médias (até 992px) */
@media (max-width: 992px) {
    .hero-container,
    .contato-wrapper {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-logo img {
        max-width: 300px;
        margin-bottom: 20px;
    }
    .hero-content h2 {
        font-size: 36px;
    }
    .diferenciais-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .contato-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contato-mapa iframe {
        min-height: 400px;
    }
    .imagem-contato {
        max-height: 400px;
    }
}

/* Celulares grandes e tablets pequenos (até 768px) */
@media (max-width: 768px) {
    /* ===== NAVBAR ===== */
    header {
        flex-direction: row;
        padding: 18px 5%;
        gap: 0;
    }
    .logo h1 {
        font-size: 13px;
        letter-spacing: 3px;
    }
    /* Mostrar botão hambúrguer */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Esconder nav principal no mobile — ele fica dentro do painel lateral */
    header > nav {
        display: none;
    }

    /* ===== HERO ===== */
    .hero {
        min-height: auto;
        padding: 120px 5% 60px;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* ===== SERVIÇOS ===== */
    .areas {
        padding: 60px 5%;
    }
    .areas-header {
        margin-bottom: 40px;
    }
    .areas-header h2 {
        font-size: 28px;
    }
    .areas-header p {
        font-size: 14px;
    }
    .area-card {
        padding: 30px 20px;
    }
    .area-card h3 {
        font-size: 18px;
    }
    .area-card p {
        font-size: 13px;
    }

    /* ===== DIFERENCIAIS ===== */
    .diferenciais {
        padding: 60px 5%;
    }
    .diferenciais-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .diferencial-card {
        padding: 25px 20px;
    }
    .diferencial-icon {
        justify-content: center;
    }
    .diferencial-card h3,
    .diferencial-card p {
        text-align: center;
    }

    /* ===== FAQ ===== */
    .faq {
        padding: 60px 5%;
    }
    .faq-header h2 {
        font-size: 28px;
    }
    .faq-header p {
        font-size: 14px;
    }
    .faq-question {
        padding: 18px 20px;
    }
    .faq-question h3 {
        font-size: 15px;
    }
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 13px;
    }

    /* ===== EQUIPE ===== */
    .equipe {
        padding: 60px 5%;
    }
    .equipe-header h2 {
        font-size: 28px;
    }
    .equipe-header p {
        font-size: 14px;
    }
    .equipe-grid {
        gap: 20px;
    }
    .equipe-img {
        height: 200px;
    }
    .equipe-card h3 {
        font-size: 16px;
    }
    .equipe-card p {
        font-size: 12px;
    }

    /* ===== CONTATO ===== */
    .contato {
        padding: 60px 5%;
    }
    .contato-container {
        gap: 30px;
    }

    /* ===== BOTÕES FLUTUANTES ===== */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .instagram-float {
        bottom: 95px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .whatsapp-float i,
    .instagram-float i {
        width: 28px;
        height: 28px;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 50px 5% 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Celulares pequenos (até 600px) */
@media (max-width: 600px) {
    .hero-content h2 {
        font-size: 24px;
    }
    .hero-logo img {
        max-width: 200px;
    }
    .areas-header h2 {
        font-size: 24px;
    }
    .case-card {
        padding: 25px 20px;
    }
    .case-card h3 {
        font-size: 18px;
    }
    .contato-mapa iframe,
    .contato-imagem .imagem-contato {
        min-height: 300px;
        max-height: 300px;
    }
    .btn-rota {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Celulares muito pequenos (até 480px) */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 14px;
    }
    nav ul {
        gap: 8px;
    }
    nav ul li a {
        font-size: 12px;
        padding: 5px 12px;
    }
    .hero-content h2 {
        font-size: 22px;
    }
    .hero-content p {
        font-size: 13px;
    }
    .hero .hero-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    .areas-grid {
        gap: 20px;
    }
    .area-card {
        padding: 25px 15px;
    }
    .diferencial-card h3 {
        font-size: 15px;
    }
    .diferencial-card p {
        font-size: 12px;
    }
    .faq-question h3 {
        font-size: 14px;
    }
    .faq-answer p {
        font-size: 12px;
    }
    .equipe-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    .equipe-img {
        height: 240px;
    }
    .footer h3 {
        font-size: 15px;
    }
    .footer p, .footer a {
        font-size: 12px;
    }
}

/* ===================================== */
/* MODAL ROTA */
/* ===================================== */
.modal-rota {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-rota-content {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-rota-header {
    padding: 20px 25px;
    background: linear-gradient(90deg, #0d6efd, #4da3ff);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-rota-header h3 {
    margin: 0;
    font-size: 20px;
}

.modal-rota-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.modal-rota-close:hover {
    color: #ccc;
}

.modal-rota-body {
    padding: 0;
    height: 500px;
}

.modal-rota-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .modal-rota-body {
        height: 400px;
    }
    .modal-rota-header h3 {
        font-size: 18px;
    }
}
/* ===================================== */
/* EQUIPE – PÁGINA DEDICADA             */
/* ===================================== */

/* Label compartilhado */
.equipe-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 14px;
    font-weight: 400;
}

/* ── SÓCIOS FUNDADORES ── */
.equipe-socios {
    padding: 100px 5%;
    background: #fff;
}

.equipe-socios-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 70px;
}

.equipe-socios-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 14px;
}

.equipe-socios-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.equipe-socios-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.equipe-socio-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
}

.equipe-socio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(13,110,253,0.12);
    border-color: rgba(13,110,253,0.2);
}

.equipe-socio-img {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.equipe-socio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform 0.6s ease;
}

.equipe-socio-card:hover .equipe-socio-img img {
    transform: scale(1.05);
}

.equipe-socio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
    pointer-events: none;
}

.equipe-socio-info {
    padding: 30px 32px 34px;
}

.equipe-socio-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.equipe-socio-cargo {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0d6efd;
    font-weight: 500;
}

.equipe-socio-divider {
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, #0d6efd, transparent);
    margin: 18px 0;
}

.equipe-socio-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

/* ── EQUIPE (colaboradores) ── */
.equipe-time {
    padding: 80px 5% 120px;
    background: #f4f6fa;
}

.equipe-time-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.equipe-time-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 14px;
}

.equipe-time-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.equipe-time-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsivo */
@media (max-width: 768px) {
    .equipe-socios-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .equipe-socio-img {
        height: 300px;
    }
    .equipe-time-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .equipe-time-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    .equipe-socios-header h2,
    .equipe-time-header h2 {
        font-size: 26px;
    }
}

/* ===================================== */
/* CONTATO – botão alinhado base do mapa */
/* ===================================== */
.contato-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    height: 100%;
}

.contato-dados {
    flex: 1;
}

/* ===================================== */
/* AJUSTE FONTE CARDS EMPRESARIAL/VOCE   */
/* ===================================== */
.area-dark-card h3 {
    font-size: 19px !important;
}

.area-dark-card p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.5) !important;
}

.dif-card-body h3 {
    font-size: 20px !important;
}

.dif-card-body p {
    font-size: 15px !important;
}
