/* ============================================================
   CS TONNER – Style Sheet Principal
   Design: Moderno / Tecnológico / Alta Conversão
   Paleta: Azul (#1e40af, #3b82f6), Preto (#0f172a), Cinza (#f8fafc)
   ============================================================ */

/* ──── Reset e Variáveis ──── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --azul-escuro: #1e3a8a;
    --azul-primario: #1d4ed8;
    --azul-medio: #3b82f6;
    --azul-claro: #93c5fd;
    --azul-ultra: #eff6ff;
    --preto: #0f172a;
    --preto-medio: #1e293b;
    --cinza-escuro: #334155;
    --cinza-medio: #64748b;
    --cinza-claro: #e2e8f0;
    --cinza-ultra: #f8fafc;
    --branco: #ffffff;
    --verde: #16a34a;
    --verde-claro: #dcfce7;
    --laranja: #ea580c;
    --laranja-claro: #ffedd5;
    --roxo: #7c3aed;
    --roxo-claro: #ede9fe;
    --ciano: #0891b2;
    --ciano-claro: #cffafe;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --sombra-sm: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
    --sombra-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    --sombra-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    --sombra-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
    --sombra-azul: 0 0 30px rgba(29, 78, 216, .25);
    --raio-sm: 8px;
    --raio-md: 12px;
    --raio-lg: 20px;
    --raio-xl: 28px;
    --raio-full: 9999px;
    --transicao: .3s cubic-bezier(.4, 0, .2, 1);
    --fonte-principal: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fonte-principal);
    color: var(--preto-medio);
    background: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ──── Utilitários de texto ──── */
.destaque-texto {
    background: linear-gradient(135deg, var(--azul-medio), var(--azul-claro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destaque-texto-claro {
    background: linear-gradient(135deg, #93c5fd, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ──── Botões ──── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: var(--raio-full);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transicao);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primario {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-escuro));
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(29, 78, 216, .4);
}

.btn-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, .5);
    background: linear-gradient(135deg, #2563eb, var(--azul-primario));
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, .5);
}

.btn-grande {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-gigante {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ──── Seção: header genérico ──── */
.secao-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.secao-header--claro {
    color: var(--branco);
}

.secao-tag {
    display: inline-block;
    background: var(--azul-ultra);
    color: var(--azul-primario);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: var(--raio-full);
    margin-bottom: 1rem;
    border: 1px solid #bfdbfe;
}

.secao-tag--claro {
    background: rgba(255, 255, 255, .15);
    color: #bfdbfe;
    border-color: rgba(255, 255, 255, .25);
}

.secao-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.secao-desc {
    font-size: 1.05rem;
    color: var(--cinza-medio);
    max-width: 35rem;
    margin: 0 auto;
}

/* ──── HEADER / NAV ──── */
.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: all var(--transicao);
}

.cabecalho.scrolled {
    background: rgba(15, 23, 42, .98);
    box-shadow: var(--sombra-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--branco);
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-texto strong,
.logo-destaque {
    color: var(--azul-medio);
}

.logo--claro {
    color: var(--branco);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-left: 0;
}

.logo-img--footer {
    height: 38px;
    /* inverte para tema escuro do footer */
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links a {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    font-weight: 500;
    padding: .5rem .85rem;
    border-radius: var(--raio-sm);
    transition: all var(--transicao);
}

.nav-links a:hover,
.nav-links a.ativo {
    color: var(--branco);
    background: rgba(255, 255, 255, .1);
}

.btn-nav {
    padding: .55rem 1.2rem;
    font-size: .875rem;
    flex-shrink: 0;
}

.btn-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.btn-menu span {
    display: block;
    height: 2px;
    background: var(--branco);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.btn-menu span:nth-child(1) { width: 100%; }
.btn-menu span:nth-child(2) { width: 75%; }
.btn-menu span:nth-child(3) { width: 50%; }

.btn-menu.aberto span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg) translate(6px, 6px);
}

.btn-menu.aberto span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.btn-menu.aberto span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ──── HERO ──── */
.hero {
    min-height: 100svh;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .92) 0%, rgba(13, 31, 74, .88) 50%, rgba(22, 36, 86, .9) 100%),
        url('../img/image.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(29, 78, 216, .12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-conteudo {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badges-hero {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.badge {
    background: rgba(59, 130, 246, .15);
    color: var(--azul-claro);
    border: 1px solid rgba(59, 130, 246, .3);
    padding: .35rem .85rem;
    border-radius: var(--raio-full);
    font-size: .8rem;
    font-weight: 600;
}

.hero-titulo {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--branco);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}

.hero-subtitulo {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-subtitulo strong {
    color: var(--branco);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-numeros {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.numero-item {
    display: flex;
    flex-direction: column;
}

.numero-valor {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--branco);
    line-height: 1;
}

.numero-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    margin-top: .15rem;
}

.numero-divisor {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, .2);
}

.hero-imagem {
    position: relative;
}

.hero-imagem-wrapper {
    position: relative;
    border-radius: var(--raio-xl);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5), var(--sombra-azul);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1e3a8a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback decorativo se imagem não existir */
.hero-imagem-wrapper::after {
    content: '🖨️';
    position: absolute;
    font-size: 8rem;
    opacity: .12;
    pointer-events: none;
}

.hero-card-flutuante {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-radius: var(--raio-md);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--sombra-xl);
    animation: flutuarCard 3s ease-in-out infinite;
}

.card-icone {
    font-size: 1.5rem;
}

.hero-card-flutuante strong {
    display: block;
    font-size: .875rem;
    color: var(--preto);
    font-weight: 700;
}

.hero-card-flutuante small {
    font-size: .75rem;
    color: var(--cinza-medio);
}

@keyframes flutuarCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ──── PROBLEMA / SOLUÇÃO ──── */
.problema-solucao {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .82) 0%, rgba(30, 58, 138, .75) 50%, rgba(13, 31, 74, .85) 100%),
        url('../img/image4.png') center/cover no-repeat fixed;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.problema-solucao::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, .25) 0%, transparent 65%);
    pointer-events: none;
}

