:root {
    --bg-dark: #FFFFFF;
    /* Fondo Blanco para el cuerpo general segun pedido de Navbar, aunque el usuario pidio 'Resto de la pagina' layout especifico, el header es blanco. Revisar si quiere dark mode o light mode general. El pedido dice 'Fondo: Blanco #FFFFFF con una sombra suave' para el Navbar. Y 'Sección Héroe... Invertido'. Asumiré un tema claro base con toques violetas por la descripción. */
    --primary: #7A68BB;
    --primary-glow: #9D8CD6;
    --secondary: #4A3B7E;
    --text-main: #000000;
    /* Texto #000000 */
    --text-muted: #64748B;
    /* Se mantiene para contraste suave o usar #DADADA si es fondo oscuro, pero para texto sobre blanco #64748B es legible. El usuario pidió #DADADA para detalles. */
    --details: #DADADA;
    --glass-bg: rgba(255, 255, 255, 0.95);
    /* Más sólido */
    --nav-height: 80px;
    --top-bar-height: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
    /* Mulish global */
    scroll-behavior: smooth;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    /* Bold */
    font-family: 'Mulish', sans-serif;
}

body {
    background-color: #FFFFFF;
    /* Fondo #FFFFFF */
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 140px;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--top-bar-height);
    background-color: var(--primary);
    color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons i {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: 0.2s;
    color: white;
}

.social-icons i:hover {
    opacity: 0.8;
}


