/* =========================================
   CONFIGURAÇÕES GERAIS E CORES
   ========================================= */
:root {
    --primary: #1B4FD8;
    --primary-light: #eff4ff;
    --secondary: #00C896;
    --secondary-light: #ecfdf8;
    --dark-blue: #0B1A3D;
    --dark: #1a2744;
    --light: #f4f7fb;
    --white: #ffffff;
    --text-muted: #64748b;
    --accent-lime: #5eff8e;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --premium-shadow: 0 20px 50px -12px rgba(11, 26, 61, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--white);
    position: relative;
}

h1, h2, h3, h4, h5, h6,
.title-impact, .section-title, .title-impact-white, .title-impact-sm {
    font-family: var(--font-heading);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 10001;
    transition: width 0.1s linear;
}

/* Background Blob System */
.bg-blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 20%;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 40%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* Hero ocupa a tela inteira sem espaço extra no topo */
section#home.hero-full {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0;
}

.section-padding {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-white {
    background-color: var(--white);
}

.bg-gradient-soft {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.text-white {
    color: var(--white);
}

.text-light {
    color: #ccc;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.text-center {
    text-align: center;
}

header {
    background: var(--white);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header transparente no hero */
header.header-transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.header-transparent .nav-item {
    color: rgba(255, 255, 255, 0.9);
}

header.header-transparent .nav-item:hover,
header.header-transparent .nav-item.active {
    color: var(--accent-lime);
}

header.header-transparent .nav-item::after {
    background-color: var(--accent-lime);
}

header.header-transparent .menu-toggle {
    color: white;
}

header.header-transparent .logo-img {
    filter: brightness(0) invert(1);
}

/* Estado do Header ao descer a página (Scroll) */
header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled .nav-item {
    color: var(--dark);
}

header.scrolled .nav-item:hover,
header.scrolled .nav-item.active {
    color: var(--primary);
}

header.scrolled .nav-item::after {
    background-color: var(--primary);
}

header.scrolled .menu-toggle {
    color: var(--primary);
}

header.scrolled .logo-img {
    filter: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
    transition: var(--transition);
}

.logo span {
    color: var(--secondary);
}

header.scrolled .logo {
    font-size: 22px;
}

/* =========================================
   ESTILIZAÇÃO DA LOGO
   ========================================= */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Tamanho inicial da logo */
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

/* Logo diminui quando a página desce */
header.scrolled .logo-img {
    height: 40px;
}

/* Efeito de destaque na logo ao passar o mouse */
.logo-img:hover {
    transform: scale(1.05);
}

/* =========================================
   LINKS DE NAVEGAÇÃO E ANIMAÇÕES
   ========================================= */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 35px;
    position: relative;
}

.nav-item {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    transition: var(--transition);
}

/* Efeito de linha que surge ao passar o mouse */
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

/* Feedback de clique (Ativo) */
.nav-item.active {
    color: var(--primary);
}

.nav-item.active::after {
    width: 100%;
}

/* =========================================
   BOTÃO ANIMADO (CTA NO HEADER)
   ========================================= */
.btn-nav-animated {
    background: var(--secondary);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 200, 150, 0.35);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Efeito de Brilho ao passar o mouse */
.btn-nav-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-nav-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 150, 0.45);
    background: #00b386;
}

.btn-nav-animated:hover::before {
    left: 100%;
}

.btn-nav-animated:active {
    transform: scale(0.95);
    /* Efeito de apertar o botão ao clicar */
}

.btn-nav-animated i {
    transition: var(--transition);
}

.btn-nav-animated:hover i {
    transform: translateX(4px);
    /* Seta se move levemente */
}

/* Responsividade Básica removida para evitar conflitos */


/* =========================================
   CONFIGURAÇÕES HERO FULL SCREEN
   ========================================= */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: left;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

#home.hero-full {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 100vh;
    min-height: 100dvh;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz o vídeo cobrir tudo sem distorcer */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 61, 0.82), rgba(27, 79, 216, 0.65));
}

/* =========================================
   CONTEÚDO E ANIMAÇÕES
   ========================================= */
