        /* ============================================================ */
        /* PALETA DE COLORES - AZUL MARINO + VERDE SALUD + DORADO */
        /* ============================================================ */
        :root {
            --primary: #0a2a4a;
            --primary-dark: #051a2e;
            --primary-light: #1a4a7a;
            --secondary: #0d7a5f;
            --secondary-light: #14a87f;
            --accent: #d4a017;
            --accent-light: #f0c84d;
            --bg-gradient: linear-gradient(135deg, #0a2a4a 0%, #0d7a5f 100%);
            --bg-light: #f0f6f8;
            --bg-white: #ffffff;
            --text-dark: #0a1a2a;
            --text-muted: #4a5a6a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
            --shadow-accent: 0 8px 28px rgba(212, 160, 23, 0.35);
            --radius: 20px;
            --radius-sm: 12px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================================ */
        /* GLASS MORPHISM UTILITY */
        /* ============================================================ */
        .glass {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        /* ============================================================ */
        /* BUTTONS */
        /* ============================================================ */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            color: white;
            border: none;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 8px 28px rgba(13, 122, 95, 0.35);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 48px rgba(13, 122, 95, 0.45);
            color: white;
        }

        .btn-accent-custom {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary-dark);
            border: none;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: var(--shadow-accent);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
        .btn-accent-custom:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 48px rgba(212, 160, 23, 0.5);
            color: var(--primary-dark);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-outline-white:hover {
            border-color: var(--accent);
            background: rgba(212, 160, 23, 0.1);
            color: white;
        }

        .btn-success-custom {
            background: #25D366;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            transition: var(--transition);
            border: none;
        }
        .btn-success-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
            color: white;
        }

        /* ============================================================ */
        /* HEADER / NAVBAR */
        /* ============================================================ */
        .navbar-custom {
            background: rgba(5, 26, 46, 0.95);
            backdrop-filter: blur(12px);
            padding: 10px 0;
            border-bottom: 3px solid var(--accent);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        .navbar-custom .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            padding: 8px 16px;
            letter-spacing: 0.3px;
        }
        .navbar-custom .nav-link:hover {
            color: var(--accent-light) !important;
        }
        .navbar-custom .btn-accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary-dark);
            font-weight: 700;
            border-radius: 50px;
            padding: 8px 28px;
            transition: var(--transition);
            border: none;
            text-decoration: none;
            box-shadow: var(--shadow-accent);
        }
        .navbar-custom .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(212, 160, 23, 0.5);
        }

        /* ============================================================ */
        /* HERO - IMPACTO VISUAL */
        /* ============================================================ */
        .hero-ese {
            background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
            border-bottom: 5px solid var(--accent);
        }
        .hero-ese::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(13, 122, 95, 0.15), transparent 70%);
            pointer-events: none;
        }
        .hero-ese::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.06), transparent 70%);
            pointer-events: none;
        }
        .hero-ese .content {
            position: relative;
            z-index: 2;
        }
        .hero-ese .badge-top {
            display: inline-block;
            background: rgba(13, 122, 95, 0.25);
            border: 1px solid rgba(13, 122, 95, 0.4);
            color: var(--accent-light);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 6px 22px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .hero-ese h1 {
            font-size: 3.6rem;
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }
        .hero-ese h1 .highlight {
            color: var(--accent-light);
            position: relative;
        }
        .hero-ese h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--accent);
            opacity: 0.35;
            border-radius: 4px;
        }
        .hero-ese .subtitle {
            font-size: 1.2rem;
            opacity: 0.85;
            max-width: 680px;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        .hero-ese .subtitle strong {
            color: var(--accent-light);
        }
        .hero-ese .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 30px;
        }
        .hero-ese .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .hero-ese .meta-info i {
            color: var(--accent-light);
            margin-right: 6px;
        }

        /* Hero Stats */
        .hero-stats-ese {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero-stats-ese .stat {
            text-align: left;
        }
        .hero-stats-ese .stat .number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-light);
            display: block;
        }
        .hero-stats-ese .stat .label {
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* Hero Card Lateral */
        .hero-card-ese {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        .hero-card-ese h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .hero-card-ese p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
        }
        .hero-card-ese ul {
            list-style: none;
            padding: 0;
        }
        .hero-card-ese ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-card-ese ul li:last-child {
            border-bottom: none;
        }
        .hero-card-ese ul li i {
            color: var(--accent-light);
            font-size: 1.1rem;
        }
        .hero-card-ese .cert-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 122, 95, 0.2);
            border: 1px solid rgba(13, 122, 95, 0.3);
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-light);
            margin-top: 12px;
        }

        /* ============================================================ */
        /* SECTION TITLES */
        /* ============================================================ */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(13, 122, 95, 0.08);
            color: var(--secondary);
            font-size: 0.78rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 12px;
            border: 1px solid rgba(13, 122, 95, 0.15);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title-xl {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            color: var(--primary-dark);
        }
        .section-title-xl .highlight {
            color: var(--secondary);
        }
        .section-title-xl .gold {
            color: var(--accent-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 680px;
            margin-bottom: 32px;
        }

        .section-divider-custom {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 4px;
            margin: 6px 0 20px;
        }
        .section-divider-center {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 4px;
            margin: 6px auto 20px;
        }

        /* ============================================================ */
        /* SEDES CARDS - DISEÑO DIFERENTE */
        /* ============================================================ */
        .sede-card-ese {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 28px 30px;
            border: 1px solid #eef2f6;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .sede-card-ese::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            opacity: 0;
            transition: var(--transition);
        }
        .sede-card-ese:hover::before {
            opacity: 1;
        }
        .sede-card-ese:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }
        .sede-card-ese .icon-city {
            font-size: 3rem;
            margin-bottom: 12px;
        }
        .sede-card-ese .city {
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--primary-dark);
        }
        .sede-card-ese .date {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1rem;
        }
        .sede-card-ese .hotel {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ============================================================ */
        /* RAZONES - TARJETAS CON NÚMEROS */
        /* ============================================================ */
        .razon-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 28px 26px;
            border: 1px solid #eef2f6;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            position: relative;
            padding-left: 60px;
        }
        .razon-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }
        .razon-card .num {
            position: absolute;
            left: 16px;
            top: 28px;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--secondary);
            opacity: 0.2;
            line-height: 1;
        }
        .razon-card h5 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
        }
        .razon-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin: 0;
        }

        /* ============================================================ */
        /* MÓDULOS - ACORDEÓN VISUAL MEJORADO */
        /* ============================================================ */
        .modulo-ese {
            background: var(--bg-white);
            border-radius: var(--radius-sm);
            padding: 22px 26px;
            border: 1px solid #eef2f6;
            border-left: 5px solid var(--secondary);
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow);
        }
        .modulo-ese:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .modulo-ese .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: -4px;
        }
        .modulo-ese h5 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }
        .modulo-ese ul {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 2.1;
        }
        .modulo-ese ul li::before {
            content: "▸ ";
            color: var(--secondary);
            font-weight: 700;
        }
        .modulo-ese .tag {
            display: inline-block;
            background: rgba(13, 122, 95, 0.08);
            color: var(--secondary);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 14px;
            border-radius: 30px;
            margin-top: 10px;
            letter-spacing: 0.3px;
        }

        /* ============================================================ */
        /* BENEFICIOS - GRID CON ICONOS */
        /* ============================================================ */
        .benefit-ese {
            background: var(--bg-white);
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            border: 1px solid #eef2f6;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow);
        }
        .benefit-ese:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }
        .benefit-ese .icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            display: block;
        }
        .benefit-ese h6 {
            font-weight: 700;
            font-size: 0.95rem;
            margin: 0;
            color: var(--primary-dark);
        }

        /* ============================================================ */
        /* PLANES - TARJETAS DESTACADAS */
        /* ============================================================ */
        .plan-ese {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 32px 30px;
            border: 2px solid #eef2f6;
            transition: var(--transition);
            height: 100%;
            position: relative;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .plan-ese:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-hover);
        }
        .plan-ese.popular {
            border-color: var(--secondary);
            background: linear-gradient(135deg, #f0f8f6, #e8f4f0);
        }
        .plan-ese .badge-popular {
            position: absolute;
            top: -1px;
            right: 24px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 0 0 12px 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .plan-ese .icon-plan {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .plan-ese h4 {
            font-weight: 800;
            font-size: 1.4rem;
        }
        .plan-ese .price {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-dark);
            margin: 8px 0 4px;
        }
        .plan-ese .price small {
            font-weight: 400;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .plan-ese ul {
            list-style: none;
            padding: 0;
            font-size: 0.92rem;
            line-height: 2.4;
            color: var(--text-muted);
            text-align: left;
            margin: 16px 0;
        }
        .plan-ese ul li i {
            color: var(--secondary);
            margin-right: 10px;
        }
        .plan-ese .btn-plan {
            background: var(--primary-dark);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            border: none;
        }
        .plan-ese .btn-plan:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(13, 122, 95, 0.35);
        }
        .plan-ese .btn-plan.gold {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        }
        .plan-ese .btn-plan.gold:hover {
            box-shadow: 0 8px 32px rgba(13, 122, 95, 0.5);
        }

        /* ============================================================ */
        /* TABLA DE PRECIOS */
        /* ============================================================ */
        .table-ese {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid #eef2f6;
        }
        .table-ese thead {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
            color: white;
        }
        .table-ese thead th {
            font-weight: 700;
            padding: 16px 20px;
            border: none;
            font-size: 0.95rem;
        }
        .table-ese tbody td {
            padding: 14px 20px;
            border-bottom: 1px solid #eef2f6;
            vertical-align: middle;
        }
        .table-ese tbody tr:hover {
            background: rgba(13, 122, 95, 0.03);
        }
        .table-ese .price-tag {
            display: inline-block;
            background: rgba(13, 122, 95, 0.08);
            color: var(--secondary);
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
        }
        .table-ese .price-tag.gold {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            color: white;
        }

        /* ============================================================ */
        /* FORMULARIO - ESTILO DIFERENTE */
        /* ============================================================ */
        .form-ese {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 48px 40px;
            box-shadow: var(--shadow-hover);
            border: 1px solid #eef2f6;
        }
        .form-ese .form-control {
            border-radius: var(--radius-sm);
            border: 2px solid #eef2f6;
            padding: 14px 18px;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .form-ese .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(13, 122, 95, 0.1);
        }
        .form-ese .form-label {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.9rem;
        }
        .form-ese .btn-submit {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            color: white;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
            box-shadow: 0 8px 28px rgba(13, 122, 95, 0.3);
        }
        .form-ese .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(13, 122, 95, 0.45);
        }

        /* ============================================================ */
        /* CTA FINAL - BANNER DESTACADO */
        /* ============================================================ */
        .cta-ese {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
            color: white;
            padding: 80px 0;
            text-align: center;
            border-top: 5px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        .cta-ese::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
        }
        .cta-ese .content {
            position: relative;
            z-index: 2;
        }
        .cta-ese h2 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.1;
            max-width: 800px;
            margin: 0 auto 16px;
        }
        .cta-ese h2 .highlight {
            color: var(--accent-light);
        }
        .cta-ese p {
            opacity: 0.8;
            max-width: 640px;
            margin: 0 auto 32px;
            font-size: 1.1rem;
        }
        .cta-ese .btn-cta-giant {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--primary-dark);
            padding: 18px 56px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.15rem;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
            box-shadow: var(--shadow-accent);
            border: none;
        }
        .cta-ese .btn-cta-giant:hover {
            transform: scale(1.03);
            box-shadow: 0 16px 56px rgba(212, 160, 23, 0.5);
        }
        .cta-ese .meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 36px;
            margin-top: 30px;
            font-size: 0.9rem;
            opacity: 0.6;
        }
        .cta-ese .meta i {
            color: var(--accent-light);
            margin-right: 6px;
        }

        /* ============================================================ */
        /* FOOTER */
        /* ============================================================ */
        .footer-ese {
            background: var(--primary-dark);
            color: #8899b0;
            padding: 40px 0 30px;
            font-size: 0.85rem;
            border-top: 3px solid var(--secondary);
        }
        .footer-ese a {
            color: var(--accent-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-ese a:hover {
            opacity: 0.8;
            color: var(--secondary-light);
        }
        .footer-ese .small {
            font-size: 0.75rem;
            opacity: 0.5;
        }
        .footer-ese h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 16px;
        }

        /* ============================================================ */
        /* WHATSAPP FLOAT */
        /* ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #25D366;
            color: white;
            padding: 14px 22px;
            border-radius: 50px;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            z-index: 999;
            border: 2px solid white;
            transition: var(--transition);
        }
        .whatsapp-float:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
            color: white;
        }

        /* ============================================================ */
        /* ALERTAS */
        /* ============================================================ */
        .alert-form {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: min(90%, 720px);
            z-index: 9999;
            padding: 18px 24px;
            border-radius: 16px;
            text-align: center;
            font-weight: 700;
            display: none;
        }
        .alert-form.success {
            background: #d1e7dd;
            color: #0f5132;
            border: 1px solid #badbcc;
        }
        .alert-form.error {
            background: #f8d7da;
            color: #842029;
            border: 1px solid #f5c2c7;
        }

        /* ============================================================ */
        /* RESPONSIVE */
        /* ============================================================ */
        @media (max-width: 992px) {
            .hero-ese h1 {
                font-size: 2.6rem;
            }
            .section-title-xl {
                font-size: 2rem;
            }
            .cta-ese h2 {
                font-size: 2rem;
            }
            .hero-stats-ese {
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .hero-ese {
                padding: 60px 0 50px;
            }
            .hero-ese h1 {
                font-size: 2rem;
            }
            .hero-ese .cta-group .btn {
                width: 100%;
                justify-content: center;
            }
            .section-title-xl {
                font-size: 1.6rem;
            }
            .cta-ese h2 {
                font-size: 1.6rem;
            }
            .cta-ese .btn-cta-giant {
                width: 100%;
                justify-content: center;
                padding: 16px 32px;
            }
            .form-ese {
                padding: 28px 20px;
            }
            .hero-stats-ese {
                flex-direction: column;
                gap: 12px;
            }
            .razon-card {
                padding-left: 20px;
                padding-top: 20px;
            }
            .razon-card .num {
                position: static;
                font-size: 1.4rem;
                margin-bottom: 4px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 16px;
            }
            .hero-ese h1 {
                font-size: 1.7rem;
            }
        }

