/* ========================================
   INDEX - ESTILOS GENERALES (Tema SIGU)
   ======================================== */

:root {
    /* Tokens de SIGU Core - Paleta principal */
    --primary: #5E548E;
    --primary-mid: #7c5ba3;
    --primary-light: #f3f0ff;
    --primary-xlight: #faf8ff;
    --primary-dark: #4a4270;
    
    /* Colores complementarios */
    --success: #2a9e6a;
    --success-bg: #e8f5f0;
    --warning: #d97706;
    --warning-bg: #fef3c7;
    --danger: #d64545;
    --danger-bg: #fef2f2;
    --info: #0891b2;
    --info-bg: #ecf8fb;
    
    /* Grises y texto */
    --text: #1f2937;
    --text-2: #6b7280;
    --text-3: #9ca3af;
    --bg: #f9fafb;
    --border: #e5e7eb;
    --border-md: #d1d5db;
    
    /* Sombras */
    --sh-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --sh-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --sh-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --sh-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Radios */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 16px;
    
    /* Legacy Bootstrap compat */
    --primary-color: #5E548E;
    --secondary-color: #6b7280;
    --success-color: #2a9e6a;
    --warning-color: #d97706;
    --info-color: #0891b2;
    --dark-color: #1f2937;
}

body {
    font-family: 'Public Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    color: var(--text);
    background: #ffffff;
}

/* ========================================
   NAVBAR (Mejorado con SIGU tokens)
   ======================================== */
.navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: var(--sh-sm);
}

.navbar.scrolled {
    box-shadow: var(--sh-md);
    background: #ffffff;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    transform: scale(1.03);
    color: var(--primary-dark) !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-2) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
    width: calc(100% - 1rem);
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 8px 16px rgba(94, 84, 142, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR INDEX BRAND (Específico solo para index.blade.php)
   NO afecta otras vistas
   ======================================== */

/* Contenedor del brand */
.navbar-index-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo imagen */
.navbar-index-logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-index-brand:hover .navbar-index-logo-img {
    transform: scale(1.08) rotate(-2deg);
}

/* Contenedor del texto (siglas + significado) */
.navbar-index-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.1;
}

/* Siglas SIGU */
.navbar-index-logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.navbar-index-brand:hover .navbar-index-logo-title {
    color: var(--primary-dark);
}

/* Significado debajo de siglas */
.navbar-index-logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-2);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-index-brand:hover .navbar-index-logo-subtitle {
    color: var(--text);
}

/* RESPONSIVE - Navbar Index Brand */
@media (max-width: 992px) {
    .navbar-index-brand {
        margin-right: 1rem;
    }
    
    .navbar-index-logo-img {
        width: 55px;
        height: 55px;
    }
    
    .navbar-index-logo-title {
        font-size: 1.1rem;
    }
    
    .navbar-index-logo-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .navbar-index-brand {
        gap: 0.75rem;
    }
    
    .navbar-index-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .navbar-index-logo-title {
        font-size: 1rem;
    }
    
    .navbar-index-logo-subtitle {
        font-size: 0.6rem;
    }
}

/* ========================================
   HERO SECTION (Rediseño: Info relevante + Centrado)
   ======================================== */
.hero-section {
    padding: 120px 0;
    background-color: #fafbf8;
    background-image: 
        /* Overlay gradiente suavizador - NEGRO */
        linear-gradient(to right, 
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.70) 40%,
            rgba(0, 0, 0, 0.40) 70%,
            rgba(0, 0, 0, 0.20) 100%
        ),
        /* Imagen de fondo */
        url('/imagenes/hero.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo de fondo */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--info-bg) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

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

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

.hero-section .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: stretch !important;
    width: 100% !important;
}