.problema-solucao::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, .2) 0%, transparent 65%);
    pointer-events: none;
}

/* Forçar texto claro nesta seção */
.problema-solucao .secao-header h2,
.problema-solucao .secao-tag {
    color: var(--branco);
}

.problema-solucao .secao-tag {
    background: rgba(59, 130, 246, .25);
    border-color: rgba(59, 130, 246, .4);
    color: #93c5fd;
}

.problema-solucao .container {
    position: relative;
    z-index: 1;
}

.problema-solucao .problema-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
    border-top: 4px solid #10b981;
    transform: translateY(0);
}

.problema-solucao .problema-card:hover {
    transform: translateY(-8px);
    border-top-color: #34d399;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.25);
}

.problema-solucao .problema-card h3 {
    color: var(--branco);
    font-size: 1.25rem;
}

.problema-solucao .problema-card p {
    color: rgba(255, 255, 255, 0.9);
}

.problema-solucao .solucao-banner {
    background: linear-gradient(135deg, rgba(29, 78, 216, .9), rgba(30, 58, 138, .95));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, .3);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problema-card {
    background: var(--branco);
    border-radius: var(--raio-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--sombra-md);
    border: 1px solid var(--cinza-claro);
    transition: transform var(--transicao), box-shadow var(--transicao);
}

.problema-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-xl);
}

.problema-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 0 .5rem;
    color: var(--preto);
}

.problema-card p {
    font-size: .9rem;
    color: var(--cinza-escuro);
}

.problema-icone {
    width: 64px;
    height: 64px;
    border-radius: var(--raio-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.1);
    transition: transform var(--transicao);
}

.problema-card:hover .problema-icone {
    transform: scale(1.1);
}

