﻿/* ═══════════════════════════════════════════════════════
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ═══════════════════════════════════════════════════════ */
   
:root {
    --skillcore-primary: #10B981;
    --skillcore-primary-dark: #059669;
    --skillcore-primary-light: #34D399;
    --skillcore-blue: #1e3a8a;
    --skillcore-blue-dark: #0f172a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f4f7fb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.skillcore-logo {
    height: 60px;
    width: auto;
    transition: transform 0.2s;
}

.skillcore-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--skillcore-primary) !important;
}

/* ═══════════════════════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════════════════════ */

.btn-skillcore {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-skillcore:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
    color: white !important;
}

.btn-outline-skillcore {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #10B981;
    color: #059669 !important;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-skillcore:hover {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    border-color: #059669;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero-section {
    background: linear-gradient(135deg, var(--skillcore-blue-dark) 0%, var(--skillcore-blue) 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--skillcore-primary);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.text-skillcore {
    color: var(--skillcore-primary-light);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--skillcore-primary-light);
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

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

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.dashboard-screenshot {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
}

.fc-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.fc-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: -12%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ═══════════════════════════════════════════════════════
   SECCIONES
   ═══════════════════════════════════════════════════════ */
.features-section,
.benefits-section,
.pricing-section,
.demo-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--skillcore-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════════════════ */

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--skillcore-primary);
    z-index: 10;
}

.feature-card.featured {
    border: 2px solid var(--skillcore-primary);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    z-index: 2;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.bg-skillcore-light {
    background: rgba(16, 185, 129, 0.1);
}

.bg-success-light {
    background: rgba(34, 197, 94, 0.1);
}

.bg-warning-light {
    background: rgba(251, 191, 36, 0.1);
}

.bg-info-light {
    background: rgba(59, 130, 246, 0.1);
}

.bg-danger-light {
    background: rgba(239, 68, 68, 0.1);
}

.bg-purple-light {
    background: rgba(168, 85, 247, 0.1);
}

.text-purple {
    color: #a855f7;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
}

.feature-list i {
    color: var(--skillcore-primary);
    margin-right: 10px;
    font-size: 12px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--skillcore-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.features-section {
    padding: 80px 0;
    position: relative;
    background: white;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════════════ */
.benefits-section {
    background: white;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--skillcore-primary) 0%, var(--skillcore-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-muted);
    margin: 0;
}

.benefits-visual img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════ */
.pricing-section {
    background: var(--bg-light);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--skillcore-primary);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, white 100%);
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.plan-header p {
    color: var(--text-muted);
    margin: 0;
}

.plan-price {
    text-align: center;
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    color: var(--text-muted);
    vertical-align: top;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--skillcore-primary);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    margin-right: 12px;
    width: 20px;
}

.plan-features .fa-check {
    color: var(--skillcore-primary);
}

.plan-features .fa-times {
    color: var(--text-light);
}