.hero-section .col-lg-6 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: auto !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.hero-section .col-lg-6:first-child {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .col-lg-6:last-child {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.hero-section .badge {
    background: rgba(167, 139, 250, 0.2) !important;
    color: #e9d5ff !important;
    border: 1px solid rgba(167, 139, 250, 0.5);
    font-weight: 600;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
    display: inline-block;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-section .badge i {
    color: #e9d5ff;
    margin-right: 0.5rem;
}

/* Títulos y textos */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -1px;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title .text-primary {
    background: linear-gradient(135deg, #a78bfa 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-text {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 550px;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* STATS SECTION */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-stat:hover {
    background: white;
    box-shadow: 0 8px 16px rgba(94, 84, 142, 0.1);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 500;
}

/* CTA BUTTONS */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-cta .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--r-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.hero-cta .btn-primary {
    background: var(--primary) !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 12px rgba(94, 84, 142, 0.2);
}

.hero-cta .btn-primary:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 8px 20px rgba(94, 84, 142, 0.3);
    transform: translateY(-2px);
}

.hero-cta .btn-link {
    color: var(--primary) !important;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0 !important;
    font-weight: 600;
    position: relative;
}

.hero-cta .btn-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.hero-cta .btn-link:hover::after {
    width: 100%;
}

.hero-cta .btn-link i {
    transition: transform 0.3s ease;
}

.hero-cta .btn-link:hover i {
    transform: translateX(4px);
}

/* HERO CARD VISUAL (LADO DERECHO) */
.hero-card-visual {
    background: white !important;
    border-radius: var(--r-lg) !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 30px rgba(94, 84, 142, 0.12) !important;
    border: 1px solid var(--border) !important;
    position: relative !important;
    overflow: hidden !important;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.hero-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-card-visual:hover {
    box-shadow: 0 15px 40px rgba(94, 84, 142, 0.15) !important;
    transform: translateY(-4px);
    border-color: var(--primary-light) !important;
    transition: all 0.3s ease;
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-xlight));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hero-card-content p {
    color: var(--text-2);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* FEATURES LIST */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-features li {
    color: var(--text-2);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.hero-features li:hover {
    color: var(--primary);
}

.hero-features i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .hero-section .row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-card-visual {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        background-image: 
            /* Overlay más fuerte en móvil - NEGRO */
            linear-gradient(to right, 
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.90) 50%,
                rgba(0, 0, 0, 0.50) 100%
            ),
            url('/imagenes/hero.jpg');
        background-attachment: scroll;
    }

    .hero-section .row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .hero-card-visual {
        padding: 2rem !important;
        margin-top: 1rem;
        min-height: 200px;
    }

    .hero-section::before {
        width: 400px;
        height: 400px;
        right: -20%;
    }

    .hero-section::after {
        width: 250px;
        height: 250px;
        left: -10%;
    }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-xlight) 100%);
    position: relative;
}

/* BENEFIT CARDS (Mejorado con SIGU tokens) */
.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animación escalonada para las tarjetas */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* Acento vertical izquierdo */
.benefit-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(94, 84, 142, 0.15);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-xlight) 100%);
}

.benefit-card:hover::before {
    opacity: 1;
}

/* BENEFIT ICON (Nuevo contenedor mejorado) */
.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-xlight) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(94, 84, 142, 0.1);
}

/* Variantes de color para iconos */
.benefit-icon-success {
    background: linear-gradient(135deg, #d1f5e8 0%, #e8f9f5 100%) !important;
    color: #2a9e6a !important;
}

.benefit-icon-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%) !important;
    color: #d97706 !important;
}

.benefit-icon-info {
    background: linear-gradient(135deg, #cffafe 0%, #ecf9ff 100%) !important;
    color: #0891b2 !important;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(94, 84, 142, 0.2);
}

.benefit-icon i {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.benefit-card:hover h5 {
    color: var(--primary);
}

.benefit-card p {
    color: var(--text-2);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}


/* ========================================
   PLANES SECTION (SIN CAMBIOS - por solicitud)
   ======================================== */
.planes-section {
    background: #fafafa;
    position: relative;
}

/* Plan Card */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Plan Destacado (Más vendido) */
.plan-destacado {
    border: 3px solid #5548d9;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(85, 72, 217, 0.2);
}

.plan-destacado:hover {
    transform: scale(1.07) translateY(-10px);
    box-shadow: 0 20px 50px rgba(85, 72, 217, 0.3);
}

/* Badge "Más vendido" */
.plan-badge-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #5548d9;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(85, 72, 217, 0.3);
}

/* Badge de descuento */
.plan-discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4ff00;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(212, 255, 0, 0.3);
}

.plan-destacado .plan-discount-badge {
    top: 60px;
}

/* Plan Card Body */
.plan-card-body {
    position: relative;
    z-index: 5;
}

/* Plan Header */
.plan-header {
    padding-top: 1rem;
}

.plan-destacado .plan-header {
    padding-top: 3rem;
}