.problema-icone--vermelho {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #ef4444;
    box-shadow: 0 8px 16px -4px rgba(239, 68, 68, 0.3);
}

.problema-icone--laranja {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #f97316;
    box-shadow: 0 8px 16px -4px rgba(249, 115, 22, 0.3);
}

.problema-icone--amarelo {
    background: linear-gradient(135deg, #fef9c3, #fde047);
    color: #d97706;
    box-shadow: 0 8px 16px -4px rgba(234, 179, 8, 0.3);
}

.solucao-banner {
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-escuro));
    border-radius: var(--raio-xl);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: var(--branco);
    box-shadow: var(--sombra-azul);
}

.solucao-texto h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.solucao-lista {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.solucao-lista li {
    font-size: .95rem;
    opacity: .9;
}

/* ──── SERVIÇOS ──── */
.servicos {
    padding: 5rem 1.5rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .88) 0%, rgba(30, 58, 138, .82) 50%, rgba(13, 31, 74, .85) 100%),
        url('../img/image3.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, .08) 0%, transparent 70%);
    pointer-events: none;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.servico-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(15, 23, 42, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--raio-lg);
    padding: 2rem;
    transition: all var(--transicao);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.1);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.2);
    border-color: #34d399;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icone {
    width: 60px;
    height: 60px;
    border-radius: var(--raio-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.1);
    transition: transform var(--transicao);
}

.servico-card:hover .servico-icone {
    transform: scale(1.1);
}

.servico-icone--azul {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.3);
}

.servico-icone--ciano {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    color: #06b6d4;
    box-shadow: 0 8px 16px -4px rgba(6, 182, 212, 0.3);
}

.servico-icone--verde {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #22c55e;
    box-shadow: 0 8px 16px -4px rgba(34, 197, 94, 0.3);
}

.servico-icone--laranja {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #f97316;
    box-shadow: 0 8px 16px -4px rgba(249, 115, 22, 0.3);
}

.servico-icone--roxo {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #8b5cf6;
    box-shadow: 0 8px 16px -4px rgba(139, 92, 246, 0.3);
}

.servico-icone--indices {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
    box-shadow: 0 8px 16px -4px rgba(22, 163, 74, 0.3);
}

.servico-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: .6rem;
}

.servico-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.servico-beneficios li {
    color: rgba(255, 255, 255, 0.7);
}

.servico-beneficios {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: 1.25rem;
}

.servico-beneficios li {
    font-size: .8rem;
    color: var(--cinza-medio);
    padding-left: 1.1rem;
    position: relative;
}

.servico-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: 700;
}

.servico-cta {
    font-size: .875rem;
    font-weight: 700;
    color: var(--azul-primario);
    transition: color var(--transicao);
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.servico-cta:hover {
    color: var(--azul-escuro);
}

/* ──── DIFERENCIAIS ──── */
.diferenciais {
    background: linear-gradient(135deg, var(--preto) 0%, #0d1f4a 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, .12) 0%, transparent 70%);
    pointer-events: none;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.diferencial-item {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--raio-lg);
    padding: 2rem;
    transition: all var(--transicao);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
    border-top: 4px solid #10b981;
}

.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.25);
    border-top-color: #34d399;
}

.diferencial-numero {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
}

.diferencial-icone {
    width: 60px;
    height: 60px;
    border-radius: var(--raio-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.1);
    transition: transform var(--transicao);
}

.diferencial-item:hover .diferencial-icone {
    transform: scale(1.1);
}

.diferencial-icone--azul {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.3);
}

.diferencial-icone--ciano {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    color: #06b6d4;
    box-shadow: 0 8px 16px -4px rgba(6, 182, 212, 0.3);
}

.diferencial-icone--verde {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #22c55e;
    box-shadow: 0 8px 16px -4px rgba(34, 197, 94, 0.3);
}

.diferencial-icone--laranja {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #f97316;
    box-shadow: 0 8px 16px -4px rgba(249, 115, 22, 0.3);
}

