
        :root {
            --primary: #032a4a;
            --secondary: #02213d;
            --accent: #5ec9b1;
            --accent-light: #6ad9c5;
            --accent-dark: #035040;
            --primary-dark: #022540;
            --primary-darker: #021e35;
            --white: #ffffff;
            --gray-light: #f5f7fa;
            --dark: #021e35;
            --light: #f8f9fa;
            --gray: #6c757d;
            --text: #333333;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
            --border-radius-sm: 8px;
            --border-radius-md: 16px;
            --border-radius-lg: 24px;
            --border-radius-xl: 32px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--gray-light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(94, 201, 177, 0.03) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(94, 201, 177, 0.03) 0%, transparent 25%);
            z-index: -1;
        }

        #smooth-content {
            position: relative;
            z-index: 1;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: transparent;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 2000;
            padding: 1.5rem 0;
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(2, 33, 61, 0.97);
            backdrop-filter: blur(12px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
            padding: 1rem 0;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
            font-family: 'Playfair Display', serif;
            text-decoration: none;
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            border-radius: 3px;
            opacity: 0;
            transition: var(--transition);
        }

        .logo:hover::before {
            opacity: 1;
        }

        .logo span {
            color: var(--accent);
            font-weight: 700;
        }

        .logo-icon {
            font-size: 1.2em;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
            font-size: 1.05rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-light);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background-color: var(--white);
            transition: var(--transition);
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
            background-color: var(--accent);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background-color: var(--accent);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: radial-gradient(circle at top right, var(--primary), var(--secondary));
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            z-index: 1998;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--white);
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(94, 201, 177, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--accent-dark), var(--accent));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(94, 201, 177, 0.4);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
            padding-bottom: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(94, 201, 177, 0.08) 0%, rgba(2, 33, 61, 0) 40%);
            z-index: 0;
        }

        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--white);
            position: relative;
        }

        .hero h1 span {
            color: var(--accent);
            position: relative;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(94, 201, 177, 0.25);
            z-index: -1;
            border-radius: 4px;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 550px;
            position: relative;
            z-index: 2;
        }

        .cta-container {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            box-shadow: none;
        }

        .cta-button.secondary:hover {
            background: rgba(94, 201, 177, 0.15);
            box-shadow: 0 5px 15px rgba(94, 201, 177, 0.2);
        }

        .hero-visual {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 48%;
            height: 85%;
            opacity: 0.25;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .hero-logo {
            max-width: 80%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            filter: blur(40px);
        }

        .shape-1 {
            width: 350px;
            height: 350px;
            top: 10%;
            right: 15%;
        }

        .shape-2 {
            width: 250px;
            height: 250px;
            bottom: 15%;
            right: 20%;
            background: linear-gradient(135deg, var(--accent-dark), var(--primary));
        }

        /* Hero word animation */
        .hero-word {
            display: inline-block;
            margin-right: 0.3em;
        }

        /* Section Styles */
        .section {
            padding: 50px 0;
            position: relative;
            background-color: var(--white);
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(94, 201, 177, 0.03) 100%);
            z-index: -1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            border-radius: 3px;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            margin-bottom: 0.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary);
        }

        .section-title h2 span {
            color: var(--accent);
            position: relative;
        }

        .section-title h2 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(94, 201, 177, 0.2);
            z-index: -1;
            border-radius: 4px;
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.15rem;
            line-height: 1.7;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
            position: relative;
            z-index: 2;
        }

        .program-card {
            background: var(--white);
            border-radius: var(--border-radius-md);
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(94, 201, 177, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(106, 217, 197, 0.08), transparent);
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }

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

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(94, 201, 177, 0.25);
            border-color: var(--accent);
        }

        .program-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
            z-index: 2;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .program-card:hover .program-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(94, 201, 177, 0.3);
        }

        .program-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: rotate(45deg) translateX(-100%);
            }

            100% {
                transform: rotate(45deg) translateX(100%);
            }
        }

        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            z-index: 2;
            position: relative;
            color: var(--primary);
        }

        .program-card p {
            color: var(--gray);
            margin-bottom: 1.2rem;
            line-height: 1.7;
            z-index: 2;
            position: relative;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            z-index: 2;
            transition: var(--transition);
            padding: 0.5rem 0;
        }

        .learn-more::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .learn-more:hover::after {
            width: 100%;
        }

        .learn-more i {
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .learn-more:hover i {
            transform: translateX(8px);
        }

        /* Team Section */
        .team-section {
            background: linear-gradient(180deg, var(--gray-light), var(--white));
            position: relative;
            overflow: hidden;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(94, 201, 177, 0.05), transparent 40%);
            z-index: 0;
        }

        .team-carousel-container {
            position: relative;
            margin-top: 2rem;
            padding: 0 60px;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-carousel-wrapper {
            overflow: hidden;
            cursor: grab;
            border-radius: var(--border-radius-lg);
            position: relative;
            box-shadow: var(--shadow-lg);
        }

        .team-carousel-wrapper:active {
            cursor: grabbing;
        }

        .team-grid {
            display: flex;
            gap: 1px;
            transition: transform 0.5s ease;
            padding: 0.5rem 0;
        }

        .team-member {
            min-width: calc(33.333% - 14px);
            max-width: calc(33.333% - 14px);
            position: relative;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            background: var(--white);
            transition: var(--transition);
            border: 1px solid rgba(94, 201, 177, 0.2);
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-right: 20px;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(94, 201, 177, 0.25);
            border-color: var(--accent);
        }

        .member-img {
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            background: #f8f9fa;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .member-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 40%, rgba(2, 80, 64, 0.85) 100%);
        }

        .member-img i {
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .team-member:hover .member-img i {
            transform: scale(1.1);
            color: rgba(255, 255, 255, 0.25);
        }

        .member-info {
            padding: 1.5rem;
        }

        .member-info h3 {
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .member-role {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.8rem;
            display: block;
            font-size: 1rem;
        }

        .member-description {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .member-traits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            font-size: 0.85rem;
        }

        .trait-label {
            font-weight: 600;
            color: var(--accent-light);
        }

        .trait-value {
            color: var(--text);
            font-weight: 500;
        }

        /* Carousel Navigation Arrows */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(94, 201, 177, 0.95);
            color: var(--primary);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(5px);
        }

        .carousel-btn:hover {
            background: var(--accent);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(94, 201, 177, 0.4);
        }

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

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            background: rgba(94, 201, 177, 0.3);
            pointer-events: none;
        }

        .carousel-btn:disabled:hover {
            transform: translateY(-50%);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Partners Section */
        .partners-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 40px 0;
            overflow: hidden;
            position: relative;
        }

        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 20%, rgba(94, 201, 177, 0.05), transparent 50%);
            z-index: 0;
        }

        .partners-section .section-title h2,
        .partners-section .section-title p {
            color: var(--white);
        }

        .partners-carousel-wrapper {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
            padding: 2rem 0;
        }

        .partners-carousel-wrapper::before,
        .partners-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .partners-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--primary), transparent);
        }

        .partners-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--secondary), transparent);
        }

        .partners-carousel {
            display: flex;
            gap: 3rem;
            animation: scroll-left 30s linear infinite;
            width: max-content;
        }

        .partners-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .partner-logo {
            height: 100px;
            min-width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: var(--transition);
            padding: 1rem 2rem;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--border-radius-sm);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 10px 25px rgba(94, 201, 177, 0.3);
            background: rgba(255, 255, 255, 1);
        }

        .partner-logo img {
            max-height: 80px;
            max-width: 180px;
            object-fit: contain;
            transition: var(--transition);
        }

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

        /* Sedes Section */
        .sedes {
            padding: 3rem 0;
            background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .sedes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 70%, rgba(94, 201, 177, 0.07), transparent 50%);
            z-index: 0;
        }

        .sede-carousel-container {
            position: relative;
            margin-top: 2rem;
            padding: 0 60px;
            width: 100%;
        }

        .sede-carousel-wrapper {
            overflow: hidden;
            cursor: grab;
            max-width: 1236px;
            margin: 0 auto;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .sede-carousel-wrapper:active {
            cursor: grabbing;
        }

        .sede-cards {
            display: flex;
            gap: 1px;
            transition: transform 0.5s ease;
            padding: 1rem 0;
        }

        .sede-card {
            min-width: calc(33.333% - 14px);
            max-width: calc(33.333% - 14px);
            background: var(--white);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(94, 201, 177, 0.2);
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-right: 20px;
        }

        .sede-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(94, 201, 177, 0.25);
            border-color: var(--accent);
        }

        .sede-img {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .sede-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(2, 33, 61, 0.85), rgba(2, 80, 64, 0.6));
            transition: var(--transition);
        }

        .sede-card:hover .sede-img::before {
            background: linear-gradient(135deg, rgba(2, 33, 61, 0.7), rgba(94, 201, 177, 0.3));
        }

        .sede-content {
            padding: 1.5rem;
        }

        .sede-content h3 {
            font-size: 1.6rem;
            margin-bottom: 0.6rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .sede-content h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: 3px;
        }

        .sede-content p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .sede-stats {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(94, 201, 177, 0.2);
            padding-top: 1rem;
            margin-top: 0.8rem;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
            margin-bottom: 0.2rem;
        }

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

        .sede-map-link {
            display: block;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        }

        .sede-map-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .sede-map-link:hover .sede-map-img {
            transform: scale(1.05);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
        }

        .modal-content {
            background: linear-gradient(135deg, var(--white), #f8f9fa);
            margin: 5% auto;
            padding: 0;
            border-radius: var(--border-radius-lg);
            width: 90%;
            max-width: 800px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: slideIn 0.3s ease-out;
            overflow: hidden;
            border: 1px solid rgba(94, 201, 177, 0.3);
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2rem;
            text-align: center;
            flex-shrink: 0;
        }

        .modal-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .modal-header h2 span {
            color: var(--accent);
        }

        .modal-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .modal-body {
            padding: 2rem;
            overflow-y: auto;
            max-height: calc(90vh - 150px);
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .offer-card {
            background: white;
            border-radius: var(--border-radius-md);
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(94, 201, 177, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(94, 201, 177, 0.2);
        }

        .offer-badge {
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .offer-card h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .offer-card p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .offer-price {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
        }

        .discounted-price {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.3rem;
        }

        .preinscription-form {
            background: rgba(94, 201, 177, 0.05);
            border-radius: var(--border-radius-md);
            padding: 2rem;
            border: 1px solid rgba(94, 201, 177, 0.1);
        }

        .preinscription-form h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid rgba(94, 201, 177, 0.2);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(94, 201, 177, 0.2);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 0.3rem;
        }

        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.5;
        }

        .close {
            color: white;
            float: right;
            font-size: 2.5rem;
            font-weight: bold;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            line-height: 1;
        }

        .close:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

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

        /* Programas Section */
        .programas {
            padding: 3rem 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .programas::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 30%, rgba(94, 201, 177, 0.05), transparent 50%);
            z-index: 0;
        }

        .programas-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 0.8rem;
            position: relative;
            z-index: 2;
        }

        .filter-btn {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            font-size: 0.95rem;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: rgba(94, 201, 177, 0.15);
            transition: var(--transition);
            z-index: -1;
        }

        .filter-btn:hover::before,
        .filter-btn.active::before {
            width: 100%;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background-color: var(--accent);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(94, 201, 177, 0.3);
        }

        .programas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .programa-card {
            background: var(--white);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 1px solid rgba(94, 201, 177, 0.2);
            backdrop-filter: blur(5px);
            position: relative;
            z-index: 1;
        }

        .programa-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .programa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(106, 217, 197, 0.07), transparent);
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }

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

        .programa-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(94, 201, 177, 0.25);
            border-color: var(--accent);
        }

        .programa-header {
            padding: 1.2rem;
            border-bottom: 1px solid rgba(94, 201, 177, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .programa-category {
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .programa-sede {
            color: var(--accent-light);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
        }

        .programa-sede::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: rgba(94, 201, 177, 0.5);
            border-radius: 1px;
        }

        .programa-body {
            padding: 1.2rem;
            position: relative;
            z-index: 2;
        }

        .programa-title {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
            line-height: 1.3;
        }

        .programa-details {
            display: flex;
            margin-bottom: 1.2rem;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .programa-detail {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 0.95rem;
            gap: 0.5rem;
        }

        .programa-detail i {
            color: var(--accent);
            font-size: 0.9rem;
        }

        .programa-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(94, 201, 177, 0.1);
        }

        .programa-price {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent);
        }

        .programa-image {
            width: 100%;
            min-height: 200px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }

        .programa-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: var(--transition);
            max-width: 100%;
        }

        .programa-card:hover .programa-image img {
            transform: scale(1.02);
        }

        .programa-badge {
            position: absolute;
            top: 12px;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.7rem;
            z-index: 3;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .programa-badge.inscripciones {
            right: 12px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
        }

        .programa-badge.oferta {
            left: 12px;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            color: var(--primary);
        }

        .programa-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 2;
        }

        /* CTA Section */
        .cta-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-xl);
            margin: 2rem 1rem;
            box-shadow: var(--shadow-lg);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(94, 201, 177, 0.1), transparent 60%);
            z-index: 0;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2302213d" fill-opacity="0.9" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,208C960,235,1056,245,1152,229.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
            background-size: cover;
            background-position: bottom;
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1rem;
            color: var(--white);
            line-height: 1.2;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .cta-bg-element {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(94, 201, 177, 0.15) 0%, transparent 70%);
            top: -150px;
            right: -150px;
            filter: blur(60px);
            z-index: 1;
        }

        .cta-bg-element-2 {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(94, 201, 177, 0.1) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            filter: blur(50px);
            z-index: 1;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--primary-dark), var(--primary-darker));
            color: var(--white);
            padding: 3rem 0 1.5rem;
            border-top: 1px solid rgba(94, 201, 177, 0.1);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(94, 201, 177, 0.05), transparent 60%);
            z-index: 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            position: relative;
            color: var(--white);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent);
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            position: relative;
            padding: 0.3rem 0;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-links a:hover {
            color: var(--accent-light);
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.2rem;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
            font-size: 1rem;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(94, 201, 177, 0.5);
        }

        .footer-contact li {
            display: flex;
            margin-bottom: 0.8rem;
            gap: 0.8rem;
        }

        .footer-contact i {
            color: var(--accent);
            font-size: 1.1rem;
            min-width: 24px;
            margin-top: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            z-index: 1000;
            transform-origin: 0%;
            transform: scaleX(0);
            width: 100%;
            box-shadow: 0 2px 10px rgba(94, 201, 177, 0.5);
        }

        /* Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        .loader-container {
            text-align: center;
        }

        .loader {
            width: 100px;
            height: 100px;
            border: 5px solid rgba(94, 201, 177, 0.2);
            border-radius: 50%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader::before {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border: 5px solid transparent;
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
        }

        .loader::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            border: 5px solid transparent;
            border-top-color: var(--accent-light);
            border-radius: 50%;
            animation: spin 1.8s linear infinite reverse;
        }

        .loader-text {
            margin-top: 20px;
            color: var(--accent);
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 1px;
            opacity: 0;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Floating animation for elements */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .floating {
            animation: float 4s ease-in-out infinite;
        }

        /* Advanced animations */
        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-item.animated {
            opacity: 0;
            transform: translateY(40px);
        }

        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .hero-visual {
                width: 40%;
            }

            .section {
                padding: 40px 0;
            }

            .team-carousel-container,
            .sede-carousel-container {
                padding: 0 40px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding-bottom: 60px;
            }

            .hero-content {
                margin: 0 auto;
            }

            .cta-container {
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero-visual {
                display: none;
            }

            .section {
                padding: 30px 0;
            }

            .team-carousel-container,
            .sede-carousel-container {
                padding: 0 30px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .partners-carousel-wrapper {
                padding: 2rem 0;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .section-title::after {
                width: 60px;
            }

            .cta-container {
                flex-direction: column;
                width: 100%;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }

            .team-member {
                min-width: 280px;
            }

            .sede-card {
                min-width: 300px;
            }

            .programas-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                width: 95%;
                padding: 0 15px;
            }

            .logo {
                font-size: 1.8rem;
            }

            .nav-links li a {
                font-size: 1rem;
            }

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

            .section-title h2 {
                font-size: 1.8rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .team-carousel-container,
            .sede-carousel-container {
                padding: 0 15px;
            }

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

            .cta-section {
                padding: 2.5rem 0;
            }

            .footer-content {
                gap: 1.5rem;
            }
        }
    
        .no-ofertas-message {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 20px auto;
    max-width: 600px;
}

.no-ofertas-message h3 {
    color: #343a40;
    margin-bottom: 10px;
    font-size: 24px;
}



/* Logo del convenio centrado en la parte inferior */
.programa-convenio-logo {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    overflow: hidden;
    z-index: 2;
}

.programa-convenio-logo img {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
    padding: 5px;
}


.cargo-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007bff !important;
}

.cargo-group:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.sucursales-list .bg-light {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.sucursales-list .bg-light:hover {
    background-color: #ffffff !important;
    border-color: #007bff;
    transform: translateX(5px);
}

.photo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}



.member-traits {
    width: 100%;
    margin-bottom: 15px;
}

.member-traits > div {
    width: 100%;
}

.member-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-btn {
    background: #02213d;
}

.whatsapp-btn {
    background: #035040;
}

.contact-btn:hover {
    transform: scale(1.1);
}

.contact-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #5ec9b1;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    min-width: 120px;
    text-align: center;
}

.contact-btn:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 110%;
}

/* En tu archivo CSS */
.member-traits .trait-value.text-success {
    font-weight: 600;
}

.team-member[data-area="Académica"] .member-role {
    color: #2c7be5;
}

.team-member[data-area="Marketing"] .member-role {
    color: #5ec9b1;
}

.team-member[data-area="Contable"] .member-role {
    color: #008000;
}

.team-member[data-area="Administrativa"] .member-role {
    color: #800080;
}