/* CSS Variables - Identidade Visual Vidacor Seguros (Tema Escuro Premium) */
:root {
    /* Cores oficiais do Briefing - Adaptadas para Tema Escuro Premium */
    --verde-escuro: #E6F2EC;   /* Usado para títulos em geral (sálvia claro para alto contraste) */
    --verde-medio:  #8CBF9E;   /* Bordas de foco e botões ativos (sálvia médio da marca) */
    --ambar:        #F2A81C;   /* CTAs e números de destaque (mantido âmbar) */
    --off-white:    #050E0A;   /* Fundo principal da página (verde escuro obsidian) */
    --branco:       #0F241B;   /* Fundo de cards, modais e formulários (verde floresta escuro) */
    --grafite:      #A5BCAE;   /* Texto de corpo (sálvia suave, agradável para leitura) */
    --cinza-borda:  rgba(140, 191, 158, 0.12); /* Linhas de bordas sutis */
    
    /* Variações e utilitários */
    --verde-medio-suave: rgba(140, 191, 158, 0.06); /* Fundos decorativos de seção */
    --verde-escuro-hover: #173627;
    --ambar-hover: #df950f;
    --cinza-suave: #0A1811;    /* Fundo de inputs e selects desativados */
    --error: #ef4444;          /* Vermelho vibrante no escuro */
    --success: #10b981;        /* Verde vibrante no escuro */
    
    /* Tipografia */
    --font-titles: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --border-radius-card: 12px;
    --border-radius-btn: 8px;
    --shadow-sm: 0 2px 8px rgba(15, 90, 56, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 90, 56, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 90, 56, 0.12);
    --transition-fast: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--off-white);
}
::-webkit-scrollbar-thumb {
    background: var(--branco);
    border: 2px solid var(--off-white);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--verde-medio);
}

/* Reset básico e configurações iniciais */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

/* Compensação para o cabeçalho fixo */
section {
    scroll-margin-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--grafite);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Tipografia em Sentence Case */
h1, h2, h3, h4 {
    font-family: var(--font-titles);
    color: var(--verde-escuro);
    font-weight: 700;
    line-height: 1.2;
    text-transform: none; /* Garante Sentence case */
}

p {
    font-size: 1rem;
    color: var(--grafite);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* Foco acessível universal */
:focus-visible {
    outline: 3px solid var(--verde-escuro) !important;
    outline-offset: 2px !important;
    box-shadow: none !important;
}

/* --- BOTÕES (CTAs) --- */
/* Regra: Âmbar estritamente reservado para CTAs principais e números de economia */
.btn-cta-primary,
.btn-cta-header,
.btn-submit-form,
.btn-simulador-cta {
    background-color: var(--ambar);
    color: #0C2A1E;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(242, 168, 28, 0.25);
    transition: var(--transition-fast);
}

.btn-cta-primary:hover,
.btn-cta-header:hover,
.btn-submit-form:hover,
.btn-simulador-cta:hover {
    background-color: var(--ambar-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(242, 168, 28, 0.35);
}

.btn-cta-primary:active,
.btn-cta-header:active,
.btn-submit-form:active,
.btn-simulador-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Botões Secundários / Ghost */
.ghost-btn {
    background-color: transparent;
    color: var(--verde-escuro);
    border: 2px solid var(--verde-escuro);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.ghost-btn:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
    transform: translateY(-1px);
}

.ghost-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Botões do WhatsApp (CTAs com fundo verde da marca) */
.btn-whatsapp-cta,
.btn-whatsapp-mobile {
    background-color: #25D366;
    color: #FFFFFF !important;
    border: 2px solid #25D366;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-cta:hover,
.btn-whatsapp-mobile:hover {
    background-color: #128c7e;
    color: #FFFFFF !important;
    border-color: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:active,
.btn-whatsapp-mobile:active {
    transform: translateY(0) scale(0.98);
}

/* --- HEADER FIXO (Sticky) --- */
.main-header {
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 16px 0;
    transition: var(--transition-normal);
}

/* Estado ativo do Header (detectado via JS ao rolar) */
.main-header.scrolled {
    background-color: rgba(5, 14, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--cinza-borda);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-titles);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--verde-escuro);
    line-height: 1;
}

.logo-title.font-white {
    color: #FFFFFF;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ambar);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-subtitle.font-white-faded {
    color: rgba(255, 255, 255, 0.6);
}

.nav-desktop .nav-list {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--verde-escuro);
    position: relative;
    padding: 4px 0;
}

/* Sublinhado animado no hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--ambar);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp-header,
.btn-instagram-header {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.btn-whatsapp-header span,
.btn-instagram-header span {
    display: none !important;
}

.btn-whatsapp-header svg,
.btn-instagram-header svg {
    margin: 0 !important;
}

.btn-cta-header {
    height: 44px;
    padding: 0 24px;
    box-sizing: border-box;
    white-space: nowrap;
}

/* Menu Mobile Hamburguer */
.menu-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--verde-escuro);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* --- PAINEL DO MENU MOBILE --- */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 14, 10, 0.75);
    z-index: 100;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-content {
    background-color: var(--off-white);
    width: 80%;
    max-width: 320px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: slideLeft 250ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--cinza-borda);
    padding-bottom: 16px;
}

.menu-logo-title {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-escuro);
}

.close-menu-btn {
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: var(--verde-escuro);
    cursor: pointer;
    line-height: 1;
}

.nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--verde-escuro);
    display: block;
    padding: 8px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    color: var(--ambar);
}

.btn-whatsapp-mobile {
    width: 100%;
    background-color: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}