.diferencial-icone--roxo {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #8b5cf6;
    box-shadow: 0 8px 16px -4px rgba(139, 92, 246, 0.3);
}

.diferencial-icone--amarelo {
    background: linear-gradient(135deg, #fef9c3, #fde047);
    color: #d97706;
    box-shadow: 0 8px 16px -4px rgba(234, 179, 8, 0.3);
}

.diferencial-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: .5rem;
}

.diferencial-item p {
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
}

/* ──── COMO FUNCIONA ──── */
.como-funciona {
    padding: 5rem 1.5rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .88) 0%, rgba(13, 31, 74, .82) 60%, rgba(30, 58, 138, .80) 100%),
        url('../img/image3.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, .18) 0%, transparent 60%);
    pointer-events: none;
}

.como-funciona::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, .15) 0%, transparent 60%);
    pointer-events: none;
}

/* Forçar texto claro nesta seção */
.como-funciona .secao-header h2,
.como-funciona .secao-tag,
.como-funciona .secao-desc {
    color: var(--branco);
}

.como-funciona .secao-tag {
    background: rgba(59, 130, 246, .25);
    border-color: rgba(59, 130, 246, .4);
    color: #93c5fd;
}

.como-funciona .secao-desc {
    color: rgba(255, 255, 255, .7);
}

.como-funciona .container {
    position: relative;
    z-index: 1;
}

.como-funciona .passo {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, .15);
    color: var(--branco);
}

.como-funciona .passo-conteudo h3 {
    color: var(--branco);
}

.como-funciona .passo-conteudo p {
    color: rgba(255, 255, 255, .7);
}

.como-funciona .passo-seta {
    color: rgba(255, 255, 255, .5);
}

.passos-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.passo {
    flex: 1;
    max-width: 320px;
    background: var(--branco);
    border-radius: var(--raio-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--sombra-md);
    border: 1px solid var(--cinza-claro);
    position: relative;
}

.passo-numero {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-escuro));
    color: var(--branco);
    border-radius: var(--raio-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(29, 78, 216, .4);
}

.passo-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.passo-conteudo h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: .5rem;
}

.passo-conteudo p {
    font-size: .875rem;
    color: var(--cinza-escuro);
}

.passo-seta {
    font-size: 1.5rem;
    color: var(--azul-medio);
    flex-shrink: 0;
    margin-top: 3.5rem;
    font-weight: 700;
}

.como-funciona-cta {
    text-align: center;
}

/* ──── DEPOIMENTOS ──── */
.depoimentos {
    padding: 5rem 1.5rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .88) 0%, rgba(30, 58, 138, .82) 50%, rgba(13, 31, 74, .85) 100%),
        url('../img/image3.png') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 92, 246, .10) 0%, transparent 65%);
    pointer-events: none;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.depoimento-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--raio-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transicao);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
    border-top: 4px solid #10b981;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.25);
    border-top-color: #34d399;
}

.depoimento-estrelas {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: .05em;
}

.depoimento-card>p {
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.depoimento-card footer {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.depoimento-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--raio-full);
    background: linear-gradient(135deg, var(--azul-primario), var(--azul-escuro));
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.depoimento-nome {
    font-size: .875rem;
    font-weight: 700;
    color: var(--branco);
    display: block;
    font-style: normal;
}

.depoimento-cargo {
    font-size: .75rem;
    color: var(--cinza-medio);
}

.marcas-atendidas {
    text-align: center;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--raio-xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.marcas-titulo {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.marcas-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marcas-lista {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 0.5rem 0;
    animation: scrollMarcas 30s linear infinite;
}

.marcas-lista:hover {
    animation-play-state: paused;
}

@keyframes scrollMarcas {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.marca-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--branco);
    padding: .6rem 1.75rem;
    border-radius: var(--raio-full);
    font-size: .9rem;
    font-weight: 700;
    transition: all var(--transicao);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(16, 185, 129, 0.2);
}

.marca-badge:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: #34d399;
    color: #34d399;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* ──── CTA FINAL ──── */
.cta-final {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #0d1f4a 50%, var(--preto) 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(59, 130, 246, .2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 30%, rgba(29, 78, 216, .15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-final-texto h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--branco);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-final-texto>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 1.5rem;
}

.cta-final-texto>p strong {
    color: var(--branco);
}

.cta-final-garantias {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 2rem;
}

.cta-final-garantias span {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
}

/* ──── FORMULÁRIO ──── */
.formulario-container {
    position: relative;
    z-index: 1;
}

.formulario-card {
    background: var(--branco);
    border-radius: var(--raio-xl);
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
}

.formulario-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--preto);
    margin-bottom: .35rem;
}

