  :root {
            --primary: #9D2449;
            --primary-dark: #7a1c3a;
            --accent: #BC955B;
            --accent-light: #D4B98A;
            --text-dark: #285C4D;
            --light-bg: #f5f7fa;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
        }
        
        body {
            background: linear-gradient(135deg, #f9fafc 0%, #edf1f7 100%);
            min-height: 100vh;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            background-color: white;
            padding: 0.5rem 1rem;
        }
        
        .navbar-brand img {
            transition: transform 0.3s;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-item {
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .navbar-item:hover {
            color: var(--primary) !important;
            background-color: transparent !important;
        }
        
        .navbar-item.has-dropdown:hover .navbar-dropdown {
            display: block;
            animation: fadeIn 0.3s;
        }
        
        .navbar-dropdown {
            border-top: 2px solid var(--accent);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 8px 8px;
        }
        
        .navbar-dropdown .navbar-item {
            padding: 0.7rem 1.5rem;
            transition: all 0.2s;
        }
        
        .navbar-dropdown .navbar-item:hover {
            background-color: #f9f5f0 !important;
            color: var(--primary) !important;
            padding-left: 1.8rem;
        }
        
        .hero {
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(157, 36, 73, 0.85), rgba(188, 149, 91, 0.8));
            z-index: 1;
        }
        
        .hero-body {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro-section {
            padding: 4rem 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .intro-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .cdc-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .cdc-button {
            padding: 1.2rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cdc-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s;
        }
        
        .cdc-button:hover::before {
            left: 100%;
        }
        
        .cdc-button.colibri {
            background: var(--gradient-primary);
            color: white;
        }
        
        .cdc-button.consorcio {
            background: var(--gradient-accent);
            color: white;
        }
        
        .cdc-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            border: none;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .card-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            margin-bottom: 1.2rem;
            transition: transform 0.3s;
        }
        
        .card-hover:hover .icon-circle {
            transform: scale(1.1);
        }
        
        .icon-circle i {
            font-size: 2rem;
        }
        
        .schedule-list {
            margin-bottom: 1.2rem;
            flex-grow: 1;
        }
        
        .schedule-list li {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
        }
        
        .cost-info {
            background: rgba(0, 0, 0, 0.1);
            padding: 1rem;
            border-radius: 10px;
            margin-top: auto;
        }
        
        .info-button {
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.8rem;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1.2rem;
            display: inline-block;
            width: 100%;
            text-align: center;
            box-shadow: 0 4px 10px rgba(188, 149, 91, 0.3);
        }
        
        .info-button:hover {
            background-color: #a57c4a;
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 6px 15px rgba(188, 149, 91, 0.4);
        }
        
        .course-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 10;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }
        
        .age-tag {
            display: inline-block;
            background: rgba(188, 149, 91, 0.2);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-top: 0.8rem;
            border: 1px solid var(--accent);
        }
        
        .course-title {
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .course-title .title {
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .course-schedule {
            min-height: 130px;
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
        }
        
        .shape-1 {
            top: 20%;
            left: 5%;
            width: 200px;
            height: 200px;
            background: var(--primary);
            border-radius: 50%;
            filter: blur(10px);
        }
        
        .shape-2 {
            bottom: 10%;
            right: 5%;
            width: 150px;
            height: 150px;
            background: var(--accent);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            filter: blur(8px);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 1024px) {
            .column.is-3-widescreen {
                width: 50%;
                flex: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .card-content {
                padding: 1.2rem;
            }
            
            .icon-circle {
                width: 70px;
                height: 70px;
            }
            
            .icon-circle i {
                font-size: 1.8rem;
            }
            
            .column.is-3-widescreen {
                width: 100%;
                flex: none;
            }
            
            .course-title {
                min-height: auto;
            }
            
            .course-schedule {
                min-height: auto;
            }
            
            .cdc-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cdc-button {
                width: 100%;
                max-width: 300px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .intro-text {
                font-size: 1.1rem;
            }
            
            .navbar-dropdown {
                background-color: #f5f5f5;
            }
        }