.btn-whatsapp-mobile:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    background-image: linear-gradient(to right, rgba(5, 14, 10, 0.92) 0%, rgba(5, 14, 10, 0.78) 50%, rgba(5, 14, 10, 0.45) 100%), url('hero-consultor.jpg');
    background-size: 135%;
    background-position: 0% center;
    background-repeat: no-repeat;
    padding: 80px 0 100px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-section {
        background-image: linear-gradient(to bottom, rgba(5, 14, 10, 0.94) 0%, rgba(5, 14, 10, 0.82) 60%, rgba(5, 14, 10, 0.55) 100%), url('hero-consultor.jpg');
        background-size: cover;
        background-position: center;
        padding: 60px 0;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 24px;
}

.badge-consultoria {
    background-color: var(--verde-medio-suave);
    color: var(--verde-escuro);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--cinza-borda);
}

.badge-consultoria svg {
    stroke: var(--ambar) !important;
}

.hero-text-side h1 {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2.5px;
}

.hero-title-metallic {
    background: linear-gradient(120deg, var(--verde-escuro) 15%, #258f5c 40%, var(--ambar) 65%, var(--verde-escuro) 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: metallicShine 4.5s linear infinite;
}

@keyframes metallicShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-metallic {
        animation: none;
        background-position: 50% 50%;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--grafite);
    margin-bottom: 30px;
    opacity: 0.9;
}


.seal-ans-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--verde-escuro);
    opacity: 0.8;
}

.seal-ans-hero svg {
    stroke: var(--verde-escuro) !important;
}

/* Card do Formulário */
.form-card {
    background-color: var(--branco);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cinza-borda);
    padding: 32px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
}

.form-tagline {
    font-size: 0.9rem;
    color: var(--grafite);
    text-align: center;
    margin-bottom: 24px;
    opacity: 0.8;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label-desc,
.form-input-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--verde-escuro);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Segmented Toggle Control */
.toggle-segmented {
    display: flex;
    background-color: var(--cinza-suave);
    padding: 4px;
    border-radius: var(--border-radius-btn);
}

.toggle-button-label {
    flex: 1;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--grafite);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.toggle-button-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-button-label.active {
    background-color: var(--branco);
    color: var(--verde-escuro);
    box-shadow: var(--shadow-sm);
}

/* Inputs */
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form select,
#modal-plano-valor {
    font-family: var(--font-body);
    width: 100%;
    height: 46px; /* Área de toque confortável no mobile (>= 44px) */
    padding: 0 16px;
    border-radius: var(--border-radius-btn);
    border: 1px solid rgba(15, 90, 56, 0.2);
    font-size: 0.95rem;
    color: var(--grafite);
    outline: none;
    background-color: var(--off-white);
    transition: var(--transition-fast);
}

.lead-form input:focus,
.lead-form select:focus,
#modal-plano-valor:focus {
    border-color: var(--verde-escuro);
    background-color: var(--branco);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--verde-escuro);
    pointer-events: none;
}

.lead-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

/* Radio buttons row */
.radio-options-row {
    display: flex;
    gap: 16px;
}

.radio-box {
    flex: 1;
    border: 1px solid rgba(15, 90, 56, 0.15);
    background-color: var(--off-white);
    padding: 10px 16px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    color: var(--grafite);
}

.radio-box input {
    accent-color: var(--verde-medio);
}

.radio-box:hover {
    border-color: var(--verde-medio);
}

.radio-box:has(input:checked) {
    border-color: var(--verde-medio);
    background-color: var(--branco);
    color: var(--verde-escuro);
    box-shadow: 0 0 0 1px var(--verde-medio);
}

/* Validações de Erro */
.form-group.field-invalid input,
.form-group.field-invalid select,
.form-group.field-invalid #modal-plano-valor {
    border-color: var(--error);
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--verde-escuro);
}

.field-error-msg {
    color: var(--error);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.btn-submit-form {
    width: 100%;
    height: 48px;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(15, 90, 56, 0.2);
    border-top-color: var(--verde-escuro);
    border-radius: 50%;
    animation: spin 800ms linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-disclosure {
    font-size: 0.72rem;
    color: var(--grafite);
    text-align: center;
    opacity: 0.7;
    margin-top: 8px;
}

/* Tela de Sucesso */
.form-success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    animation: fadeIn 300ms ease forwards;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--success);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-container h3 {
    font-size: 1.35rem;
    color: var(--verde-escuro);
}

.form-success-container p {
    font-size: 0.9rem;
    color: var(--grafite);
    opacity: 0.9;
}

.btn-reset-form {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--verde-escuro);
    background: transparent;
    border: 2px solid var(--verde-escuro);
    padding: 10px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 12px;
}

.btn-reset-form:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
}

/* --- SEÇÃO SOBRE A VIDACOR --- */
.sobre-section {
    padding: 80px 0;
    background-color: var(--branco);
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 64px;
    align-items: center;
}

/* Bloco do Fundador */
.founder-card {
    grid-column: 1;
    grid-row: 1 / span 4;
    align-self: center;
    height: fit-content;
    background-color: #07130E;
    border: 1px solid rgba(140, 191, 158, 0.15);
    border-radius: var(--border-radius-card);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    width: 100%;
    max-width: 440px;
}

.founder-card:hover {
    border-color: rgba(140, 191, 158, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.founder-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-medio);
    letter-spacing: 1.5px;
}

.founder-quote {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 16px;
}

.founder-quote::before {
    content: "“";
    font-family: 'Figtree', Georgia, serif;
    font-size: 6rem;
    color: var(--ambar);
    opacity: 0.25;
    position: absolute;
    top: -24px;
    left: -10px;
    z-index: 1;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-titles);
    font-size: 1.85rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #FFE8B5 0%, #F2A81C 50%, #A36C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.founder-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(140, 191, 158, 0.1);
    padding-top: 24px;
}

