/* ===================================
   VARIABLES Y RESET
   =================================== */

:root {
    /* Colores principales */
    --bg-dark: #1b1a1b;
    --bg-light: #f5f5f5;
    --text-dark: #ffffff;
    --text-light: #1a1a1a;
    
    /* Colores de acento */
    --purple: #6e0993;
    --green: #009929;
    --purple-light: #8e2bb3;
    --green-light: #00c937;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green) 0%, var(--purple) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(110, 9, 147, 0.1) 0%, rgba(0, 153, 41, 0.1) 100%);
    
    /* Transiciones */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

body.light-mode {
    background-color: var(--bg-light);
    color: var(--text-light);
}

/* ===================================
   HEADER Y NAVEGACIÓN
   =================================== */
/* ========== MENU NAVIGATION ========== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(40, 39, 40, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(110, 9, 147, 0.3);
    background: rgba(40, 39, 40, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6e0993, #009929);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: #6e0993;
    background: rgba(110, 9, 147, 0.1);
}

.nav-link.active {
    color: #6e0993;
}

/* CTA button en el menú */
.nav-link.cta-nav {
    background: #6e0993;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    background: linear-gradient(135deg, #8b0bb8, #00b833);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 9, 147, 0.4);
}

/* Menu Toggle (Hamburguesa) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.theme-toggle:hover {
    border-color: #6e0993;
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 0 15px rgba(110, 9, 147, 0.5);
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .logo-img {
        height: 40px;
    }
}

/* ========== RESPONSIVE - MÓVIL ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(40, 39, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 2px solid rgba(110, 9, 147, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-link::after {
        left: 0;
        transform: translateX(0);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-link.cta-nav {
        margin-top: 1rem;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Overlay cuando el menú está abierto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        animation: fadeInOverlay 0.3s ease;
    }

    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .navbar {
        padding: 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Ajuste del hero para compensar el header fijo */
    .hero {
        padding-top: 80px;
    }
}

