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

:root {
    --primary-color: #ff8000;
    --secondary-color: #2f6a00;
    --accent-color: #ffaa00;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --pure-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff8000, #ffaa00);
    --gradient-secondary: linear-gradient(135deg, #2f6a00, #4a8c2a);
    --gradient-accent: linear-gradient(135deg, #ffaa00, #ff8000);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    to {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.hero-content {
    max-width: 800px;
    margin-top: 120px;
    z-index: 10;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-main {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.title-sub {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
}

.hero-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-full {
    width: 100%;
    margin-top: 20px;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-float {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 10s ease-in-out infinite;
}

.card-float.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-float.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.card-float.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.card-float.card-4 {
    top: 40%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 30px;
}

.card-text {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    color: var(--primary-color);
}

.section {
    padding: 80px 20px;
    position: relative;
}

.section-alt {
    background: var(--dark-card);
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 128, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

#beneficios .section-title {
    background: linear-gradient(135deg, #2f6a00, #4a8c2a, #2f6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(47, 106, 0, 0.8);
}

#para-quien .section-title {
    background: linear-gradient(135deg, #ffffff, #ffaa00, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(47, 106, 0, 0.8);
    box-shadow: 0 0 10px rgba(47, 106, 0, 0.5);
    backdrop-filter: blur(10px);
}

.card-image {
    height: 200px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 60px;
    opacity: 0.7;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 243, 255, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.info-panel {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.info-footnote {
    margin-top: 15px;
    font-size: 13px;
    color: var(--gray-text);
    font-style: italic;
}

.steps-list li {
    position: relative;
    cursor: default;
}

.steps-list li::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-card);
    color: var(--light-text);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    border: 1px solid var(--primary-color);
}

.steps-list li:hover::after {
    opacity: 1;
}

.info-panel h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-list li {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.faq-list li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.faq-list li:hover::before {
    width: 100%;
}

.faq-list details {
    padding: 15px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
    outline: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before {
    content: '▶';
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.faq-list details[open] summary::before {
    transform: rotate(90deg);
}

.faq-list p {
    margin-top: 10px;
    padding-left: 28px;
    color: var(--gray-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-list summary {
        font-size: 14px;
    }
    .faq-list p {
        font-size: 13px;
    }
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

.agenda-container {
    display: flex;
    justify-content: center;
}

.agenda-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(10px);
}

.agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.agenda-type {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.agenda-date {
    color: var(--accent-color);
    font-weight: 600;
}

.agenda-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    margin-bottom: 10px;
}

.agenda-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.agenda-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.membership-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(47, 106, 0, 0.8);
    box-shadow: 0 0 10px rgba(47, 106, 0, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
}

.membership-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--dark-bg);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.membership-header {
    text-align: center;
    margin-bottom: 30px;
}

.membership-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    color: var(--gray-text);
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    color: var(--gray-text);
}

.savings {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 5px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefits-list li {
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer {
    background: var(--dark-card);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links {
    margin-left: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-link {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    color: var(--gray-text);
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--primary-color);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--gray-text);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--gray-text);
    margin-bottom: 30px;
}

#modalForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#modalForm input,
#modalForm select {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--light-text);
    font-family: 'Exo 2', sans-serif;
}

#modalForm input::placeholder {
    color: var(--gray-text);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: var(--gradient-primary);
        color: var(--dark-bg);
        border: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 20px;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        max-height: 300px;
        padding: 20px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        padding: 15px 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        color: var(--pure-white);
        font-size: 16px;
        padding: 10px;
        text-align: center;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        background: rgba(0, 243, 255, 0.1);
        border-radius: 8px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .membership-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-cards {
        display: none;
    }
    .social-links {
        margin: 20px 0;
    }
}

.transformacion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transformacion-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.transformacion-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 100px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .agenda-card {
        padding: 30px 20px;
    }
    
    .membership-card {
        padding: 30px 20px;
    }
    
    .transformacion-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .transformacion-actions .btn {
        width: 100%;
    }
}