.formulario-subtitulo {
    font-size: .875rem;
    color: var(--cinza-medio);
    margin-bottom: 1.75rem;
}

.formulario {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.campo-grupo {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    position: relative;
}

.campo-grupo label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    letter-spacing: .02em;
}

.campo-grupo input,
.campo-grupo select,
.campo-grupo textarea {
    padding: .75rem 1rem;
    border: 1.5px solid var(--cinza-claro);
    border-radius: var(--raio-sm);
    font-family: var(--fonte-principal);
    font-size: .9rem;
    color: var(--preto);
    background: var(--branco);
    transition: all var(--transicao);
    outline: none;
}

.campo-grupo input:focus,
.campo-grupo select:focus,
.campo-grupo textarea:focus {
    border-color: var(--azul-medio);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}

.campo-grupo input.invalido,
.campo-grupo select.invalido,
.campo-grupo textarea.invalido {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.campo-grupo textarea {
    resize: vertical;
    min-height: 80px;
}

.campo-erro {
    font-size: .75rem;
    color: #ef4444;
    min-height: 1rem;
}

.btn-formulario {
    width: 100%;
    border-radius: var(--raio-sm);
    font-size: 1rem;
    padding: 1rem;
    margin-top: .25rem;
}

.formulario-note {
    font-size: .75rem;
    color: var(--cinza-medio);
    text-align: center;
}

/* ──── FOOTER ──── */
.rodape {
    background: var(--preto);
    color: rgba(255, 255, 255, .7);
}

.rodape-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3.5rem 1.5rem;
}

.rodape-marca .logo {
    margin-bottom: 1.5rem;
    justify-content: flex-start; /* Alinhado à esquerda no desktop */
}

.rodape-marca p {
    font-size: .875rem;
    line-height: 1.7;
    max-width: 280px;
    text-align: left; /* Alinhado à esquerda no desktop */
}

.rodape-links h4,
.rodape-contato h4 {
    color: var(--branco);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.rodape-links ul,
.rodape-contato ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.rodape-links li a,
.rodape-contato li a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--transicao);
}

.rodape-links li a:hover,
.rodape-contato li a:hover {
    color: var(--branco);
}

.rodape-contato li {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
}

.rodape-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.rodape-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.rodape-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ──── WhatsApp Flutuante ──── */
/* ──── Botões Flutuantes ──── */
.botoes-flutuantes {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 900;
}

.whatsapp-flutuante {
    width: 62px;
    height: 62px;
    background: var(--whatsapp);
    border-radius: var(--raio-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .5);
    transition: all var(--transicao);
    position: relative; /* Mudado de fixed para relative pois está dentro do flex */
}

.voltar-topo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--raio-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.8);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(16, 185, 129, 0.1);
}

.voltar-topo.visivel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.voltar-topo:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #34d399;
    color: var(--branco);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 15px 30px rgba(16, 185, 129, 0.4),
        0 0 20px rgba(16, 185, 129, 0.2);
}

.voltar-topo svg {
    transition: transform 0.4s ease;
}

.voltar-topo:hover svg {
    animation: bounceSeta 0.8s infinite alternate;
}