/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown-content a.btn-action:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Nav */
.glass-nav {
    position: fixed;
    top: var(--top-bar-height);
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    /* Navbar restaurado a space-between */
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    z-index: 999;
    gap: 20px;
    /* Espacio entre logo y links */
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    padding: 10px 0;
    color: var(--primary);
    /* Asegurar color */
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Login Button */
.btn-login-outline {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-login-outline:hover {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(122, 104, 187, 0.4);
}

.btn-patient {
    padding: 10px 24px;
    background: #f5f3ff !important;
    border-radius: 50px;
    color: #7A68BB !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-patient:hover {
    background: #ede9fe !important;
    color: #7A68BB !important;
    box-shadow: 0 4px 15px rgba(122, 104, 187, 0.15) !important;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: row;
    /* Imagen Izquierda, Texto Derecha */
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

.hero-content {
    max-width: 520px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Texto alineado a la izquierda del bloque */
    text-align: left;
}

/* Typography Overrides Final */
h1 {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
}


.gradient-text {
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--glass-bg);
}

.stats-container {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.stat-desc {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Hero Visual & Abstract Elements */
.hero-visual {
    position: relative;
    width: 560px;
    height: 500px;
    padding-left: 60px;
    /* Espacio para que la tablet no quede cortada */
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    right: 10%;
    width: 260px;
    z-index: 2;
}

.float-2 {
    bottom: 20%;
    left: 0;
    width: 240px;
    animation-delay: 2s;
    z-index: 3;
}

.float-3 {
    top: 50%;
    right: 0;
    width: 220px;
    animation-delay: 1.5s;
    z-index: 4;
}

.float-4 {
    top: 5%;
    left: -5%;
    width: 200px;
    animation-delay: 3s;
    z-index: 5;
}

/* Devices Mockup High Fidelity */
.devices-container {
    position: relative;
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    /* Ensure visibility against white background */
}

/* Laptop */
.laptop-mockup {
    position: relative;
    width: 500px;
    height: 300px;
    z-index: 10;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.laptop-frame {
    width: 460px;
    height: 290px;
    background: #e5e7eb;
    /* Silver/Light Gray Mockup */
    border-radius: 12px 12px 0 0;
    padding: 12px 12px 0 12px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #d1d5db;
    background: linear-gradient(to bottom, #f3f4f6 0%, #d1d5db 100%);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #1e293b;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: relative;
    border: 1px solid #111;
}

.laptop-screen .screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.laptop-base {
    width: 500px;
    height: 18px;
    background: #e5e7eb;
    border-radius: 0 0 16px 16px;
    position: relative;
    background: linear-gradient(to bottom, #e5e7eb 0%, #9ca3af 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 6px;
    background: #64748b;
    border-radius: 0 0 6px 6px;
    opacity: 0.5;
}

/* Tablet */
.tablet-mockup {
    position: absolute;
    bottom: -10px;
    left: -10px;
    /* Dentro del contenedor, no cortada */
    right: auto;
    width: 130px;
    height: 190px;
    z-index: 20;
    transform: rotate(5deg);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.tablet-frame {
    width: 100%;
    height: 100%;
    background: #1e293b;
    /* Dark bezel */
    border-radius: 10px;
    padding: 6px;
    border: 2px solid #334155;
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.tablet-screen .screen-img {
    display: none;
}

/* Simulated Dashboard UI */
/* Simulated Dashboard UI */
.ui-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    padding: 0;
    display: flex;
    overflow: hidden;
    z-index: 1;
}

.ui-sidebar {
    width: 50px;
    background: white;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    gap: 12px;
}

.ui-icon-circle {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 6px;
    margin-bottom: 10px;
}

.ui-nav-line {
    width: 20px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.ui-nav-line.w-80 {
    width: 16px;
}

.ui-nav-line.w-60 {
    width: 12px;
}

.ui-main {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ui-header {
    width: 100%;
    height: 30px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.ui-title-line {
    width: 100px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}

.ui-avatar {
    width: 20px;
    height: 20px;
    background: #cbd5e1;
    border-radius: 50%;
}

.ui-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-template-rows: auto auto;
    gap: 12px;
    height: 100%;
}

.ui-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.ui-card.small {
    grid-column: span 1;
    height: 60px;
}

.ui-card-header {
    width: 70%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 5px;
}

.ui-card-header.w-50 {
    width: 50%;
}

.ui-graph-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: auto;
    padding-bottom: 5px;
}

.ui-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
    opacity: 0.8;
}

.h-40 {
    height: 40%;
}

.h-70 {
    height: 70%;
    background: var(--secondary);
}

.h-50 {
    height: 50%;
}

.h-80 {
    height: 80%;
}

.h-60 {
    height: 60%;
}

.ui-list-item {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
}

/* Mobile UI Specifics */
.ui-dashboard.mobile {
    flex-direction: column;
    padding: 8px;
}

.ui-dashboard.mobile .ui-header {
    height: 20px;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.ui-dashboard.mobile .ui-avatar.small {
    width: 14px;
    height: 14px;
}

.ui-grid.mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-grid.mobile .ui-card {
    height: 40px;
    padding: 5px;
}

.ui-graph-wave {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-glow) 100%);
    opacity: 0.2;
    border-radius: 4px;
}

/* Glare Effect */
.screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Modality & Pricing */
.modality-section {
    padding: 80px 20px;
    background: #F8FAFC;
    text-align: center;
}

.modality-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
}

.modality-tabs {
    display: inline-flex;
    background: #E2E8F0;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.link-demo {
    display: block;
    margin-top: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Pricing */
.pricing-container {
    max-width: 1000px;
    margin: 50px auto 0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    font-weight: 600;
    color: var(--text-main);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.badge-save {
    background: #DCFCE7;
    color: #166534;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    text-align: left;
    transition: 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    border: 2px solid var(--primary);
    background: #FDFBFF;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.price-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.feature-list li i {
    color: #10B981;
    width: 18px;
    height: 18px;
}

.feature-list li.muted {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.feature-list li.muted i {
    color: #CBD5E1;
}

.prepayment-badge {
    display: inline-block;
    background: #DCFCE7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 5px;
}

.free-trial-banner {
    background: linear-gradient(135deg, #7A68BB 0%, #4A3B7E 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.policy-footer strong {
    color: var(--text-main);
}

.price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-card-outline,
.btn-card-primary {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-card-outline {
    border: 2px solid #E2E8F0;
    color: var(--text-main);
}

.btn-card-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-card-primary {
    background: var(--primary);
    color: white;
}

.btn-card-primary:hover {
    background: var(--secondary);
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.accordion-item {
    border-bottom: 1px solid #E2E8F0;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* Programs */
.programs-section {
    padding: 80px 20px;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.program-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.program-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.program-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}

.referral-banner {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 60px 80px 30px 80px;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #475569;
    font-size: 13px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .glass-nav {
        padding: 20px;
    }

    .hero {
        flex-direction: column;
        padding: 120px 30px 60px 30px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats-container {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        height: 400px;
    }

    .benefit-container {
        flex-direction: column;
        text-align: center;
    }

    .check-list li {
        justify-content: center;
    }

    h1 {
        font-size: 42px;
    }
}

/* Extras Section Styles */
.extras-section {
    padding: 100px 20px;
    background: #F8FAFC;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
}

.extra-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.extra-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(122, 104, 187, 0.1);
}

.extra-card h4 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.extra-card .price {
    font-size: 24px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.extra-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.extra-card .cta {
    margin-top: auto;
}

.storage-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.storage-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.storage-option:hover {
    border-color: var(--primary);
}

.storage-option input {
    margin-right: 10px;
}

.storage-option.active {
    border-color: var(--primary);
    background: #FDFBFF;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #E2E8F0;
}

.section-title-group {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title-group h2 {
    font-size: 36px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-title-group p {
    font-size: 18px;
    color: var(--text-muted);
}

/* =========================================
   PROGRAMAS SPLIT-LAYOUT
========================================= */

.split-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .split-layout-grid {
        grid-template-columns: 1fr;
    }
}

.split-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(122, 104, 187, 0.15);
    border-top: 6px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(122, 104, 187, 0.15);
    border-color: var(--primary);
}

.split-header {
    margin-bottom: 20px;
}

.split-header h3 {
    font-size: 26px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.pioneros-split .split-header h3 {
    color: var(--primary);
}

.split-prop {
    font-size: 16px;
    font-weight: 700;
    color: #4A5568;
    font-style: italic;
}

.split-concept {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.split-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.split-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.split-benefit-item .lucide {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.split-benefit-item strong {
    display: block;
    color: var(--text-main);
    font-size: 16px;
    margin-bottom: 2px;
}

.split-benefit-item span {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.4;
}

.split-lead-form {
    margin-top: auto;
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed #CBD5E1;
}

.split-lead-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-lead-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: 0.2s;
}

.split-lead-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 104, 187, 0.1);
}

.split-lead-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.split-lead-form button:hover {
    background: #5A489B;
    transform: translateY(-1px);
}

.split-code-generator {
    margin-top: auto;
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    border: 1px dashed #CBD5E1;
}

.split-code-generator label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.code-box input {
    background: white;
    border: 2px dashed var(--primary);
    color: var(--primary);
    padding: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 8px;
    outline: none;
    width: 100%;
}

.code-box button {
    background: var(--text-main);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.code-box button:hover {
    background: #2D3748;
}

.feedback-msg {
    margin-top: 10px;
    font-size: 13px;
    color: #4ADE80;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}