/* ========== DARK/LIGHT MODE ========== */
body.light-mode .header {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

body.light-mode .nav-link {
    color: #282728;
}

body.light-mode .nav-link:hover {
    color: #6e0993;
    background: rgba(110, 9, 147, 0.05);
}

body.light-mode .nav-link.active {
    color: #6e0993;
}

body.light-mode .nav-link.cta-nav {
    color: #fff;
}

body.light-mode .hamburger {
    background: #282728;
}

body.light-mode .nav-menu {
    background: rgba(255, 255, 255, 0.98);
}

body.light-mode .theme-toggle {
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .theme-toggle:hover {
    border-color: #6e0993;
}
/* ========== ICONOS THEME TOGGLE ========== */

.theme-toggle .moon,
.theme-toggle .angry-face {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .angry-face {
    opacity: 0;
    transform: scale(0);
}

body.light-mode .theme-toggle .moon {
    opacity: 0;
    transform: scale(0);
}

body.light-mode .theme-toggle .angry-face {
    opacity: 1;
    transform: scale(1);
}

/* Estilos generales light mode para el body */
body.light-mode {
    background-color: #f5f5f5;
    color: #282728;
}

body.light-mode .section {
    background-color: #fff;
}

body.light-mode .dark-section {
    background-color: #f9f9f9;
}

body.light-mode .hero-title,
body.light-mode .section-title {
    color: #282728;
}

body.light-mode .solid-purple {
    color: #6e0993;
}

/* ========== SMOOTH SCROLL ========== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 2rem;
    overflow: hidden;
}

.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.solid-purple {
    color: #6e0993 !important;
}


.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: block;
    margin: 2rem auto 0;  /* Espacio arriba y centrado */
    padding: 1rem 2.5rem;
    background: #008d36;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(110, 9, 147, 0.3);
    text-align: center;
    max-width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 9, 147, 0.5);
}

/* ===================================
   SECCIONES
   =================================== */

.section {
    padding: 4rem 1.5rem;
}

.dark-section {
    background: linear-gradient(135deg, rgba(110, 9, 147, 0.05) 0%, rgba(0, 153, 41, 0.05) 100%);
}

.light-mode .dark-section {
    background: linear-gradient(135deg, rgba(110, 9, 147, 0.08) 0%, rgba(0, 153, 41, 0.08) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #6e0993;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===================================
   QUÉ SOMOS - CARDS
   =================================== */

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.content-card {
    background: rgba(110, 9, 147, 0.1);
    border: 2px solid rgba(110, 9, 147, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all var(--transition-fast);
}

.light-mode .content-card {
    background: rgba(110, 9, 147, 0.05);
    border: 2px solid rgba(110, 9, 147, 0.15);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(110, 9, 147, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--purple-light);
}

.content-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* ===================================
   POR QUÉ IMPORTA
   =================================== */

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-item {
    padding: 2rem;
    border-left: 4px solid var(--purple);
    background: rgba(110, 9, 147, 0.05);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.why-item:hover {
    border-left-width: 8px;
    background: rgba(110, 9, 147, 0.1);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green-light);
}

.why-item p {
    line-height: 1.8;
    opacity: 0.9;
}

/* ===================================
   ACTIVIDADES
   =================================== */

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.activity-card {
    background: var(--gradient-soft);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.activity-card:hover {
    border-color: var(--green);
    transform: scale(1.02);
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activity-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* ===================================
   VALORES
   =================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 153, 41, 0.1);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.value-item:hover {
    transform: scale(1.05);
    background: var(--gradient-soft);
}

.value-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.value-item h4 {
    font-size: 1rem;
    color: var(--green-light);
}

/* ===================================
   FORMULARIO
   =================================== */

/* ========== FORMULARIO ORGANIZACIONES ========== */

.invite-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(110, 9, 147, 0.2);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(110, 9, 147, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    color: #6e0993;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(110, 9, 147, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6e0993;
    background: rgba(110, 9, 147, 0.1);
    box-shadow: 0 0 0 3px rgba(110, 9, 147, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.invite-form select,
.wizard-form select {
    background-color: #3a393a !important;
    color: #ffffff !important;
}

.invite-form select option,
.wizard-form select option {
    background-color: #2a292a !important;
    color: #ffffff !important;
    padding: 8px !important;
}

.invite-form select option:hover,
.wizard-form select option:hover,
.invite-form select option:checked,
.wizard-form select option:checked {
    background-color: #6e0993 !important;
    color: #ffffff !important;
}

/* Light mode */
body.light-mode .invite-form select,
body.light-mode .wizard-form select {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border-color: #d1d5db !important;
}

body.light-mode .invite-form select option,
body.light-mode .wizard-form select option {
    background-color: #f9f9f9 !important;
    color: #1a1a1a !important;
}

body.light-mode .invite-form select option:hover,
body.light-mode .wizard-form select option:checked {
    background-color: #e5e7eb !important;
    color: #1a1a1a !important;
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(110, 9, 147, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    cursor: pointer;
    accent-color: #6e0993;
}

.checkbox-label span {
    color: #fff;
    font-size: 0.95rem;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 153, 41, 0.2);
    border: 2px solid #009929;
    color: #00ff4c;
}

.form-message.error {
    display: block;
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
    color: #ff6b6b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .invite-form {
        padding: 2rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.submit-button {
    display: block;
    margin: 2rem auto 0;  
    padding: 1rem 2.5rem;
    background: #008d36;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(110, 9, 147, 0.3);
    text-align: center;
    max-width: fit-content;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 9, 147, 0.4);
}
/* ========== WIZARD MODAL ========== */


.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.form-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: 100vh;
}

.modal-content {
    background: #282728;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(110, 9, 147, 0.5);
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    transform: rotate(90deg);
}

/* Intro */
.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro h2 {
    color: #6e0993;
    margin-bottom: 1.5rem;
}

.form-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item {
    text-align: center;
    padding: 1rem;
    background: rgba(110, 9, 147, 0.1);
    border-radius: 10px;
}

.info-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

/* Barra de progreso */
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 6px;
    background: rgba(110, 9, 147, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #6e0993, #009929);
    transition: width 0.4s ease;
}

.progress-bar[data-progress="1"]::after { width: 20%; }
.progress-bar[data-progress="2"]::after { width: 40%; }
.progress-bar[data-progress="3"]::after { width: 60%; }
.progress-bar[data-progress="4"]::after { width: 80%; }
.progress-bar[data-progress="5"]::after { width: 100%; }

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.progress-step {
    flex: 1;
    text-align: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #6e0993, #009929);
    transform: scale(1.2);
}

.progress-step.completed .step-number {
    background: #009929;
}

.step-label {
    display: block;
    font-size: 0.75rem;
    color: #fff;
}

/* Wizard form */
.wizard-form {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    color: #6e0993;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}


.form-step {
    scroll-margin-top: 0;
}

.modal-content {
    scroll-behavior: smooth;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Navegación */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.nav-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.prev-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.next-btn,
.submit-btn {
    background: linear-gradient(135deg, #6e0993, #009929);
    color: #fff;
    margin-left: auto;
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(110, 9, 147, 0.5);
}

.submit-btn {
    transform: scale(1.05);
}

.final-check {
    background: rgba(0, 153, 41, 0.1);
    border-left: 4px solid #009929;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.final-check p {
    margin: 0;
    color: #00ff4c;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
    }
    
    .form-info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .progress-steps {
        flex-wrap: wrap;
    }
    
    .step-label {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .next-btn,
    .submit-btn {
        margin-left: 0;
    }
}



/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(110, 9, 147, 0.2);
}

.footer-text {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--purple-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.separator {
    opacity: 0.5;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section {
        padding: 6rem 2rem;
    }
}