@keyframes bounceSeta {
    to { transform: translateY(-4px); }
}
    animation: pulsarWhatsapp 2.5s ease-in-out infinite;
}

.whatsapp-flutuante:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .6);
    animation: none;
}

@keyframes pulsarWhatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, .5), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--preto);
    color: var(--branco);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .85rem;
    border-radius: var(--raio-full);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transicao);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--preto);
    border-right: none;
}

.whatsapp-flutuante:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ──── Animações de entrada ──── */
.animate-entrada {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-entrada.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* Atrasos escalonados */
.animate-entrada:nth-child(1) {
    transition-delay: 0s;
}

.animate-entrada:nth-child(2) {
    transition-delay: .1s;
}

.animate-entrada:nth-child(3) {
    transition-delay: .2s;
}

.animate-entrada:nth-child(4) {
    transition-delay: .3s;
}

.animate-entrada:nth-child(5) {
    transition-delay: .4s;
}

.animate-entrada:nth-child(6) {
    transition-delay: .5s;
}

/* ──── RESPONSIVO ──── */
/* ──── RESPONSIVO ──── */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .servicos-grid,
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .hero-conteudo {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-imagem {
        display: block;
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .hero-titulo {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .hero-ctas,
    .hero-numeros {
        justify-content: center;
    }

    .cta-final-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-final-garantias {
        align-items: center;
    }

    .rodape-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .rodape-marca {
        grid-column: 1 / -1;
        text-align: center;
    }

    .rodape-marca .logo {
        justify-content: center;
    }

    .rodape-marca p {
        margin: 0 auto;
        text-align: center;
    }
    
    .mapa-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 1.25rem !important;
    }

    .btn-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--preto-medio);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.aberto {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: var(--raio-sm);
        color: var(--branco);
        width: 100%;
        max-width: none;
        background: transparent;
        border: none;
        transition: all 0.2s ease;
        display: block;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(255, 255, 255, 0.05);
        color: var(--azul-claro);
    }

    .nav-links a:active {
        background: var(--azul-primario);
        transform: scale(0.95);
    }

    .btn-nav {
        display: none;
    }

    .hero {
        padding: 7.5rem 1.25rem 4rem !important; /* Valor equilibrado para um respiro natural */
        min-height: auto;
        display: block;
    }

    .hero-conteudo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-texto {
        display: contents; /* Permite controlar a ordem de todos os filhos simultaneamente */
    }

    .hero-titulo {
        order: 1;
        font-size: clamp(2.1rem, 9.5vw, 2.8rem);
        margin: 0 0 1rem 0;
        text-shadow: 0 4px 15px rgba(0,0,0,0.4);
        line-height: 1.2;
    }

    .hero-imagem {
        order: 2;
        display: block;
        margin: 0 auto 1.5rem;
        width: 100%;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    }

    .hero-imagem-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-card-flutuante {
        bottom: 10px;
        right: -5px;
        padding: 0.6rem;
    }

    .hero-subtitulo {
        order: 3;
        font-size: 1.05rem;
        margin: 0 0 1.25rem 0;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        font-weight: 400;
    }

    .hero-ctas {
        order: 4;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        margin: 0 0 0.5rem 0 !important; 
        padding: 0 0.5rem;
    }

    .hero-ctas .btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        border-radius: var(--raio-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        box-shadow: 0 8px 15px rgba(37, 211, 102, 0.15) !important;
    }

    .badges-hero {
        order: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin: 0 0 0.5rem 0 !important;
        width: 100%;
        padding: 0 0.5rem;
    }

    .badge {
        width: 100%;
        min-width: 0;
        max-width: none;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        padding: 1rem;
        border-radius: var(--raio-lg); /* Mantendo o mesmo raio dos botões principais */
        backdrop-filter: blur(8px);
        justify-content: center;
    }

    .hero-numeros {
        order: 6;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: 0.5rem;
        margin: 0 !important;
        padding: 1.25rem 0.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: var(--raio-lg);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .numero-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .numero-valor {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
        background: linear-gradient(to bottom, #fff, #94a3b8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .numero-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.7;
    }

    .numero-divisor {
        display: none; /* Esconder divisores no mobile para usar o grid */
    }

    .hero-ctas .btn {
        width: 100%;
        padding: 1.25rem;
        font-size: 1.1rem;
        border-radius: var(--raio-md);
    }

    .hero-numeros {
        gap: 1rem;
        margin-top: 2rem;
        justify-content: space-between;
    }

    .numero-item {
        flex: 1;
        min-width: 70px;
        text-align: center;
    }

    .numero-valor {
        font-size: 1.4rem;
    }

    .numero-label {
        font-size: 0.7rem;
    }

    .problemas-grid,
    .servicos-grid,
    .diferenciais-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .solucao-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .solucao-lista {
        text-align: left;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .passos-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .passo-seta {
        transform: rotate(90deg);
        margin: 0.5rem auto;
        opacity: 0.5;
    }

    .passo {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem;
    }

    .cta-final-texto h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .cta-final-texto p {
        font-size: 0.95rem;
    }

    .cta-final-garantias {
        align-items: center;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }

    .cta-final-garantias span {
        font-size: 0.85rem;
    }

    .btn-gigante {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    .mapa-card {
        padding: 1.25rem;
    }

    .mapa-header h3 {
        font-size: 1.1rem;
    }

    .mapa-endereco {
        font-size: 0.8rem;
    }

    .como-funciona-cta {
        display: flex;
        justify-content: center;
        padding: 0 1rem;
    }

    .como-funciona-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .mapa-wrapper {
        height: 300px;
    }

    .rodape-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .rodape-links ul,
    .rodape-contato ul {
        align-items: center;
    }

    .rodape-bottom .container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .botoes-flutuantes {
        bottom: 1.25rem;
        right: 1.25rem;
        gap: 0.5rem;
    }

    .whatsapp-flutuante {
        width: 56px;
        height: 56px;
    }

    .voltar-topo {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .secao-header h2 {
        font-size: 1.6rem;
    }

    .hero-titulo {
        font-size: 1.8rem;
    }

    .badges-hero {
        justify-content: center;
        gap: 0.35rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .formulario-card {
        padding: 1.5rem 1rem;
    }

    .mapa-wrapper {
        height: 250px;
    }
}


/* ──── Loading skeleton da imagem hero ──── */
#heroImg {
    transition: opacity .4s ease;
}

/* ──── Scroll progress bar ──── */
#barraProgresso {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul-medio), var(--azul-claro));
    z-index: 2000;
    transition: width .1s linear;
}

/* ──── Mensagem de sucesso formulário ──── */
.formulario-sucesso {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.formulario-sucesso.visivel {
    display: block;
}

.formulario-sucesso .sucesso-icone {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.formulario-sucesso h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--preto);
    margin-bottom: .5rem;
}

.formulario-sucesso p {
    color: var(--cinza-escuro);
    font-size: .95rem;
}

/* ──── MAPA ──── */
.mapa-container {
    margin-top: 3rem;
}

.mapa-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--raio-xl);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mapa-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mapa-icone {
    font-size: 2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--raio-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mapa-header h3 {
    color: var(--branco);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.mapa-endereco {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.mapa-wrapper {
    width: 100%;
    height: 350px;
    border-radius: var(--raio-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1);
}

.mapa-footer {
    display: flex;
    justify-content: flex-start;
}

.btn-mapa {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border: none !important;
    color: var(--branco) !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--raio-full);
    transition: all var(--transicao);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
    text-decoration: none;
}

.btn-mapa:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
    color: var(--branco) !important;
}

.btn-mapa svg {
    transition: transform var(--transicao);
}

.btn-mapa:hover svg {
    transform: translate(3px, -3px);
}