.hero-content {
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    margin-bottom: 20px;
    background: rgba(11, 26, 61, 0.45) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(94, 255, 142, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-lime);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 520px;
}

/* Efeito de Surgimento (Reveal) */
.reveal-text {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-subtext {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    /* Começa invisível para animar */
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btns .btn-hero-primary,
.hero-btns .btn-hero-secondary {
    margin: 0;
}

.reveal-btns {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   BOTÕES DA HERO
   ========================================= */
.btn-hero-primary {
    background: var(--secondary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin: 10px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    background: #059669; /* Slightly darker green */
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* =========================================
   INDICADOR DE SCROLL (MOUZINHO)
   ========================================= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Responsividade Hero — regras mobile consolidadas no final do arquivo */

/* =========================================
   ESTILIZAÇÃO SEÇÃO SOBRE
   ========================================= */
.top-label {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-blue);
}

.about-list i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Imagem e Badge */
.about-image {
    position: relative;
}

.img-responsive {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

/* Animação de flutuar na imagem */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

/* =========================================
   NOVA SEÇÃO PREMIUM DARK (MODERNA)
   ========================================= */
.section-premium-dark {
    padding: 100px 0;
    /* Gradiente radial para dar profundidade (centro mais claro) */
    background: radial-gradient(circle at center, #003366 0%, #001a35 100%);
    position: relative;
    overflow: hidden;
}

/* Títulos em branco para contraste */
.title-impact-white {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.title-impact-white span {
    color: var(--secondary);
}

.subtitle-white {
    color: #a0aec0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.label-light-blue {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* CARDS ESTILO GLASSMORPHISM */
.benefit-card-glass {
    background: rgba(255, 255, 255, 0.03);
    /* Vidro bem sutil */
    backdrop-filter: blur(10px);
    /* Desfoque de fundo */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card-glass h3 {
    color: #fff;
    margin-bottom: 15px;
}

.benefit-card-glass p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.icon-circle-white {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

/* Card em Destaque (Diferenciado) */
.benefit-card-glass.featured-blue {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid var(--primary);
    transform: scale(1.05);
    /* Um pouco maior */
}

.benefit-card-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    border-color: var(--secondary);
}

/* =========================================
   SEÇÃO MISSÃO E VALORES (ELEGANT)
   ========================================= */
.grid-purpose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.purpose-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Sombra suave no ícone */
}

.purpose-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.purpose-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Lista de Valores */
.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.values-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Efeito Hover */
.purpose-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: var(--premium-shadow);
}

.purpose-card:hover .purpose-icon {
    background: var(--primary);
    color: #fff;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .purpose-card {
        padding: 40px 25px;
    }
}


/* ==========================================================================
   CSS CONSOLIDADO: PRODUTOS E ESPECIALIDADES (ESTILO PREMIUM)
   ========================================================================== */

/* 1. CONFIGURAÇÕES GERAIS DE RESPIRO */
.section-padding {
    padding: 120px 0;
}

.bg-soft-blue {
    background-color: #f8fafc;
}

.bg-white {
    background-color: #ffffff;
}

/* 2. TRATAMENTO DE IMAGENS (ADEUS QUADRADOS) */
.img-wrapper {
    position: relative;
    padding: 15px;
}

.img-refined,
.img-refined-alt {
    width: 100%;
    height: auto;
    /* Curvas assimétricas modernas */
    border-radius: 80px 20px 80px 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
}

/* Interação ao passar o mouse na imagem */
.img-wrapper:hover .img-refined,
.img-wrapper:hover .img-refined-alt {
    transform: translateY(-15px) rotate(-1deg);
    border-radius: 20px 80px 20px 80px;
}

/* 3. GRID E TEXTOS DE PRODUTOS */
.grid-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
}

.product-text-box,
.product-image-box {
    flex: 1;
    min-width: 340px;
}

.product-text-box .badge-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.feature-list-text {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list-text li {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.feature-list-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.info-box-legal {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    border-left: 6px solid var(--primary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* 4. DISPONIBILIDADE PSICÓLOGO */
.availability-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    margin-top: 30px;
}

.availability-box strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.availability-box li {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    list-style: none;
}

/* =========================================
   REESTILIZAÇÃO PREMIUM DARK (CORRIGIDA)
   ========================================= */
.section-premium-dark {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #003366, #001a35);
    /* Gradiente mais profundo */
    color: white;
    text-align: center;
}

.benefit-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px 40px;
    margin-top: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* O SEGREDO PARA FICAR LADO A LADO: */
.list-white-text {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 30px auto 0 auto !important;
    max-width: 1000px;
    /* Limita a largura para os itens "quebrarem" com elegância */
}

.list-white-text li {
    /* Reset de comportamento */
    flex: 0 1 auto !important;
    /* Impede que o item cresça e ocupe 100% */
    width: auto !important;
    /* Garante que a largura seja apenas a do texto */

    background: rgba(255, 255, 255, 0.07);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    white-space: nowrap;
    /* Impede quebra de linha dentro da pílula */
}

.list-white-text li:hover {
    background: var(--secondary, #28a745);
    color: #001a35;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
    border-color: transparent;
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .list-white-text {
        gap: 10px !important;
    }

    .list-white-text li {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

/* =========================================
   ESTILIZAÇÃO EXCLUSIVA: CONSULTAS SEM LIMITES
   ========================================= */
.section-unlimited {
    padding: 80px 0;
    background: radial-gradient(circle at center, #002d5a 0%, #00152b 100%);
    color: white;
    text-align: center;
}

.section-unlimited .title-impact-white {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-unlimited .title-impact-white span {
    color: #28a745;
    /* Verde destaque */
}

.section-unlimited .subtitle-white {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* Container de vidro */
.section-unlimited .benefit-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* FORÇANDO A HORIZONTAL COM CLASSE NOVA */
.unlimited-pills {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.unlimited-pills li {
    /* O segredo para não ocupar a linha toda */
    display: inline-flex !important;
    flex: 0 1 auto !important;
    width: auto !important;

    background: rgba(255, 255, 255, 0.08) !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    white-space: nowrap !important;
    transition: all 0.3s ease;
}

.unlimited-pills li:hover {
    background: #28a745 !important;
    color: #001a35 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .unlimited-pills {
        flex-direction: column !important;
        /* No celular volta a ser lista */
    }

    .unlimited-pills li {
        width: 100% !important;
        justify-content: center;
    }
}


/* =========================================
   REPARO: ESPECIALIDADES (FIM DO BUG DE SOBREPOSIÇÃO)
   ========================================= */
.chip-container {
    display: block;
    /* Mudamos para block para controlar o fluxo manual */
    width: 100%;
    margin-top: 30px;
    line-height: 2.8;
    /* O segredo: aumenta a altura da "linha" para os chips não baterem */
}

.chip {
    display: inline-block;
    /* Faz com que respeitem o line-height do container */
    background: #ffffff;
    padding: 2px 18px;
    /* Reduzi o padding vertical para compensar o line-height */
    margin-right: 8px;
    margin-bottom: 5px;
    /* Espaço extra de segurança */
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Ajuste do Bloco Lateral (Especialidades Premium) */
/* Se este bloco estiver "esmagando" os chips, garantimos que ele não suba */
.specialty-block-premium {
    margin-top: 40px;
    /* Garante que ele não encoste nos chips de cima */
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Responsividade: No mobile, a lista sem limites pode voltar a ser vertical para caber */
@media (max-width: 768px) {
    .list-white-text {
        flex-direction: column;
        align-items: stretch;
    }

    .list-white-text li {
        justify-content: center;
    }
}

.specialty-block-premium {
    background: #ffffff;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

.specialty-block-premium h4 {
    color: var(--dark-blue);
    font-size: 1.7rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.specialty-block-premium h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--secondary);
    border-radius: 10px;
}

.simple-list li {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.footer-tag-blue {
    background: #f8fafc;
    padding: 15px;
    border-radius: 15px;
    color: var(--dark-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 30px;
    border: 1px solid #edf2f7;
}

/* 7. RESPONSIVIDADE */
@media (max-width: 992px) {
    .grid-products {
        text-align: center;
        gap: 40px;
    }

    .feature-list-text li {
        padding-left: 0;
    }

    .feature-list-text li::before {
        display: none;
    }

    .order-2-mobile {
        order: -1;
    }

    .list-white-text li {
        width: 100%;
    }

    .specialty-block-premium {
        padding: 30px;
    }
}

/* =========================================
   FAQ — ACCORDION SECTION
   ========================================= */

/* Shared title styles used in the FAQ header */
.text-center-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-impact {
    font-size: 2.6rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-impact span {
    color: var(--primary);
}

.subtitle-clean {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
}

/* Wrapper that holds all FAQ groups */
.faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Group label (e.g. "Atendimento Imediato") */
.faq-group {
    margin-bottom: 10px;
}

.faq-group-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    padding: 0 0 10px 4px;
    border-bottom: 2px solid #e8f0fe;
    margin-bottom: 4px;
}

/* Individual FAQ item card */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    margin-bottom: 6px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.08);
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary);
}

/* +/- icon */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.4s ease;
    font-size: 0.75rem;
    color: var(--primary);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

/* Answer panel — hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease;
    padding: 0 28px;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA block at the bottom of the FAQ */
.faq-cta {
    margin-top: 70px;
    text-align: center;
}

.faq-cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, #0056d2 100%);
    border-radius: 30px;
    padding: 60px 40px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
}

.faq-cta-inner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-cta-inner p {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 35px;
}

.faq-cta-inner .btn-hero-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.faq-cta-inner .btn-hero-primary:hover {
    background: #f0f7ff;
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
    .title-impact {
        font-size: 2rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.open {
        padding: 0 20px 20px;
    }

    .faq-cta-inner {
        padding: 40px 24px;
    }

    .faq-cta-inner h3 {
        font-size: 1.5rem;
    }
}

/* =========================================
   FOOTER (RODAPÉ)
   ========================================= */
.main-footer {
    background: #001a35;
    /* Um azul ainda mais profundo */
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: var(--font-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Torna a logo branca caso seja escura */
}

.footer-col p {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Ícones Sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contato */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background: #001225;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.85rem;
}

.bottom-flex strong {
    color: var(--primary);
}

/* Responsividade Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.7rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.75); }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* 1. Esconde o menu burguer por padrão (Desktop) */
.menu-toggle {
    display: none;
    /* Isso faz ele sumir em telas grandes */
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary);
}

/* 2. Regras para o menu burguer aparecer APENAS no Mobile */
@media (max-width: 992px) {
    section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    section#home.hero-full {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    header {
        padding: 12px 0;
    }

    header.scrolled {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 10001;
    }

    header.header-transparent .menu-toggle {
        color: #fff;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100% !important;
        height: calc(100dvh - 70px) !important;
        background: #ffffff !important;
        flex-direction: column;
        padding: 28px 24px 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        z-index: 9999 !important;
        text-align: center;
        gap: 0;
        border-top: 1px solid #eee;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.35s ease forwards;
    }

    .nav-links li {
        margin: 0 !important;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 16px !important;
        padding-top: 8px;
    }

    .nav-item {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .nav-links .btn-nav-animated {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    header.header-transparent .nav-links.active .nav-item {
        color: var(--dark);
    }

    header.header-transparent .nav-links.active .nav-item:hover,
    header.header-transparent .nav-links.active .nav-item.active {
        color: var(--primary);
    }

    #home .hero-mockup {
        display: none;
    }

    #home .hero-grid {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 0;
    }

    #home .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .logo-img {
        height: 36px !important;
        max-height: 36px !important;
    }

    .container {
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
    }

    header nav.container {
        padding-left: max(24px, env(safe-area-inset-left, 0px));
        padding-right: max(24px, env(safe-area-inset-right, 0px));
    }

    header.scrolled .logo-img {
        height: 32px !important;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .grid-products {
        gap: 36px;
    }

    .product-text-box,
    .product-image-box {
        min-width: 0;
        flex: 1 1 100%;
    }

    .title-impact,
    .section-title {
        font-size: 1.75rem;
    }

    .title-impact-white {
        font-size: 1.75rem;
    }

    .text-center-header {
        margin-bottom: 36px;
    }

    .about-visual {
        max-width: 300px;
    }

    .experience-badge {
        right: 0;
        bottom: -10px;
        padding: 20px 24px;
    }

    .experience-badge span {
        font-size: 1.5rem;
    }

    .gap-contact,
    .gap-receita {
        gap: 40px;
    }

    .elegant-form {
        padding: 28px 20px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 16px;
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        padding: 12px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   BUTTON CLEMENTE DIGITAL
   ========================================= */

/* Estilo para o link do desenvolvedor no footer */
.bottom-flex p a {
    color: inherit;
    /* Faz o link herdar a cor do texto ao redor */
    text-decoration: none;
    /* Remove a linha embaixo */
    font-weight: 700;
    /* Deixa em negrito para destacar que é um link */
    transition: all 0.3s ease;
}

.bottom-flex p a:hover {
    color: var(--primary);
    /* Muda para a cor principal do site ao passar o mouse */
    text-decoration: none;
    /* Garante que a linha não volte no hover */
}

/* =========================================
   SEÇÃO DE CONTATO (ELEGANT)
   ========================================= */
.gap-contact {
    gap: 80px;
    align-items: flex-start;
}

.contact-methods {
    margin-top: 40px;
}

/* Card do WhatsApp (Destaque) */
.whatsapp-card {
    display: flex;
    align-items: center;
    background: var(--secondary-light);
    padding: 24px 28px;
    border-radius: 24px;
    text-decoration: none;
    color: var(--dark-blue);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.whatsapp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
    border-color: var(--secondary);
}

.wa-icon {
    font-size: 2rem;
    color: #28a745;
    margin-right: 20px;
}

.wa-text strong {
    display: block;
    font-size: 1.1rem;
    color: #155724;
}

.wa-text span {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

.whatsapp-card .arrow {
    margin-left: auto;
    color: #28a745;
    opacity: 0.5;
}

/* Contact Minimal Items */
.contact-item-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
}

.contact-item-minimal i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item-minimal strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
}

.contact-item-minimal p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Formulário Minimalista */
.elegant-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 32px;
    box-shadow: var(--premium-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 850px) {
    .gap-contact {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-card {
        text-align: left;
    }

    .contact-item-minimal {
        justify-content: center;
        margin-left: 0;
    }

    .elegant-form {
        padding: 30px 20px;
    }
}

/* =========================================
   HERO STATS BAR
   ========================================= */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 80px;
    padding: 22px 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-text .hero-stats {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
    max-width: 100%;
    padding: 24px 36px;
}

.hero-stat {
    text-align: center;
    padding: 0 28px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat strong {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-lime);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat strong .counter {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
}

.hero-stat > span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.reveal-stats {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

@media (max-width: 600px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .phone-frame {
        width: 210px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 20px 16px;
    }

    .stat-box strong {
        font-size: 1.6rem;
    }

    .plan-card {
        padding: 28px 22px;
    }

    .purpose-card {
        padding: 32px 24px;
    }

    .specialty-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .specialty-card {
        padding: 16px 10px;
    }

    .specialty-card h4 {
        font-size: 0.8rem;
    }

    .specialty-block-premium {
        padding: 24px 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .faq-cta-inner {
        padding: 32px 20px;
    }

    .faq-cta-inner h3 {
        font-size: 1.3rem;
    }

    .prescription-card {
        max-width: 100%;
    }

    .mental-card {
        padding: 28px 20px;
        max-width: 100%;
    }

    .trust-item {
        padding: 12px 14px;
    }

    .chip-container {
        line-height: 2.4;
    }

    .chip {
        font-size: 0.8rem;
        padding: 2px 12px;
    }

    .section-unlimited .benefit-card-glass {
        padding: 28px 16px;
    }

    .unlimited-pills li {
        font-size: 0.85rem !important;
        padding: 10px 18px !important;
    }
}

/* =========================================
   SECTION SERVICOS — FIX EMPTY GAP
   ========================================= */
#servicos.section-padding {
    padding-top: 60px;
    padding-bottom: 10px;
}

/* =========================================
   FORM — ENHANCED INTERACTIONS
   ========================================= */
.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), #0056d2);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0056d2, var(--dark-blue));
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.25);
}

/* =========================================
   PURPOSE CARDS — GRADIENT ICON ON HOVER
   ========================================= */
.purpose-card:hover .purpose-icon {
    background: linear-gradient(135deg, var(--primary), #0056d2);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.25);
}

/* =========================================
   CHIP HOVER COLOR — MATCH BRAND
   ========================================= */
.chip:hover {
    background: #e8f0fe;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.12);
}

.chip.highlight {
    background: #e8f0fe;
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 800;
}

/* =========================================
   HERO PHONE MOCKUP
   ========================================= */
.reveal-mockup {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    background: #0d1b3e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin: 0 auto 10px;
}

.phone-screen {
    background: #f8fafc;
    border-radius: 26px;
    padding: 20px 16px;
    min-height: 380px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.phone-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 0.95rem;
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.phone-doctor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.doctor-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #3b6ef0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.doctor-info strong {
    display: block;
    color: var(--dark-blue);
    font-size: 0.9rem;
}

.doctor-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.phone-waiting {
    text-align: center;
    margin-bottom: 20px;
}

.waiting-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.waiting-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    animation: waitingPulse 2s ease-in-out infinite;
}

@keyframes waitingPulse {
    0%, 100% { width: 55%; }
    50% { width: 75%; }
}

.phone-waiting p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.phone-cta {
    width: 100%;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: default;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.phone-features {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.phone-features span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.phone-features i {
    color: var(--primary);
    font-size: 1rem;
}

.mockup-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.25), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =========================================
   TRUST STRIP
   ========================================= */
.trust-strip {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #edf2f7;
    position: relative;
    z-index: 5;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 16px;
    transition: var(--transition);
}

.trust-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--dark-blue);
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =========================================
   ABOUT VISUAL (substitui Unsplash)
   ========================================= */
.about-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
}

.about-visual-ring {
    position: absolute;
    inset: 10%;
    border: 2px dashed rgba(27, 79, 216, 0.15);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-visual-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-blue);
    animation: floating 4s ease-in-out infinite;
}

.about-visual-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

.card-main {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-secondary {
    top: 45%;
    right: 0;
    animation-delay: -1.3s;
}

.card-accent {
    bottom: 10%;
    left: 15%;
    animation-delay: -2.6s;
}

.card-accent i {
    color: var(--secondary);
}

/* =========================================
   COMO FUNCIONA — TIMELINE
   ========================================= */
.steps-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: flex-start;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    padding: 0 15px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 2px solid var(--primary-light);
}

.step-item:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 79, 216, 0.25);
}

.step-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    margin-top: 55px;
    flex-shrink: 0;
}

/* =========================================
   PLANOS
   ========================================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.plan-card {
    background: white;
    border-radius: 28px;
    padding: 40px 32px;
    border: 2px solid #edf2f7;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--premium-shadow);
    border-color: var(--primary-light);
}

.plan-featured {
    border-color: var(--secondary);
    transform: scale(1.04);
    box-shadow: 0 25px 60px rgba(0, 200, 150, 0.15);
}

.plan-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.plan-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #edf2f7;
}

.plan-from {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.plan-price strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    display: block;
}

.plan-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--dark);
}

.plan-features i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-plan:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-plan-featured {
    background: var(--secondary);
    color: white;
}

.btn-plan-featured:hover {
    background: #00b386;
    color: white;
}

/* =========================================
   PRODUCT VISUALS (substitui Unsplash)
   ========================================= */
.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.visual-screen {
    width: 100%;
    max-width: 400px;
    background: var(--dark-blue);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 26, 61, 0.25);
}

.screen-header {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
}

.screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screen-dot.red { background: #ff5f57; }
.screen-dot.yellow { background: #febc2e; }
.screen-dot.green { background: #28c840; }

.screen-content {
    padding: 20px;
}

.screen-video-area {
    background: linear-gradient(135deg, #1a3060, #0d1b3e);
    border-radius: 12px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.screen-video-area i {
    font-size: 3rem;
    color: var(--accent-lime);
}

.screen-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.screen-controls span {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.screen-controls .end-call {
    background: #ef4444;
}

.mental-card {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--premium-shadow);
    text-align: center;
    max-width: 340px;
    border: 1px solid #edf2f7;
}

.mental-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #7c3aed;
    margin: 0 auto 20px;
}

.mental-card h4 {
    font-family: var(--font-heading);
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.mental-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mental-schedule {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mental-schedule span {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* =========================================
   RECEITA DIGITAL
   ========================================= */
.gap-receita {
    gap: 80px;
    align-items: center;
}

.receita-features {
    list-style: none;
    margin-top: 30px;
}

.receita-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--dark);
}

.receita-features i {
    width: 40px;
    height: 40px;
    background: var(--secondary-light);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prescription-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--premium-shadow);
    overflow: hidden;
    border: 1px solid #edf2f7;
    max-width: 380px;
    margin: 0 auto;
}

.prescription-header {
    background: linear-gradient(135deg, var(--primary), #3b6ef0);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.prescription-header i {
    font-size: 1.8rem;
}

.prescription-header strong {
    display: block;
    font-family: var(--font-heading);
}

.prescription-header span {
    font-size: 0.75rem;
    opacity: 0.85;
}

.prescription-body {
    padding: 24px;
}

.prescription-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.prescription-row span {
    color: var(--text-muted);
}

.prescription-meds {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}

.med-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.med-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.med-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-blue);
}

.med-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.prescription-qr {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.qr-placeholder {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.prescription-qr span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.prescription-valid {
    background: var(--secondary-light);
    color: #047857;
    padding: 12px 24px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   ESPECIALIDADES GRID
   ========================================= */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.specialty-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-light);
}

.specialty-card.immediate {
    border-color: rgba(0, 200, 150, 0.3);
    background: var(--secondary-light);
}

.specialty-card.highlight-card {
    background: var(--primary-light);
    border-color: var(--primary);
}

.specialty-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.specialty-card:hover .specialty-card-icon {
    background: var(--primary);
    color: white;
}

.specialty-card.immediate .specialty-card-icon {
    background: rgba(0, 200, 150, 0.15);
    color: var(--secondary);
}

.specialty-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.specialty-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 50px;
}

.immediate-tag {
    background: var(--secondary);
    color: white;
}

.title-impact-sm {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.mt-60 {
    margin-top: 60px;
}

.chip i {
    margin-right: 4px;
}

/* =========================================
   PROVA SOCIAL
   ========================================= */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-box {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-shadow);
}

.stat-box strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #3b6ef0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-blue);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =========================================
   FOOTER INSTITUCIONAL
   ========================================= */
.footer-newsletter {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter strong {
    display: block;
    font-size: 0.85rem;
    color: #cbd5e0;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.85rem;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.footer-legal {
    background: #000d1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: #718096;
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-cnpj {
    font-size: 0.82rem;
    color: #718096;
    margin: 0;
}

/* =========================================
   WHATSAPP TOOLTIP
   ========================================= */
.wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--dark-blue);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: white;
}

.wa-tooltip.show {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
}

.whatsapp-float {
    overflow: visible;
}

/* =========================================
   PULSE BADGE (reutilizado)
   ========================================= */
.pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   RESPONSIVIDADE — NOVAS SEÇÕES
   ========================================= */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-connector {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-8px);
    }

    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #home .hero-mockup {
        display: none !important;
    }

    #home .hero-grid {
        gap: 0;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-legal-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .wa-tooltip {
        display: none;
    }
}

@media (max-width: 600px) {
    .phone-frame {
        width: 210px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HERO MOBILE / TABLET — layout definitivo
   ========================================= */
@media (max-width: 992px) {
    #home.hero-full {
        min-height: auto !important;
        display: block !important;
        width: 100%;
        align-items: flex-start;
        padding-bottom: 0 !important;
    }

    #home .overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 26, 61, 0.93) 0%,
            rgba(11, 26, 61, 0.88) 55%,
            rgba(11, 26, 61, 0.95) 100%
        ) !important;
    }

    #home .container.hero-content {
        display: block;
        width: 100%;
        max-width: 100%;
        padding-top: calc(72px + env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 48px !important;
        padding-left: max(24px, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(24px, env(safe-area-inset-right, 0px)) !important;
        box-sizing: border-box;
    }

    #home .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 0;
    }

    #home .hero-text {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    #home .hero-badge {
        display: inline-flex;
        align-items: center;
        margin: 0 0 18px 0;
        padding: 8px 16px;
        font-size: 0.7rem;
        letter-spacing: 0.6px;
    }

    #home .hero-content h1 {
        font-size: 2.15rem !important;
        line-height: 1.2;
        margin-bottom: 16px;
        letter-spacing: -0.03em;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    }

    #home .hero-content p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 28px;
        max-width: 100%;
        opacity: 0.92;
    }

    #home .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 32px;
    }

    #home .hero-btns .btn-hero-primary,
    #home .hero-btns .btn-hero-secondary {
        width: 100%;
        margin: 0 !important;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        border-radius: 14px;
        box-sizing: border-box;
    }

    #home .hero-btns .btn-hero-secondary {
        padding: 14px 24px;
        border-width: 1.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    #home .hero-text .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 24px 0 0 !important;
        max-width: 100% !important;
        background: none !important;
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    #home .hero-stat-divider {
        display: block !important;
        width: 1px !important;
        height: auto !important;
        align-self: stretch !important;
        margin: 6px 0 !important;
        background: rgba(255, 255, 255, 0.2) !important;
        flex-shrink: 0 !important;
    }

    #home .hero-stat {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        padding: 0 8px;
        min-width: 0;
        text-align: center;
        background: none !important;
        border: none !important;
    }

    #home .hero-stat:first-child {
        padding-left: 0;
    }

    #home .hero-stat:last-child {
        padding-right: 0;
    }

    #home .hero-stat strong {
        font-size: 1.55rem !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
        color: var(--accent-lime) !important;
    }

    #home .hero-stat > span {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        color: rgba(255, 255, 255, 0.88) !important;
        font-weight: 500;
    }

    #home .hero-mockup {
        display: none !important;
    }

    #home .scroll-indicator {
        display: none !important;
    }
}