.founder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--verde-medio);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.founder-name {
    font-family: var(--font-titles);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--verde-escuro);
    font-style: normal;
    line-height: 1.3;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--grafite);
    opacity: 0.8;
    line-height: 1.2;
}

.sobre-text-block {
    grid-column: 2;
    grid-row: 1;
}

.stats-grid {
    grid-column: 2;
    grid-row: 2;
}

.concierge-banner {
    grid-column: 2;
    grid-row: 3;
}

.sobre-footer {
    grid-column: 2;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Placeholders de imagem discretos */
.placeholder-box {
    background-color: var(--cinza-suave);
    border: 1px dashed var(--verde-medio);
    border-radius: var(--border-radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--verde-escuro);
    opacity: 0.7;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-4-5 {
    aspect-ratio: 4 / 5;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.sobre-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.sobre-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 620px;
}

/* Contadores estáticos e dinâmicos */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 620px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(140, 191, 158, 0.2); /* Linha divisória vertical sutil */
}

.stat-card:first-child {
    border-left: none;
    padding-left: 0;
}

.stat-icon {
    width: 28px;
    height: 28px;
    color: var(--verde-medio);
    flex-shrink: 0;
}

.stat-num {
    font-family: var(--font-titles);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--verde-escuro);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-num.color-ambar {
    color: var(--ambar);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grafite);
    opacity: 0.85;
}

/* Faixa de Destaque do Concierge */
.concierge-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(242, 168, 28, 0.12); /* Fundo levemente âmbar com baixa opacidade */
    border: 1px solid rgba(242, 168, 28, 0.2);
    border-radius: var(--border-radius-card);
    padding: 16px 24px;
    margin: 32px 0 24px 0;
    width: 100%;
    max-width: 620px;
    text-align: left; /* Keep left alignment internally for horizontal layout */
}

.concierge-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concierge-icon {
    width: 32px;
    height: 32px;
    stroke: var(--ambar);
}

.concierge-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.concierge-title {
    font-family: var(--font-titles);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ambar); /* Destaque em âmbar */
    margin: 0;
    line-height: 1.3;
}

.concierge-text {
    font-size: 0.88rem;
    color: var(--grafite); /* Cor secundária clara */
    margin: 0;
    line-height: 1.4;
}

.methodology-note {
    font-size: 0.7rem;
    line-height: 1.5;
    color: var(--grafite);
    opacity: 0.65;
    text-align: left;
    max-width: 620px;
}

/* Registro SUSEP */
.susep-registration {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--grafite);
    opacity: 0.85;
    width: 100%;
    max-width: 620px;
}

.susep-icon {
    width: 20px;
    height: 20px;
    color: var(--verde-medio);
    flex-shrink: 0;
}


.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-tagline {
    font-size: 1.05rem;
    color: var(--grafite);
    opacity: 0.8;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-item {
    background-color: var(--branco);
    border-radius: var(--border-radius-card);
    border: 1px solid var(--cinza-borda);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-normal);
}

.card-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 90, 56, 0.25);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-btn);
    background-color: var(--verde-medio-suave);
    color: var(--verde-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-item h3 {
    font-size: 1.3rem;
}

.card-item p {
    font-size: 0.95rem;
    color: var(--grafite);
    opacity: 0.9;
    flex-grow: 1;
}

.card-link-action {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-top: 10px;
    align-self: flex-start;
}

.card-link-action:hover {
    color: var(--ambar);
}

/* --- SEÇÃO COMO A VIDACOR FUNCIONA PARA VOCÊ --- */
.reducao-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-cards-grid .card-item {
    padding: 32px 24px;
}

.process-cards-grid h3 {
    font-size: 1.25rem;
    color: var(--verde-escuro);
}

.process-cards-grid p {
    font-size: 0.9rem;
    color: var(--grafite);
}

/* --- SEÇÃO PRIMEIRA CONTRATAÇÃO (FLIP CARDS) --- */
.primeira-contratacao-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1000px;
}

.flip-card {
    background-color: transparent;
    height: 435px;
    perspective: 1000px;
    cursor: pointer;
    border: none;
    outline: none;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Estado Flipped */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Hover no Desktop */
@media (hover: hover) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-card);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cinza-borda);
}

.flip-card-front {
    background-color: var(--branco);
    color: var(--verde-escuro);
}

.flip-card-back {
    background-color: #07130E; /* Leve contraste com var(--branco) */
    color: var(--verde-escuro);
    transform: rotateY(180deg);
}

.flip-card-icon {
    width: 48px;
    height: 48px;
    color: var(--verde-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--verde-medio-suave);
    border-radius: var(--border-radius-btn);
}

.flip-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--verde-medio);
}

.flip-card-title,
.flip-card-back-title {
    font-family: var(--font-titles);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-top: 12px;
    margin-bottom: 8px;
}

.flip-card-back-title {
    margin-top: 0;
    border-bottom: 1px solid var(--cinza-borda);
    padding-bottom: 8px;
}

.flip-card-summary {
    font-size: 0.95rem;
    color: var(--grafite);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.flip-card-hint {
    font-size: 0.72rem;
    color: var(--grafite);
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.btn-cta-flip {
    background-color: var(--ambar);
    color: var(--verde-escuro);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(242, 168, 28, 0.25);
    transition: var(--transition-fast);
    text-decoration: none;
    width: 100%;
}

.btn-cta-flip:hover {
    background-color: var(--ambar-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(242, 168, 28, 0.35);
}

.btn-cta-flip:active {
    transform: translateY(0) scale(0.98);
}

.flip-card-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    margin-bottom: 16px;
    list-style: none;
}

.flip-card-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--grafite);
    line-height: 1.4;
}

