:root {
            --primary: rgb(23, 15, 61);
            --secondary: rgba(23, 15, 61, 0.8);
            --accent: rgb(255, 38, 0);
            --accent-secondary: rgb(255, 193, 7);
            --purple-gradient: linear-gradient(135deg, rgb(23, 15, 61) 0%, rgba(23, 15, 61, 0.9) 100%);
            --blue-gradient: linear-gradient(135deg, rgb(0, 123, 255) 0%, rgba(0, 123, 255, 0.8) 100%);
            --gold-gradient: linear-gradient(135deg, rgb(255, 193, 7) 0%, rgba(255, 193, 7, 0.8) 100%);
            --light-accent: rgba(0, 123, 255, 0.1);
            --text: #333333;
            --light-text: #6c757d;
            --background: #f8f9fa;
            --card-bg: #ffffff;
            --border: #e0e0e0;
            --highlight: rgb(255, 38, 0);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
        }
        b, a{
            color: var(--accent);
            font-weight: 700;
            font-size: 17px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
        }
        
        header {
            background: rgb(9, 3, 37);
            color: white;
            padding: 0.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo h1 {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .logo span {
            font-size: 0.7rem;
            display: block;
            line-height: 1;
            opacity: 0.9;
        }
        
        .nav-main {
            display: flex;
            list-style: none;
        }
        
        .nav-main li {
            margin: 0 8px;
        }
        
        .nav-main a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .nav-main a:hover, .nav-main a.active {
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn-register {
            background: var(--primary);
            color: white;
            padding: 1% 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(241, 242, 243, 0.3);
            border: #fff solid 2px;
        }
        
        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }
        
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-section {
            background: rgb(23, 15, 61);
            color: white;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
           /*margin-bottom: 60px;*/
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-section .subtitle {
            font-size: 1.3rem;
            margin-bottom: 25px;
            opacity: 0.95;
        }
        
        .hero-section .date-location {
            font-size: 1.1rem;
            margin-bottom: 30px;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 30px;
            border-radius: 10px;
            display: inline-block;
            backdrop-filter: blur(10px);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 1%;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }
        
        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-3px);
        }
        
        .section {
            margin-bottom: 60px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 25px;
            margin-bottom: 25px;
            position: relative;
            animation: fadeInDown 0.8s ease-out;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width:10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            margin-bottom: 25px;
        }
        
        /* Estilos para el texto de bienvenida */
        .welcome-section {
            max-width: 1200px;
            margin: 0 auto 60px;
            text-align: center;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .welcome-section p{
            text-align: justify;
            margin-bottom: 1%;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .welcome-section h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .welcome-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .highlight-note {
            background: var(--light-accent);
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid var(--accent);
            font-weight: 600;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }
        
        .highlight-note:hover {
            transform: translateY(-2px);
        }
        
        /* Estilos para áreas temáticas */
        .thematic-areas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .thematic-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            cursor: pointer;
        }
        
        .thematic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .thematic-card:hover::before {
            transform: scaleX(1);
        }
        
        .thematic-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .thematic-card .card-icon {
            font-size: 3rem;
            background: var(--blue-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .thematic-card h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .thematic-card p {
            color: var(--light-text);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .thematic-card .btn-more {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .thematic-card .btn-more:hover {
            text-decoration: underline;
            transform: translateX(5px);
        }
        
        /* Estilos para modalidad online */
        .online-section {
            background: linear-gradient(135deg, rgba(23, 15, 61, 0.05), rgba(0, 123, 255, 0.05));
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .online-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .online-section h2 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .online-section h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .online-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .feature-list {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .feature-list:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .feature-list h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .feature-list h4 .material-icons {
            color: var(--accent);
            font-size: 1.5rem;
        }
        
        .feature-list ul {
            list-style: none;
        }
        
        .feature-list ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .feature-list ul li .material-icons {
            color: var(--accent);
            margin-top: 2px;
            font-size: 1.2rem;
        }
        
        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .objective-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .objective-card:hover::before {
            transform: scaleX(1);
        }
        
        .objective-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .objective-card .icon {
            font-size: 3.5rem;
            background: linear-gradient(135deg, rgb(23, 15, 61) 0%, rgb(0, 123, 255) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .objective-card h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .objective-card p {
            color: var(--light-text);
            line-height: 1.6;
        }
        
        .speakers-preview {
           
            border-radius: 25px;
            padding: 50px;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }
        
        /*.speakers-preview::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite reverse;
        }*/
        
        .speakers-preview h3 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .speakers-preview p {
            color: var(--light-text);
            font-size: 1.2rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
            gap: 40px;
        }
        
        .info-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .info-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .info-card .material-icons {
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .info-card ul {
            padding-left: 20px;
            color: var(--text);
        }
        
        .info-card ul li {
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .info-card ul li strong {
            color: var(--primary);
        }
        
        /* Estilos para la sección de participación */
        .participation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .participation-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
        }

        .participation-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .participation-header {
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .participation-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            opacity: 0.9;
        }

        .participation-header h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }

        .price-note {
            font-size: 0.95rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .participation-body {
            padding: 30px;
        }

        .participation-body ul {
            list-style: none;
            margin-bottom: 25px;
        }

        .participation-body ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            transition: all 0.2s ease;
        }

        .participation-body ul li:hover {
            background: rgba(0, 123, 255, 0.05);
            padding-left: 10px;
            border-radius: 8px;
        }

        .participation-body ul li .material-icons {
            margin-top: 2px;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .check-icon {
            color: #28a745;
        }

        .close-icon {
            color: #dc3545;
        }

        .btn-participate {
            display: block;
            text-align: center;
            color: white;
            padding: 1%;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .btn-participate::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
        }

        .btn-participate:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-participate:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        .organizer-section {
            background: var(--primary);
            color: white;
            padding: 60px 30px;
            border-radius: 25px;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .organizer-section::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: conic-gradient(from 0deg, transparent, rgba(0, 123, 255, 0.3), transparent);
            animation: rotate 30s linear infinite;
        }
        
        .organizer-section h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .organizer-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .footer {
            background: var(--primary);
            color: white;
            padding: 50px 20px;
            text-align: center;
            
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .social-links {
            margin: 30px 0;
        }
        
        .social-links a {
            color: white;
            font-size: 1.8rem;
            margin: 0 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .social-links a:hover {
            color: var(--accent-secondary);
            transform: translateY(-3px) scale(1.1);
        }
        
        /* Botón de scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--accent);
        }
        
        /* Animaciones para elementos que entran en viewport */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .hero-section .subtitle {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-main {
                display: none;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
            }

            .participation-grid {
                grid-template-columns: 1fr;
            }
            
            .thematic-areas {
                grid-template-columns: 1fr;
            }
            
            .online-features {
                grid-template-columns: 1fr;
            }
            
            .objectives-grid {
                grid-template-columns: 1fr;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .main-container {
                padding: 0 15px;
            }
            
            .welcome-section, .online-section, .speakers-preview, .organizer-section {
                padding: 30px 20px;
            }
        }

#contador {
    width: 100%;
    background-color: #ff2600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto 1% auto;
   
}

#countdown {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    left: 0
}

.wrapper {
    width: 70%;
    text-align: center;
    margin: 2%;
    padding: 2%
}

.time {
    color: #fcf8f7;
    font-size: 2.5em;
    margin: 1%
}

.label {
    display: block;
    color: #f8d1c7;
    font-size: 1.2em
}

.bg {
    height: 100vh;
    background-color: rgba(89,89,89,.75)
}

#days,#hours,#minutes,#seconds {
    width: 100px;
    font-weight: 700
}

/* Estilos del modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-container {
            background-color: white;
            border-radius: 10px;
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s;
            margin: auto;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-header {
            background-color: #6b2d5c;
            color: white;
            padding: 15px 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-title {
            margin: 0;
            font-size: 1.3rem;
            color: white !important;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .instruction-section {
            margin-bottom: 20px;
        }
        
        .instruction-section h3 {
            color: #2e1a47;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .instruction-section h3 i {
            margin-right: 10px;
            color: #e63946;
        }
        
        .instruction-section ul {
            padding-left: 20px;
        }
        
        .instruction-section li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .important-note {
            background-color: #f8d7da;
            border-left: 4px solid #e63946;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .steps-list {
            counter-reset: step-counter;
            list-style-type: none;
            padding-left: 0;
        }
        
        .steps-list li {
            counter-increment: step-counter;
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
        }
        
        .steps-list li:before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background-color: #6b2d5c;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .modal-footer {
            padding: 15px 20px;
            text-align: right;
            border-top: 1px solid #eee;
        }
        
        .btn-close {
            background-color: #6b2d5c;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-close:hover {
            background-color: #5a2450;
        }
        
        /* Botón para abrir el modal (opcional) */
        .open-modal-btn {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            margin: 20px auto;
            display: block;
            transition: background-color 0.3s;
        }
        
        .open-modal-btn:hover {
            background-color: #d62c39;
        }

        /* Estilos para la sección de aliados estratégicos */
.allies-section {
    margin-bottom: 50px;
}

.allies-section h3 {
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
}

.allies-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.allies-grid {
    display: grid;
    gap: 30px;
}

.allies-main {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.allies-academic {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.allies-collaborators {
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
}

.ally-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ally-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ally-card:hover::before {
    transform: scaleX(1);
}

.ally-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ally-logo {
    margin-bottom: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ally-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.ally-card:hover .ally-logo img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.ally-info h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.ally-info p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.allies-cta {
    background: linear-gradient(135deg, rgba(23, 15, 61, 0.05), rgba(0, 123, 255, 0.05));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.allies-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.allies-cta-content {
    position: relative;
    z-index: 2;
}

.allies-cta h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.allies-cta p {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .allies-main, .allies-academic, .allies-collaborators {
        grid-template-columns: 1fr;
    }
    
    .allies-cta {
        padding: 30px 20px;
    }
    
    .allies-cta h3 {
        font-size: 1.6rem;
    }
    
    .allies-cta p {
        font-size: 1rem;
    }
}

/* Estilos para la sección de organizadores */
.organizers-section {
    background: linear-gradient(135deg, rgba(23, 15, 61, 0.05), rgba(0, 123, 255, 0.05));
    border-radius: 25px;
    padding: 60px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.organizers-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    animation: rotate 30s linear infinite;
}

.organizers-section .section-title {
    position: relative;
    z-index: 2;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.organizer-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.organizer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.organizer-card:hover::before {
    transform: scaleX(1);
}

.organizer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.organizer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.organizer-card:hover .organizer-avatar {
    transform: scale(1.1) rotate(5deg);
}

.organizer-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.organizer-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.organizer-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.organizer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.organizer-contact .material-icons {
    font-size: 1.1rem;
    color: var(--accent);
}

.organizers-note {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.organizers-note p {
    color: var(--text);
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .organizers-section {
        padding: 40px 20px;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .organizer-card {
        padding: 25px 20px;
    }
    
    .organizers-note {
        padding: 20px;
    }
    
    .organizers-note p {
        font-size: 1rem;
    }
}
/* Estilos para la sección de comité científico */
.committee-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

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

.committee-section h3 {
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
}

.committee-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 2px;
}

.committee-grid {
    display: grid;
    gap: 20px;
}

.committee-main {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
}

.member-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.member-card:hover .member-photo {
    transform: scale(1.1);
}

.member-info {
    flex: 1;
}

.member-info h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.member-expertise {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.member-country {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-country .material-icons {
    font-size: 1rem;
    color: var(--accent);
}

.member-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Información adicional del comité */
.committee-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.detail-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.detail-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.detail-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Proceso de revisión */
.review-process {
    background: linear-gradient(135deg, rgba(23, 15, 61, 0.03), rgba(0, 123, 255, 0.03));
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
}

.review-process h3 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    animation: rotate 10s linear infinite;
}

.process-step h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-standards {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.review-standards h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

.review-standards ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.review-standards ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.review-standards ul li:hover {
    background: rgba(0, 123, 255, 0.05);
}

.review-standards ul li .material-icons {
    color: #28a745;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .committee-main {
        grid-template-columns: 1fr;
    }
    
    .member-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .committee-details {
        grid-template-columns: 1fr;
    }
    
    .review-process {
        padding: 30px 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .review-standards ul {
        grid-template-columns: 1fr;
    }
}

/* Animación para el número de paso */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.member-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
}

        
        .accordion-container {
            max-width: 1080px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .accordion-item {
            border-bottom: 1px solid var(--border);
        }
        
        .accordion-item:last-child {
            border-bottom: none;
        }
        
        .accordion-header {
            padding: 20px;
            background: var(--card-bg);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background: var(--light-accent);
        }
        
        .accordion-header.active {
            background: var(--light-accent);
            border-left: 4px solid var(--accent);
        }
        
        .step-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        .accordion-icon {
            color: var(--light-text);
            transition: all 0.3s ease;
            transform: rotate(0deg);
        }
        
        .accordion-header.active .accordion-icon {
            color: var(--accent);
            transform: rotate(180deg);
        }
        
        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .accordion-content.active {
            padding: 0 20px 20px 75px;
            max-height: 1000px;
        }
        
        .step-description {
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .step-features {
            background: rgba(0, 123, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            margin-top: 10px;
        }
        
        .step-features h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .step-features ul {
            list-style: none;
        }
        
        .step-features ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .step-features ul li .material-icons {
            color: #28a745;
            font-size: 1rem;
            margin-top: 2px;
        }
        
        .timeline-info {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            padding: 10px;
            background: rgba(255, 193, 7, 0.1);
            border-radius: 8px;
            font-size: 0.9rem;
        }
        
        .timeline-info .material-icons {
            color: #ffc107;
            font-size: 1rem;
        }
        
        .timeline-info span {
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .accordion-content.active {
                padding: 0 20px 20px 20px;
            }
            
            .step-info {
                gap: 12px;
            }
            
            .step-number {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .step-title {
                font-size: 1rem;
            }
        }

        /*registro*/
        .register-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px
}

.register-header {
    text-align: center;
    margin-bottom: 40px
}

.register-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px
}

.register-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto
}

.register-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 40px
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    margin-bottom: 20px
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--light-accent)
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px
}

.form-col {
    flex: 1
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    margin-bottom: 20px;
    background-color: #fff
}

.form-select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--light-accent)
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255,38,0,.3);
    cursor: pointer;
    display: block;
    margin: 30px auto 0
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,38,0,.4)
}

.register-footer {
    text-align: center;
    color: var(--light-text);
    font-size: .9rem
}

.register-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600
}

.register-footer a:hover {
    text-decoration: underline
}

/* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        
        .modal-overlay.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }
        
        .modal-container {
            background: var(--card-bg);
            border-radius: 25px;
            width: 90%;
            max-width: 1440px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .modal-overlay.active .modal-container {
            transform: scale(1);
            opacity: 1;
        }
        
        .modal-header {
            background: var(--purple-gradient);
            color: white;
            padding: 30px;
            border-radius: 25px 25px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }
        
        .modal-header-content {
            position: relative;
            z-index: 2;
        }
        
        .modal-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            backdrop-filter: blur(10px);
        }
        
        .modal-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .modal-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .close-button {
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .close-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 40px;
        }
        
        .benefits-section {
            background: linear-gradient(135deg, rgba(23, 15, 61, 0.03), rgba(255, 38, 0, 0.03));
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.7);
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--blue-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .benefit-content h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .benefit-content p {
            color: var(--light-text);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .partnership-types {
            margin-bottom: 40px;
        }
        
        .type-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .type-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }
        
        .type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            border-top-color: var(--highlight);
        }
        
        .type-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--purple-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 15px;
        }
        
        .type-card h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .type-card p {
            color: var(--light-text);
            line-height: 1.6;
        }
        
        .cta-section {
            background: var(--purple-gradient);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin-top: 30px;
        }
        
        .cta-section h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary {
            background: white;
            color: var(--primary);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-2px);
        }
        
        .btn-primary:hover {
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .modal-container {
                width: 95%;
                max-height: 95vh;
            }
            
            .modal-header {
                padding: 20px;
            }
            
            .modal-title {
                font-size: 1.8rem;
            }
            
            .modal-body {
                padding: 25px;
            }
            
            .objectives-grid, .benefits-grid, .type-cards {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
        }