@media (max-width: 380px) {
    #home .hero-content h1 {
        font-size: 1.9rem !important;
    }

    #home .hero-stat strong {
        font-size: 1.35rem !important;
    }

    #home .hero-stat > span {
        font-size: 0.68rem !important;
    }
}

/* =========================================
   SOBRE + TRUST STRIP — mobile
   ========================================= */
@media (max-width: 992px) {
    .trust-strip {
        padding: 20px 0;
    }

    .trust-strip-inner {
        gap: 10px;
    }

    .trust-item {
        padding: 12px 14px;
    }

    #sobre.section-padding {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    #sobre .about-image {
        margin-bottom: 36px;
        width: 100%;
    }

    #sobre .about-visual {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 100%;
        aspect-ratio: auto;
        margin: 0;
    }

    #sobre .about-visual-ring {
        display: none;
    }

    #sobre .about-visual-card {
        position: static;
        animation: none;
        width: 100%;
        justify-content: flex-start;
        padding: 14px 18px;
        font-size: 0.88rem;
        box-sizing: border-box;
    }

    #sobre .about-visual-card i {
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    #sobre .experience-badge {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 4px;
        padding: 16px 20px;
        border-radius: 16px;
        box-sizing: border-box;
    }

    #sobre .experience-badge span {
        font-size: 1.5rem;
        display: inline;
    }

    #sobre .experience-badge p {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
    }

    #sobre .about-text {
        text-align: left;
    }

    #sobre .about-text h2 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    #sobre .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}