.flip-card-checklist li svg {
    flex-shrink: 0;
    color: var(--verde-medio);
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.flip-card-back-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.btn-flip-back-close {
    background: transparent;
    border: none;
    color: var(--verde-medio);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-flip-back-close:hover {
    color: var(--verde-escuro);
}

/* Classes utilitárias de visualização */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.check-icon {
    flex-shrink: 0;
    color: var(--verde-escuro);
    margin-top: 4px;
}

/* --- SEÇÃO SIMULADOR INTERATIVO --- */
.simulador-section {
    padding: 80px 0;
    background-color: var(--branco);
}

.simulador-box {
    background-color: var(--off-white);
    border-radius: var(--border-radius-card);
    border: 1px solid var(--cinza-borda);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    box-shadow: var(--shadow-md);
}

.simulador-controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.slider-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--verde-escuro);
    display: block;
    margin-bottom: 16px;
}

/* Custom Range Input (Slider) */
.slider-wrapper {
    position: relative;
}

.slider-wrapper input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--verde-medio-suave);
    outline: none;
    margin: 10px 0;
}

/* Slider thumb */
.slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--verde-escuro);
    border: 2px solid var(--branco);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background-color: var(--ambar);
}

.slider-wrapper input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--verde-escuro);
    border: 2px solid var(--branco);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.slider-wrapper input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    background-color: var(--ambar);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grafite);
    opacity: 0.7;
    margin-top: 4px;
}

/* Caixa de Resultado da Economia (Simulador) */
.simulation-result-box {
    width: 100%;
    background-color: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: var(--border-radius-card);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    box-sizing: border-box;
    /* Ocupa toda a altura disponível da coluna direita para simetria visual */
    flex: 1;
    /* Garante espaço mínimo mesmo quando o texto é curto */
    min-height: 420px;
    justify-content: space-between;
}

.result-context-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grafite);
    margin: 0;
    text-align: left;
    /* Altura mínima para ~3 linhas — previne reflow ao mudar o slider */
    min-height: 4.2em;
}

.result-context-text .text-highlight-white {
    color: var(--ambar);
    font-weight: 700;
}

/* Contraste antes → depois (linha de destaque) */
.result-comparison-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--cinza-borda);
    border-bottom: 1px solid var(--cinza-borda);
    width: 100%;
}

.result-old-value {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: rgba(165, 188, 174, 0.45); /* cinza riscado */
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.result-arrow {
    font-size: 1.35rem;
    color: var(--ambar);
    font-weight: 700;
}

.result-new-value {
    font-size: 1.6rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-family: var(--font-titles);
}

.result-new-value.highlight-ambar {
    color: var(--ambar) !important;
}

/* Bloco de economia (elemento herói) */
.result-hero-savings {
    background-color: var(--off-white); /* fundo escuro (#050E0A) */
    border: 1.5px dashed rgba(242, 168, 28, 0.3);
    border-radius: var(--border-radius-btn);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.hero-savings-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--grafite);
    opacity: 0.85;
}

.hero-savings-val-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
}

.hero-savings-value {
    font-family: var(--font-titles);
    font-size: 2.2rem;
    font-weight: 850;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    /* Garante que o número anual não causa refluxo de layout
       ao transicionar entre dígitos de larguras diferentes */
    min-width: 8ch;
    display: inline-block;
    text-align: center;
}

.hero-savings-value.highlight-ambar {
    color: var(--ambar) !important;
    text-shadow: 0 2px 12px rgba(242, 168, 28, 0.12);
}

.hero-savings-suffix {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde-escuro);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botão WhatsApp do Simulador */
.simulator-whatsapp-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.btn-whatsapp-simulator {
    background-color: #25D366;
    color: #FFFFFF !important;
    border: none;
    border-radius: var(--border-radius-btn);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.btn-whatsapp-simulator:hover {
    background-color: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-simulator:active {
    transform: translateY(0) scale(0.98);
}

/* Rodapé e Asterisco de Compliance */
.result-footer-text {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--grafite);
    opacity: 0.9;
    margin: 0;
}

.result-asterisk-text {
    font-size: 0.68rem;
    line-height: 1.4;
    color: rgba(165, 188, 174, 0.65); /* cor secundária menor */
    margin: 0;
}

/* Simulador Gráfico (Lado Direito) */
.simulador-graphic {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    /* Ocupa toda a altura da célula da grade para simetria com a esquerda */
    height: 100%;
}

.comparison-chart-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 2px solid var(--cinza-borda);
    padding-bottom: 12px;
    position: relative;
}

.chart-bars-area {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 48px;
    height: 150px;
    position: relative;
    width: 100%;
}

.chart-bar-column {
    display: flex;
    align-items: flex-end;
    flex: 1;
    max-width: 120px;
    height: 100%;
    position: relative;
}

.chart-bar {
    width: 100%;
    border-radius: var(--border-radius-btn) var(--border-radius-btn) 0 0;
    position: relative;
    transition: height 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.chart-bar.bar-current {
    background-color: var(--verde-medio);
}

.chart-bar.bar-vidacor {
    background-color: var(--ambar);
    box-shadow: 0 4px 12px rgba(242, 168, 28, 0.2);
}

.chart-bar-value {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    font-family: var(--font-titles);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity 200ms ease;
}

.bar-current .chart-bar-value {
    color: var(--verde-escuro);
}

.bar-vidacor .chart-bar-value {
    color: var(--ambar);
}

.chart-labels-area {
    display: flex;
    justify-content: center;
    gap: 48px;
    width: 100%;
    margin-top: 12px;
}

.chart-bar-label {
    width: 120px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--grafite);
}

/* Conector Visual de Economia */
.savings-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    background: linear-gradient(180deg, rgba(242, 168, 28, 0.12) 0%, rgba(242, 168, 28, 0.01) 100%);
    border: 1.5px dashed var(--ambar);
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    transition: bottom 300ms cubic-bezier(0.25, 1, 0.5, 1), height 300ms cubic-bezier(0.25, 1, 0.5, 1), opacity 300ms ease;
}