.plan-features li.disabled {
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════
   DEMO SECTION
   ═══════════════════════════════════════════════════════ */
.demo-tabs .nav-pills {
    background: white;
    padding: 8px;
    border-radius: 12px;
    display: inline-flex;
}

.demo-tabs .nav-link {
    color: var(--text-muted);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.demo-tabs .nav-link:hover {
    background: var(--bg-light);
}

.demo-tabs .nav-link.active {
    background: var(--skillcore-primary);
    color: white;
}

.demo-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 8px;
}

.demo-screenshot {
    border-radius: 12px;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--skillcore-blue-dark) 0%, var(--skillcore-blue) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.btn-light {
    background: white;
    color: var(--skillcore-blue) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 0.875rem 2rem;
    border: none;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-light:hover {
    background: var(--skillcore-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.btn-outline-light {
    border: 3px solid white;
    color: white !important;
    font-weight: 700;
    font-size: 16px;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--skillcore-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: white;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--skillcore-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--skillcore-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   SECCIÓN DE PRECIOS DETALLADOS
   ═══════════════════════════════════════════════════════ */

.pricing-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-detail-card.featured {
    border: 2px solid var(--skillcore-primary);
    position: relative;
}

.pricing-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--skillcore-primary);
    color: white;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.pricing-header {
    padding: 32px 24px;
    color: white;
    text-align: center;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.bg-gradient-purple-alt {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.module-badge {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-text {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-highlight {
    font-size: 24px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 16px;
    border-radius: 8px;
}

.module-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.9;
}

.module-title-large {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.pricing-body {
    padding: 32px 24px;
    flex: 1;
}

.pricing-model-title {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 24px;
    color: #6b7280;
    vertical-align: top;
}

.pricing-amount .value {
    font-size: 48px;
    font-weight: 900;
    color: var(--skillcore-primary);
    line-height: 1;
}

.pricing-unit {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 24px;
}

.pricing-description {
    margin: 24px 0;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #4b5563;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.tier-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.tier-item:hover {
    border-color: var(--skillcore-primary);
    background: white;
}

.tier-icon {
    width: 48px;
    height: 48px;
    background: #1e3a8a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-number {
    font-size: 24px;
    font-weight: 900;
    color: white;
}

.tier-content {
    flex: 1;
}

.tier-label {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.4;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tier-price .currency {
    font-size: 14px;
    color: #6b7280;
}

.tier-price .value {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
}

.tier-price .period {
    font-size: 11px;
    color: #9ca3af;
}

.pricing-tiers-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.tier-plan {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.tier-plan:hover {
    border-color: var(--skillcore-primary);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.tier-plan-header {
    background: #f3f4f6;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    text-align: center;
}

.tier-plan-details {
    padding: 16px;
}

.tier-records {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    text-align: center;
}

.tier-price-large {
    text-align: center;
}

.tier-price-large .currency {
    font-size: 18px;
    color: #6b7280;
}

.tier-price-large .value {
    font-size: 32px;
    font-weight: 900;
    color: var(--skillcore-primary);
}

.pricing-subtitle-small {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-top: 16px;
}

.pricing-features-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.feature-item-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #4b5563;
}

.feature-item-compact i {
    color: var(--skillcore-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 0 24px 24px;
    margin-top: auto;
}

.btn-pricing-detail {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-pricing-detail:hover {
    border-color: var(--skillcore-primary);
    background: var(--skillcore-primary);
    color: white;
}

.btn-pricing-detail.primary {
    background: var(--skillcore-primary);
    border-color: var(--skillcore-primary);
    color: white;
}

.btn-pricing-detail.primary:hover {
    background: var(--skillcore-primary-dark);
    border-color: var(--skillcore-primary-dark);
}

.pricing-note {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--skillcore-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-note-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-note-icon i {
    font-size: 24px;
    color: var(--skillcore-primary);
}

.pricing-note-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.pricing-note-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.pricing-comparison {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead th {
    background: #f9fafb;
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-table thead th:first-child {
    border-top-left-radius: 8px;
}

.comparison-table thead th:last-child {
    border-top-right-radius: 8px;
}

.comparison-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: #111827;
}

.comparison-table .badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge.bg-purple {
    background: #c084fc;
    color: white;
}

.badge.bg-blue {
    background: #60a5fa;
    color: white;
}

.badge.bg-purple-alt {
    background: #a78bfa;
    color: white;
}

/* ═══════════════════════════════════════════════════════
   PÁGINA DE CONTACTO
   ═══════════════════════════════════════════════════════ */

.contact-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #10B981 100%);
    padding: 100px 0 60px;
    color: white;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #10B981;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-control, 
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s;
}

.form-control:focus, 
.form-select:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: #f3f4f6;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.alert-success-custom {
    background: #d1fae5;
    border: 2px solid #10B981;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    display: none;
}

.alert-success-custom i {
    color: #059669;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .pricing-tiers-vertical {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-card {
        margin-top: -40px;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .demo-tabs .nav-pills {
        flex-direction: column;
        width: 100%;
    }
    
    .pricing-details-section {
        padding: 60px 0;
    }
    
    .pricing-amount .value {
        font-size: 36px;
    }
    
    .tier-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tier-icon {
        margin: 0 auto;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-note-icon {
        margin: 0 auto;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ═══════════════════════════════════════════════════════
   PÁGINAS LEGALES (TÉRMINOS Y PRIVACIDAD)
   ═══════════════════════════════════════════════════════ */

.legal-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #10B981 100%);
    padding: 80px 0 40px;
    color: white;
}

.legal-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
}

.legal-nav h6 {
    color: #111827;
    margin-bottom: 16px;
}

.legal-nav a {
    display: block;
    padding: 8px 12px;
    color: #6b7280;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 14px;
    margin-bottom: 4px;
}

.legal-nav a:hover, 
.legal-nav a.active {
    background: #10B981;
    color: white;
}

.legal-section {
    margin-bottom: 48px;
    padding-top: 20px;
}

.legal-section h2 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #10B981;
}

.legal-section h3 {
    color: #374151;
    font-weight: 600;
    margin: 32px 0 16px;
    font-size: 20px;
}

.legal-section p, 
.legal-section li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul, 
.legal-section ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 8px;
}

.highlight-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.highlight-box strong {
    color: #92400e;
}

.highlight-box ul {
    margin-bottom: 0;
    margin-top: 12px;
}

.info-box {
    background: #f0fdf4;
    border-left: 4px solid #10B981;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.info-box strong {
    color: #065f46;
}

.update-date {
    background: #f3f4f6;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    color: #374151;
}

.update-date strong {
    color: #111827;
}

/* Responsive para páginas legales */
@media (max-width: 991px) {
    .legal-content {
        padding: 40px 30px;
    }
    
    .legal-hero {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
}

/* ═══════════════════════════════════════════════════════
   PÁGINA ACERCA DE (ABOUT)
   ═══════════════════════════════════════════════════════ */

.about-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #10B981 100%);
    padding: 120px 0 80px;
    color: white;
}

.stats-section {
    background: white;
    border-radius: 16px;
    padding: 60px;
    margin-top: -60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #10B981;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.story-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.timeline-line {
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content h4 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 22px;
}

.timeline-content .text-muted {
    font-size: 14px;
    margin-bottom: 12px;
    color: #6b7280;
    font-weight: 600;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.7;
}

.value-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.value-card h4 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 20px;
}

.value-card p {
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.6;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.team-section {
    background: #f9fafb;
    padding: 80px 0;
}

.mission-vision {
    background: linear-gradient(135deg, #1e3a8a 0%, #10B981 100%);
    color: white;
    padding: 80px 0;
}

.mission-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.mission-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.mission-box .value-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive para página About */
@media (max-width: 991px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .stats-section {
        padding: 40px 30px;
        margin-top: -40px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .stats-section {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-marker {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .timeline-line {
        left: 16px;
    }
    
    .mission-box {
        padding: 30px 20px;
    }
}
/* ═══════════════════════════════════════════════════════
   FIX PARA BOTÓN CTA
   ═══════════════════════════════════════════════════════ */

.cta-section .btn-light {
    background: white !important;
    color: #1e3a8a !important;
    font-weight: 700;
    font-size: 16px;
    padding: 0.875rem 2rem;
    border: none;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.cta-section .btn-light:hover {
    background: #10B981 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.cta-section .btn-light:active {
    transform: translateY(-1px);
}

.cta-section a.btn-light {
    pointer-events: auto !important;
}

/* ═══════════════════════════════════════════════════════
   FIX DEFINITIVO PARA BOTÓN CTA - MAYOR ESPECIFICIDAD
   ═══════════════════════════════════════════════════════ */

/* Sobrescribir Bootstrap con máxima especificidad */
section.cta-section .cta-buttons a.btn.btn-light.btn-lg {
    background: white !important;
    color: #1e3a8a !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 0.875rem 2rem !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
}

section.cta-section .cta-buttons a.btn.btn-light.btn-lg:hover {
    background: #10B981 !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5) !important;
}

section.cta-section .cta-buttons a.btn.btn-light.btn-lg:active {
    transform: translateY(-1px) !important;
}

/* Forzar que el link funcione */
section.cta-section a {
    pointer-events: auto !important;
}

/* Botón CTA personalizado sin conflictos */
.btn-cta-custom {
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 16px;
    padding: 0.875rem 2rem;
    border: none;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-cta-custom:hover {
    background: #10B981;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.btn-cta-custom:active {
    transform: translateY(-1px);
}

/* Estilos inline para la sección CTA - garantiza que funcionen */
.cta-section-custom {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
 
.cta-section-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}
 
.cta-title-custom {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}
 
.cta-subtitle-custom {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: white;
    position: relative;
    z-index: 1;
}
 
.cta-buttons-custom {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
 
.btn-contacto-custom {
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}
 
.btn-contacto-custom:hover {
    background: #10B981;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
    text-decoration: none;
}
 
.btn-contacto-custom:active {
    transform: translateY(-1px);
}
 
.btn-contacto-custom span {
    display: inline-block;
}
 
@media (max-width: 767px) {
    .cta-title-custom {
        font-size: 32px;
    }
    
    .cta-subtitle-custom {
        font-size: 16px;
    }
    
    .cta-buttons-custom {
        flex-direction: column;
    }
    
    .btn-contacto-custom {
        width: 100%;
        justify-content: center;
    }
}

/* Solo incluyo la sección CTA que falta en tu style.css actual */

/* ═══════════════════════════════════════════════════════
   CTA SECTION - NUEVA VERSIÓN CON ESTILOS COMPLETOS
   AGREGAR AL FINAL DE TU STYLE.CSS ACTUAL
   ═══════════════════════════════════════════════════════ */
.cta-section-custom {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-title-custom {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-subtitle-custom {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-buttons-custom {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-contacto-custom {
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}

.btn-contacto-custom:hover {
    background: #10B981;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
    text-decoration: none;
}

.btn-contacto-custom:active {
    transform: translateY(-1px);
}

.btn-contacto-custom span {
    display: inline-block;
}

/* Responsive para CTA */
@media (max-width: 991px) {
    .cta-title-custom {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .cta-title-custom {
        font-size: 32px;
    }
    
    .cta-subtitle-custom {
        font-size: 16px;
    }
    
    .cta-buttons-custom {
        flex-direction: column;
    }
    
    .btn-contacto-custom {
        width: 100%;
        justify-content: center;
    }
}
/* ═══════════════════════════════════════════════════════
   ESTILOS DE LA CALCULADORA
   ═══════════════════════════════════════════════════════ */
 
.calculator-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
 
.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
 
.calculator-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 40px;
    text-align: center;
}
 
.calculator-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}
 
.calculator-header p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}
 
.calculator-body {
    padding: 40px;
}
 
.calc-input-group {
    margin-bottom: 0;
}
 
.calc-label {
    display: block;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
    font-size: 15px;
}
 
.calc-label i {
    font-size: 18px;
    margin-right: 8px;
}
 
.text-purple {
    color: #a855f7;
}
 
.text-blue {
    color: #3b82f6;
}
 
.text-success {
    color: #10B981;
}
 
.text-warning {
    color: #f59e0b;
}
 
.calc-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    color: #1f2937;
}
 
.calc-input:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
 
.calc-help {
    display: block;
    margin-top: 8px;
    color: #6b7280;
    font-size: 13px;
}
 
.btn-calcular {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
 
.btn-calcular:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}
 
.btn-calcular:active {
    transform: translateY(-1px);
}
 
.calc-result {
    margin-top: 40px;
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e5e7eb;
    animation: slideDown 0.5s ease;
}
 
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.result-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}
 
.result-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}
 
.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
 
.breakdown-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    transition: all 0.3s;
}
 
.breakdown-item:hover {
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}
 
.breakdown-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #374151;
    font-size: 15px;
    flex: 1;
    min-width: 200px;
}
 
.breakdown-label i {
    font-size: 20px;
}
 
.breakdown-detail {
    flex: 1;
    min-width: 150px;
}
 
.detail-text {
    font-size: 13px;
    color: #6b7280;
}
 
.breakdown-value {
    font-size: 24px;
    font-weight: 800;
    color: #10B981;
    min-width: 120px;
    text-align: right;
}
 
.result-total {
    background: linear-gradient(135deg, #1e3a8a 0%, #10B981 100%);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
 
.total-label {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.total-value {
    color: white;
    font-size: 42px;
    font-weight: 900;
}
 
.result-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}
 
.result-footer p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}
 
.result-footer strong {
    color: #10B981;
    font-weight: 700;
}
 
/* Responsive */
@media (max-width: 768px) {
    .calculator-header h3 {
        font-size: 24px;
    }
 
    .calculator-body {
        padding: 24px;
    }
 
    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
    }
 
    .breakdown-value {
        width: 100%;
        text-align: left;
        font-size: 28px;
    }
 
    .result-total {
        flex-direction: column;
        text-align: center;
    }
 
    .total-value {
        font-size: 36px;
    }
}
/* ═══════════════════════════════════════════════════════
   CARRUSEL DE BENEFICIOS - AGREGAR AL FINAL DE STYLE.CSS
   ═══════════════════════════════════════════════════════ */

.benefits-carousel-container {
    position: relative;
    width: 100%;
}

.benefits-carousel {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f9fafb;
}

.carousel-inner-benefits {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide-benefit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide-benefit.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide-benefit.prev {
    transform: translateX(-100%);
}

.benefit-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.benefit-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 32px;
    display: flex;
    align-items: flex-end;
}

.benefit-tag {
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.benefit-tag i {
    font-size: 20px;
}

/* Controles del carrusel */
.carousel-control-benefit {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control-benefit:hover {
    background: #10B981;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.carousel-control-benefit:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-benefit {
    left: 20px;
}

.next-benefit {
    right: 20px;
}

.carousel-control-benefit i {
    font-size: 20px;
    color: inherit;
}

/* Indicadores (dots) */
.carousel-indicators-benefit {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: #10B981;
    border-color: #10B981;
    width: 32px;
    border-radius: 6px;
}

/* Miniaturas (thumbnails) */
.carousel-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #6b7280;
}

.thumbnail-item:hover {
    background: #e5e7eb;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-item.active {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-color: #10B981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.thumbnail-item i {
    font-size: 24px;
}

/* Animaciones */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* ═══════════════════════════════════════════════════════
   BENEFITS VIEWER FULL HEIGHT (SYNC CON BENEFICIOS)
   ═══════════════════════════════════════════════════════ */

.benefits-viewer {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
}

/* Imagen ocupa TODO el espacio disponible */
.benefit-display {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}

/* Imagen se adapta al alto dinámico */
.benefit-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Selector abajo fijo */
.benefit-selector {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.benefit-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    background: #f3f4f6;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.benefit-option i {
    font-size: 12px;
    color: var(--skillcore-primary);
}

.benefit-option:hover {
    background: var(--skillcore-primary);
    color: white;
}

.benefit-option:hover i {
    color: white;
}

.benefit-option.active {
    background: var(--skillcore-primary);
    color: white;
}

.benefit-option.active i {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .benefit-main-image {
        height: 250px;
    }
}
/* Sello de Firma Electrónica Avanzada */
.feature-card img[alt*="Firma Electrónica"] {
    max-width: 280px;
    height: auto;
    margin-top: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card img[alt*="Firma Electrónica"]:hover {
    transform: scale(1.05);
}