.plan-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Plan Pricing */
.plan-pricing {
    text-align: left;
}

.plan-price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.plan-price-current {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.plan-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.plan-price-period {
    font-size: 1rem;
    color: #666;
}

.plan-bonus {
    font-size: 0.95rem;
}

/* Botón de plan */
.plan-card .btn {
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plan-card .btn-dark {
    background: #1a1a1a;
    border: none;
}

.plan-card .btn-dark:hover {
    background: #000;
    transform: scale(1.05);
}

.plan-card .btn-outline-dark {
    border: 2px solid #e5e7eb;
}

.plan-card .btn-outline-dark:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Nota de oferta */
.plan-offer-note {
    font-weight: 600;
    color: #666;
}

/* Features */
.plan-features {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.plan-feature-item {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.plan-feature-item i {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.plan-feature-item span {
    flex: 1;
}

/* Footer info */
.plan-footer-info {
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ========================================
   CÓMO EMPEZAR SECTION
   ======================================== */
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

/* ========================================
   FOOTER - Diseño profesional y serio
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f3f4f6;
    padding: 0;
    border-top: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo de fondo sutil */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

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

/* FOOTER BRAND SECTION */
.footer-brand h5 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem !important;
}

.footer-brand h5 i {
    color: var(--primary);
}

.footer-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(94, 84, 142, 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(94, 84, 142, 0.3);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(94, 84, 142, 0.3);
}

/* FOOTER SECTIONS */
.footer-section {
    height: 100%;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f3f4f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

/* FOOTER LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    color: var(--primary);
    opacity: 0;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    opacity: 1;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item small {
    display: block;
    color: #9ca3af;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.2rem;
}

.contact-item a {
    color: #f3f4f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item span {
    color: #d1d5db;
}

/* FOOTER DIVIDER */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(94, 84, 142, 0.3) 50%, 
        transparent 100%
    );
    margin: 2rem 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(94, 84, 142, 0.2);
}

.copyright-text {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-title::after {
        width: 20px;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .copyright-text {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .plan-destacado {
        transform: scale(1.02);
    }

    .plan-destacado:hover {
        transform: scale(1.04) translateY(-10px);
    }
}

@media (max-width: 992px) {
    .plan-card {
        margin-bottom: 1.5rem;
    }

    .plan-destacado {
        transform: none;
    }

    .plan-destacado:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .plan-price-amount {
        font-size: 2rem;
    }

    .planes-section h2 {
        font-size: 2rem;
    }
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card {
    animation: fadeInUp 0.6s ease-out;
}

.plan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.plan-card:nth-child(3) {
    animation-delay: 0.3s;
}

.plan-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ========================================
   UTILIDADES
   ======================================== */
.bg-opacity-10 {
    opacity: 0.1;
    background-color: currentColor;
}

.text-decoration-none {
    text-decoration: none !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Modal de Contacto */
.modal-header {
    background: linear-gradient(135deg, #DADDE1 0%, #764ba2 100%);
    border: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.contact-card-container {
    padding: 20px;
}

.contact-card {
    background: linear-gradient(135deg, #5E548E 0%, #2F2F3A 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-right: 20px;
    border: 3px solid white;
}

.contact-card-info h5 {
    margin: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.contact-card-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-card-body {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-value {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2px;
}

.contact-item-value a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item-value a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.company-contact-card {
    background: linear-gradient(135deg, #4A4E69 0%, #2F2F3A 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    text-align: center;
}

.company-contact-card h4 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.company-contact-card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.company-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.company-contact-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.company-contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.company-contact-info-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.company-contact-info-item label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.company-contact-info-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.company-contact-info-item a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
    }

    .contact-card-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-card-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .company-contact-info {
        grid-template-columns: 1fr;
    }
}

.modal-dialog {
    max-width: 600px;
}

.modal-title {
    font-weight: bold;
    font-size: 1.3rem;
}

.divider-text {
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-weight: 600;
    position: relative;
}

.divider-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #ddd;
}

.divider-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #ddd;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.action-buttons a,
.action-buttons button {
    flex: 1;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-message {
    background: #667eea;
    color: white;
}

.btn-message:hover {
    background: #5568d3;
    color: white;
    text-decoration: none;
}

.btn-call {
    background: #764ba2;
    color: white;
}

.btn-call:hover {
    background: #62368b;
    color: white;
    text-decoration: none;
}