.savings-badge {
    background-color: var(--ambar);
    color: var(--off-white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(242, 168, 28, 0.3);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.savings-badge svg {
    stroke: var(--off-white);
}

.savings-arrow-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, var(--ambar) 0%, rgba(242, 168, 28, 0.2) 100%);
    opacity: 0.5;
    z-index: 1;
}

/* Bloco Informativo de Reanálise */
.simulator-info-block {
    background-color: var(--branco);
    border: 1px solid rgba(140, 191, 158, 0.12);
    border-radius: var(--border-radius-card);
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 8px;
}

.info-block-icon {
    width: 20px;
    height: 20px;
    color: var(--verde-medio);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-block-content p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--grafite);
    margin: 0;
}

.info-block-content strong {
    color: var(--verde-escuro);
    font-weight: 700;
}

/* Estado inicial da animação (IntersectionObserver) */
.simulador-box:not(.revealed) .chart-bar {
    height: 0 !important;
}

.simulador-box:not(.revealed) .savings-connector {
    height: 0 !important;
    bottom: 0 !important;
    opacity: 0;
}

@media (max-width: 576px) {
    .chart-bars-area {
        gap: 32px;
    }
    .chart-labels-area {
        gap: 32px;
    }
    .savings-connector {
        width: 48px;
    }
}

/* Antigos actions e disclaimer do simulador removidos ou unificados na nova caixa */

/* --- SEÇÃO REDE CREDENCIADA --- */
.rede-section {
    padding: 100px 0;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.rede-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('vidacor-icone-completo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.02; /* Muito sutil do cubo da marca ao fundo */
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}

.rede-section .container {
    position: relative;
    z-index: 1;
}

.highlight-ambar {
    color: var(--ambar);
}

/* Cards de operadoras com Glassmorphism */
.operator-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    margin-bottom: 64px;
}

.operator-card {
    background: rgba(15, 36, 27, 0.45); /* Fundo escuro translúcido */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(140, 191, 158, 0.08); /* Borda fina sutil */
    border-radius: 12px; /* Cantos arredondados ~12px */
    padding: 32px;
    flex: 1 1 320px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.operator-card:hover {
    transform: translateY(-6px); /* Leve elevação no hover */
    border-color: rgba(242, 168, 28, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(140, 191, 158, 0.05);
}

.operator-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.operator-logo-chip {
    background-color: #ffffff; /* Chip claro/branco arredondado */
    border-radius: 50px;
    padding: 6px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.operator-logo-img {
    max-height: 24px;
    max-width: 100%;
    object-fit: contain;
}

.operator-card-body h3 {
    font-size: 1.3rem;
    color: var(--verde-escuro);
    margin-bottom: 12px;
    font-weight: 700;
}

.operator-card-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grafite);
    margin: 0;
}

/* Carrossel de logos marquee contínuo */
.rede-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 24px 0 64px 0;
    position: relative;
}

.rede-marquee-container::before,
.rede-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.rede-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white) 0%, rgba(5, 14, 10, 0) 100%);
}

.rede-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white) 0%, rgba(5, 14, 10, 0) 100%);
}

.rede-marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.rede-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-logo-box {
    background: #ffffff; /* Retângulo 100% branco sólido e claro */
    border: 1px solid rgba(140, 191, 158, 0.15); /* Borda fina sutil sálvia */
    border-radius: 8px; /* Cantos arredondados */
    height: 64px; /* Altura unificada */
    width: 180px; /* Largura unificada */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; /* Alinhamento e respiro dos logos */
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.marquee-logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    opacity: 1; /* Sem camada fosca, 100% visível por padrão */
    filter: none; /* Em cores completas por padrão */
    transition: transform 0.3s ease;
}

.marquee-logo-box:hover {
    transform: scale(1.05); /* Leve zoom */
    border-color: var(--ambar); /* Destaque na borda com âmbar */
    box-shadow: 0 6px 16px rgba(242, 168, 28, 0.25); /* Brilho âmbar sutil */
}

.rede-marquee-wrapper:hover .rede-marquee-track {
    animation-play-state: paused;
}

/* Ajustes de escala específicos para os logos da Unimed e Porto Saúde ficarem proporcionais */
.marquee-logo-box img[src*="unimed"] {
    transform: scale(2.4);
}
.marquee-logo-box img[src*="porto"] {
    transform: scale(2.1);
}

.operator-logo-chip img[src*="unimed"] {
    transform: scale(2.4);
}
.operator-logo-chip img[src*="porto"] {
    transform: scale(2.1);
}


@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1200px); /* 5 logos * (180px + 60px) = 1200px */
    }
}

/* Bloco de Curadoria */
.curadoria-bloco {
    max-width: 800px;
    margin: 0 auto 64px auto;
    text-align: center;
    padding: 48px 40px;
    background: rgba(15, 36, 27, 0.2);
    border: 1px solid rgba(140, 191, 158, 0.05);
    border-radius: 12px;
}

.curadoria-bloco h3 {
    font-size: 1.75rem;
    color: var(--verde-escuro);
    margin-bottom: 32px; /* Espaçamento generoso e equilibrado até os chips */
    font-weight: 700;
}

.curadoria-chips-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.curadoria-chips-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.curadoria-chip {
    background: rgba(140, 191, 158, 0.05);
    border: 1px solid rgba(140, 191, 158, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.curadoria-chip:hover {
    background: rgba(140, 191, 158, 0.1);
    border-color: rgba(140, 191, 158, 0.2);
    transform: translateY(-1px);
}

.chip-check-icon {
    width: 16px;
    height: 16px;
    color: var(--verde-medio);
    flex-shrink: 0;
}

.curadoria-chip span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--verde-escuro);
}

.curadoria-quote {
    font-family: var(--font-titles);
    font-style: italic;
    color: var(--ambar);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 36px;
    text-align: center;
    line-height: 1.5;
}

/* Faixa de fechamento */
.rede-fechamento {
    background: rgba(15, 36, 27, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(140, 191, 158, 0.15);
    border-radius: var(--border-radius-card);
    padding: 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(140, 191, 158, 0.03), 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rede-fechamento:hover {
    border-color: rgba(242, 168, 28, 0.3);
    box-shadow: 0 0 40px rgba(242, 168, 28, 0.08), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fechamento-l1 {
    font-size: 1.1rem;
    color: var(--verde-escuro);
    margin-bottom: 8px;
    font-weight: 500;
}

.fechamento-l2 {
    font-size: 1.35rem;
    color: var(--ambar);
    font-weight: 700;
    margin-bottom: 28px;
}

.btn-fechamento-cta {
    background-color: var(--ambar);
    color: var(--verde-escuro);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(242, 168, 28, 0.25);
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-fechamento-cta:hover {
    background-color: var(--ambar-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(242, 168, 28, 0.35);
}

.btn-fechamento-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Responsividade da Seção de Redes */
@media (max-width: 992px) {
    .operator-cards-grid {
        gap: 24px;
    }
    .operator-card {
        max-width: 100%;
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .operator-card {
        flex: 1 1 100%;
    }
    .curadoria-chips-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    .curadoria-chip {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .rede-fechamento {
        padding: 32px 24px;
    }
    .fechamento-l2 {
        font-size: 1.15rem;
    }
}



/* --- SEÇÃO DEPOIMENTOS --- */
.depoimentos-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonials-grid--5 > .testimonial-card:nth-child(4) {
    grid-column: 1;
}

.testimonials-grid--5 > .testimonial-card:nth-child(5) {
    grid-column: 2;
}

.testimonial-card {
    padding: 24px 28px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.placeholder-box.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.placeholder-box.avatar .placeholder-label {
    font-size: 0.5rem;
}

.testimonial-name {
    font-style: normal;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--verde-escuro);
    display: block;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--grafite);
    opacity: 0.75;
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--grafite);
    line-height: 1.6;
}

/* --- BLOCO AVALIAÇÕES GOOGLE --- */
.google-reviews-cta {
    margin-top: 48px;
    background-color: var(--branco);
    border: 1.5px solid rgba(242, 168, 28, 0.25);
    border-radius: var(--border-radius-card);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
}

.google-reviews-cta:hover {
    border-color: rgba(242, 168, 28, 0.5);
    box-shadow: 0 8px 32px rgba(242, 168, 28, 0.1);
    transform: translateY(-2px);
}

.google-reviews-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.google-logo-svg {
    flex-shrink: 0;
}

.google-reviews-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.google-reviews-label {
    font-family: var(--font-titles);
    font-size: 1rem;
    font-weight: 700;
    color: var(--verde-escuro);
    letter-spacing: -0.2px;
}

.google-stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
}

.google-rating-number {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--verde-escuro);
    margin-left: 6px;
}

.google-reviews-sub {
    font-size: 0.82rem;
    color: var(--grafite);
    opacity: 0.75;
    margin: 0;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--verde-escuro);
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(5, 14, 10, 0.15);
}

.btn-google-review:hover {
    background-color: #0F3D28;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 14, 10, 0.25);
}

.btn-google-review svg {
    fill: #F2A81C;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .google-reviews-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }
    .btn-google-review {
        width: 100%;
        justify-content: center;
    }
}



/* --- SEÇÃO CTA FINAL --- */
.cta-final-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1A12 0%, #050E0A 100%);
    color: #F0F6F3;
    text-align: center;
}

.cta-final-container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-final-section h2 {
    color: #FFFFFF;
    font-size: 2.2rem;
}

.cta-final-section p {
    color: #B3C9BE;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.cta-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-whatsapp-cta {
    background-color: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
}

.btn-whatsapp-cta:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/* --- FOOTER / RODAPÉ --- */
.main-footer {
    background-color: #08301e;
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 32px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 440px;
}

.font-white-faded {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-section-title {
    font-family: var(--font-titles);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
    color: #FFFFFF;
    padding-left: 2px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li.location-item {
    align-items: flex-start;
}

.footer-contact-list li.location-item span {
    line-height: 1.4;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-contact-list a:hover {
    color: #FFFFFF;
}

.footer-contact-list .contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--verde-medio);
}

.footer-compliance-divider {
    grid-column: span 3;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

.footer-compliance-section {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compliance-paragraph {
    font-size: 0.7rem;
    line-height: 1.6;
    opacity: 0.5;
    text-align: justify;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: var(--transition-fast);
}

.whatsapp-float-btn:hover {
    background-color: #128c7e;
    transform: scale(1.08) rotate(3deg);
}

.wa-float-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--verde-escuro);
    color: var(--branco);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.wa-float-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--verde-escuro);
}

.whatsapp-float-btn:hover .wa-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- REVELAÇÃO NO SCROLL (Animações de entrada) --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1), transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- ACESSIBILIDADE DE MOVIMENTO REDUZIDO --- */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: scroll !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */

@media (max-width: 992px) {
    .nav-desktop,
    .btn-cta-header {
        display: none;
    }
    
    .menu-hamburger-btn {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .badges-wrapper {
        justify-content: center;
    }
    
    .hero-text-side h1 {
        font-size: 3.2rem;
        line-height: 1.05;
        letter-spacing: -1.5px;
    }
    
    .seal-ans-hero {
        justify-content: center;
    }
    
    .sobre-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .founder-card {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: 600px;
        margin: 16px auto;
        padding: 30px 24px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .founder-quote {
        padding: 10px 0;
    }
    
    .founder-quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .sobre-text-block {
        grid-column: auto;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sobre-text {
        max-width: 100%;
    }
    
    .stats-grid {
        grid-column: auto;
        grid-row: auto;
        max-width: 100%;
    }
    
    .stat-card {
        align-items: center;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    
    .concierge-banner {
        grid-column: auto;
        grid-row: auto;
        max-width: 100%;
    }

    .sobre-footer {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .susep-registration {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
        text-align: center;
        max-width: 100%;
        margin-top: 8px;
    }
    
    .methodology-note {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
        max-width: 100%;
    }
    
    .cards-grid,
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    
    .simulador-box {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 32px;
    }
    
    .rede-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .testimonials-grid--5 > .testimonial-card:nth-child(4) {
        grid-column: auto;
    }

    .testimonials-grid--5 > .testimonial-card:nth-child(5) {
        grid-column: auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-compliance-divider,
    .footer-compliance-section {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .main-header {
        padding: 12px 0;
    }
    
    .logo-title {
        font-size: 1.15rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    /* btn-whatsapp-header styled globally as square */
    
    .hero-text-side h1 {
        font-size: 2.4rem;
        line-height: 1.05;
        letter-spacing: -1px;
    }
    
    .form-card {
        padding: 24px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-card {
        border-left: none;
        border-bottom: none;
        padding-left: 0;
        padding-bottom: 0;
        align-items: center;
    }

    .concierge-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
        gap: 12px;
    }
    
    .radio-options-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .simulation-result-box {
        padding: 20px 16px;
        gap: 16px;
        /* Em mobile o layout é coluna única — a min-height de desktop seria excessiva */
        min-height: unset;
    }
    .result-context-text {
        min-height: unset;
    }
    .hero-savings-value {
        font-size: 1.85rem;
        min-width: unset;
    }
    
    .search-form-mock {
        flex-direction: column;
    }
    
    .btn-search-mock {
        height: 46px;
    }
    
    .testimonial-card {
        padding: 24px;
    }

    
    .whatsapp-float-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* --- MODAL DE SIMULAÇÃO (PASSO 2) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 14, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background-color: var(--branco);
    border-radius: var(--border-radius-card);
    border: 1px solid var(--cinza-borda);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    animation: modalSlideUp 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--verde-escuro);
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--ambar);
}

.modal-title-heading {
    font-family: var(--font-titles);
    font-size: 1.35rem;
    color: var(--verde-escuro);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.3;
}

#modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-radio-box {
    border: 1px solid var(--cinza-borda);
    background-color: var(--off-white);
    padding: 14px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    color: var(--grafite);
}

.modal-radio-box input {
    accent-color: var(--verde-medio);
}

.modal-radio-box:hover {
    border-color: var(--verde-medio);
}

.modal-radio-box:has(input:checked) {
    border-color: var(--verde-medio);
    background-color: var(--branco);
    color: var(--verde-escuro);
    box-shadow: 0 0 0 1px var(--verde-medio);
}

/* Custom Success Message Box */
.success-custom-message {
    background-color: var(--off-white);
    border: 1.5px solid rgba(242, 168, 28, 0.4);
    border-radius: var(--border-radius-card);
    padding: 24px 20px;
    margin: 15px 0 20px 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-body);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Reduction Badge */
.success-reduction-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ambar);
    color: var(--verde-escuro);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    box-shadow: 0 2px 6px rgba(242, 168, 28, 0.2);
}

/* Success Body Text Context */
.success-body-text {
    color: var(--grafite);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}

/* Inline Styles for Context */
.cost-old-inline {
    text-decoration: line-through;
    color: #8C8C8A;
}

/* Price Comparison */
.success-cost-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 20px 0;
    width: 100%;
}

.cost-old-val {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8C8C8A;
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
}

.cost-arrow {
    font-size: 1.35rem;
    color: var(--ambar);
    font-weight: 700;
}

.cost-new-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ambar);
    font-family: var(--font-titles);
    font-variant-numeric: tabular-nums;
}

/* Savings Hero (The Star Element) */
.success-saving-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgba(242, 168, 28, 0.05);
    border: 1px dashed rgba(242, 168, 28, 0.35);
    border-radius: var(--border-radius-btn);
    padding: 16px 12px;
    margin: 16px 0 20px 0;
}

.saving-lead-text {
    font-size: 0.9rem;
    color: var(--grafite);
    margin-bottom: 6px;
    font-weight: 500;
}

.saving-value {
    font-size: 2.35rem;
    font-weight: 850;
    color: var(--ambar);
    font-family: var(--font-titles);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.saving-suffix {
    font-size: 0.95rem;
    color: var(--verde-escuro);
    font-weight: 700;
    margin-top: 4px;
}

/* Block Footer */
.success-block-footer {
    color: var(--grafite);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--cinza-borda);
    width: 100%;
}

/* General Note (No Active Plan Fallback) */
.success-general-note {
    color: var(--grafite);
    background-color: rgba(15, 90, 56, 0.04);
    border: 1.5px solid var(--cinza-borda);
    border-radius: var(--border-radius-card);
    padding: 20px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px 0 20px 0;
    text-align: center;
    width: 100%;
}

/* Asterisk note below the block */
.success-asterisk-note {
    font-size: 0.72rem;
    color: rgba(165, 188, 174, 0.65);
    line-height: 1.4;
    text-align: center;
    margin-top: 8px;
    padding: 0 10px;
    width: 100%;
}

@media (max-width: 576px) {
    .modal-card {
        padding: 30px 20px;
    }
    .modal-title-heading {
        font-size: 1.15rem;
    }
}

/* Responsive columns for process cards grid */
@media (max-width: 992px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .process-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* WhatsApp button in form success screen */
.success-whatsapp-container {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-whatsapp-success {
    background-color: #25D366;
    color: #FFFFFF !important;
    border: none;
    border-radius: var(--border-radius-btn);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
}

.btn-whatsapp-success:hover {
    background-color: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-success:active {
    transform: translateY(0) scale(0.98);
}

/* Redução do espaçamento do header para telas médias de desktop para evitar quebras */
@media (min-width: 992px) and (max-width: 1200px) {
    .nav-desktop .nav-list {
        gap: 20px;
    }
    .nav-link {
        font-size: 0.9rem;
    }
    .header-actions {
        gap: 10px;
    }
    .btn-cta-header {
        height: 44px;
        padding: 0 16px;
        font-size: 0.9rem;
    }
}

/* --- SEÇÃO CONCIERGE VIDACOR --- */
.concierge-section {
    padding: 100px 0;
    background-color: #0C2A1E; /* Verde escuro profundo */
    position: relative;
    overflow: hidden;
}

/* Vignette effect */
.concierge-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(5, 14, 10, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Background brand cube */
.concierge-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 750px;
    background-image: url('vidacor-icone-completo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.015; /* Extremamente sutil */
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.concierge-section .container {
    position: relative;
    z-index: 2; /* Acima do vignette e background */
}

.concierge-section .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.concierge-section .kicker {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ambar);
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.concierge-section h2 {
    font-size: 2.5rem;
    color: #FFFFFF; /* Branco para destacar no verde profundo */
    margin-bottom: 16px;
    line-height: 1.25;
}

.concierge-section .section-tagline {
    font-size: 1.05rem;
    color: rgba(165, 188, 174, 0.85); /* Sálvia suave */
    line-height: 1.6;
}

/* Cards Grid */
.concierge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.concierge-card {
    background: rgba(15, 36, 27, 0.35); /* Glassmorphism sutil */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(242, 168, 28, 0.15); /* Filete dourado discreto na borda */
    border-radius: 14px; /* Cantos arredondados ~14px */
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 250ms cubic-bezier(0.25, 1, 0.5, 1),
                border-color 250ms cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 250ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Shimmer animation on hover */
.concierge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.concierge-card:hover::before {
    left: 150%;
    transition: 0.75s ease-out;
}

.concierge-card:hover {
    transform: translateY(-4px); /* Elevação suave no hover */
    border-color: var(--ambar); /* O filete dourado ganha brilho */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 15px rgba(242, 168, 28, 0.1);
}

.concierge-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(242, 168, 28, 0.06); /* Sutil detalhe dourado */
    color: var(--ambar);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.concierge-card-icon svg {
    stroke: var(--ambar);
}

.concierge-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.concierge-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(165, 188, 174, 0.9);
}

/* Faixa de Fechamento */
.concierge-fechamento {
    background: rgba(15, 36, 27, 0.5);
    border: 1px solid rgba(242, 168, 28, 0.2);
    border-radius: var(--border-radius-card);
    padding: 32px 40px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 250ms ease, box-shadow 250ms ease;
}

.concierge-fechamento:hover {
    border-color: var(--ambar);
    box-shadow: 0 8px 28px rgba(242, 168, 28, 0.1);
}

.concierge-fechamento .fechamento-l1 {
    font-size: 1.15rem;
    color: #F0F6F3;
    font-weight: 500;
}

.concierge-fechamento .fechamento-l2 {
    font-size: 1.35rem;
    font-family: var(--font-titles);
    color: var(--ambar);
    font-weight: 800;
    line-height: 1.3;
}

.btn-concierge-cta {
    background-color: var(--ambar);
    color: #0C2A1E;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--border-radius-btn);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(242, 168, 28, 0.25);
    transition: var(--transition-fast);
    margin-top: 8px;
    text-decoration: none;
}

.btn-concierge-cta:hover {
    background-color: var(--ambar-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(242, 168, 28, 0.35);
    color: #0C2A1E !important;
}

.btn-concierge-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Responsividade da Seção */
@media (max-width: 992px) {
    .concierge-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .concierge-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .concierge-section {
        padding: 60px 0;
    }
    .concierge-card {
        padding: 24px;
    }
    .concierge-fechamento {
        padding: 24px;
    }
    .concierge-fechamento .fechamento-l1 {
        font-size: 1rem;
    }
    .concierge-fechamento .fechamento-l2 {
        font-size: 1.15rem;
    }
}

/* --- INSTAGRAM FLOATING & HEADER BUTTONS --- */
.instagram-float-btn {
    position: fixed;
    bottom: 92px; /* 24px + 56px (WhatsApp btn) + 12px gap */
    right: 24px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(214, 36, 159, 0.3);
    z-index: 99;
    transition: var(--transition-fast);
}

.instagram-float-btn:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(214, 36, 159, 0.45);
}

.ig-float-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--verde-escuro);
    color: var(--branco);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.ig-float-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--verde-escuro);
}

.instagram-float-btn:hover .ig-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.btn-instagram-header {
    background-color: transparent;
    color: var(--verde-escuro);
    border: 2px solid var(--verde-escuro);
}

.btn-instagram-header:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #FFFFFF !important;
    border-color: transparent !important;
    transform: translateY(-1px);
}

.btn-whatsapp-header:hover {
    background-color: #25D366 !important;
    color: #FFFFFF !important;
    border-color: #25D366 !important;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .instagram-float-btn {
        width: 48px;
        height: 48px;
        bottom: 72px; /* 16px + 48px (WhatsApp btn) + 8px gap */
        right: 16px;
    }
    .instagram-float-btn svg {
        width: 22px;
        height: 22px;
    }
}
