/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff00ff;
    --secondary-color: #00ffff;
    --accent-color: #ffff00;
    --dark-color: #121212;
    --light-color: #ffffff;
    --gradient-bg: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    --gradient-neon: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    --gold-color: #ffd700;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 24, 0.4);
    z-index: 2;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Encabezado y navegación */
/* Ajuste para alinear los botones de navegación */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 24, 0.85);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

header.scrolled {
    padding: 10px 50px;
    background: rgba(18, 18, 24, 0.95);
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    align-items: center; /* Alinea verticalmente los items */
    height: 100%; /* Asegura que ocupe toda la altura del header */
}

nav ul li {
    margin-left: 20px;
    display: flex;
    align-items: center; /* Centra verticalmente cada item */
}

nav ul li a {
    padding: 8px 15px;
    display: flex;
    align-items: center; /* Centra el texto verticalmente */
    height: 100%;
}

/* Propiedades comunes para botones */
.btn-comprar, .btn-login {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s ease, left 0.3s ease;
}

nav ul li a:hover::after {
    width: 80%;
    left: 10%;
}

.btn-comprar {
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-comprar:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-comprar:hover:before {
    left: 0;
}

.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.8);
}

.btn-login {
    background-color: rgba(255, 0, 255, 0.1);
    color: var(--light-color);
    border: 1px solid var(--primary-color);
}

.btn-login:hover {
    background-color: rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 255, 0.3);
}

.btn-login i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Modal de Login */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    position: relative;
    animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal-content h2 {
    text-align: center;
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.close {
    color: var(--light-color);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary-color);
}

/* Tabs de login/registro */
.login-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--light-color);
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Formularios */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    color: var(--light-color);
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input[type="file"] {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.remember-me, .terms {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"], .terms input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background-color: transparent;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:hover, .terms input[type="checkbox"]:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
}

.remember-me input[type="checkbox"]:checked, .terms input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.remember-me input[type="checkbox"]:checked::after, .terms input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-color);
    font-size: 12px;
    font-weight: bold;
}

.remember-me label, .terms label {
    cursor: pointer;
    color: var(--light-color);
    user-select: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--gradient-bg);
    border: none;
    border-radius: 5px;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.forgot-password {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--primary-color);
}

.terms a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}
/* End Login */
/* Sección Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 800px;
    margin-left: 100px;
}

.hero-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-bg);
    color: var(--light-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

/* Secciones generales */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--light-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-bg);
}

/* Sección de video */
#video {
    background-color: rgba(0, 0, 0, 0.9);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--light-color);
    background: var(--gradient-bg);
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Sección de Características */
#caracteristicas {
    background-color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
}

/* Sección de Galería */
#empresa {
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.gallery-image:hover {
    transform: scale(1.1);
}

/* Sección de Compra */
#comprar {
    background-color: var(--dark-color);
}

.editions-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.edition-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 30px 30px 15px 30px; /* Reduced bottom padding further */
    width: 25%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.edition-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.5);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.edition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
}

.edition-card .final_price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.edition-card ul {
    list-style: none;
    margin-bottom: 15px; /* Reduced bottom margin further */
    text-align: left;
}

.edition-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.edition-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.edition-card .btn-comprar {
    width: auto;
    min-width: 120px;
    max-width: 200px;
    padding: 10px 25px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.edition-card:hover {
    transform: translateY(-10px);
}

.edition-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 50px 0 20px;
    border-top: 1px solid var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
    header {
        padding: 20px;
    }
    
    nav ul {
        display: none;
    }
    
    .hero-content {
        margin-left: 50px;
        max-width: 600px;
    }
    
    .hero-text h2 {
        font-size: 4rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin: 0 20px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .editions-container {
        flex-direction: column;
        align-items: center;
    }
    
    .edition-card {
        width: 100%;
        max-width: 350px;
    }
    
    .edition-card.featured {
        order: -1;
    }
}

/* Estilos para el menú de usuario */
.user-menu {
    position: absolute;
    right: 0;
    top: 120%;
    background: linear-gradient(145deg, #1e1e2a 0%, #252535 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.3s, visibility 0.3s, transform 0.25s cubic-bezier(.4, 2, .3, 1);
    z-index: 1000;
    overflow: hidden;
}

.user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-menu ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.user-menu li {
    display: block;
    margin: 0;
    transition: background 0.2s;
}

.user-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.user-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #f5f5f7;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.user-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 24px;
}

.user-menu li:first-child a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.user-menu li:last-child a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: #ff5555;
    font-weight: 600;
}

.user-menu li:last-child a:hover {
    background: rgba(255, 85, 85, 0.15);
}

.user-menu li a i {
    font-size: 1.3em;
    min-width: 24px;
    text-align: center;
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.user-menu li:last-child a i {
    background: linear-gradient(135deg, #ff5555 0%, #ff8888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Estilos para mensajes de éxito */
.success-message {
    background-color: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
    animation: slideDown 0.4s ease;
}

/* Estilos para el panel de admin */
.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    color: #fff;
    margin-top: 120px;
}

.admin-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.admin-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid rgba(255, 0, 255, 0.5);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Columnas responsivas */
    gap: 1.5rem; /* Aumentar espacio entre tarjetas */
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1); /* Fondo más claro */
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra */
    transition: transform 0.3s ease; /* Animación al pasar el ratón */
}

.stat-card:hover {
    transform: translateY(-5px); /* Efecto hover */
}

.stat-card h3 {
    color: #FFC107; /* Color para los números */
    font-size: 2em;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #B0BEC5; /* Color para el texto descriptivo */
    font-size: 1em;
}

/* Estilos adicionales para formularios de admin */
.admin-section .form-group {
    margin-bottom: 1.5rem;
}

.admin-section .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #B0BEC5;
    font-weight: bold;
    position: static;
    transform: none;
}

.admin-section .form-group input[type="text"],
.admin-section .form-group input[type="email"],
.admin-section .form-group input[type="password"],
.admin-section .form-group input[type="file"],
.admin-section .form-group select,
.admin-section .form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.admin-section .form-group input[type="file"] {
    background: none;
    border: none;
    padding: 0;
}

.admin-section .form-group input:focus,
.admin-section .form-group select:focus,
.admin-section .form-group textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Estilos para tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.05); /* Fondo de tabla */
    border-radius: 10px;
    overflow: hidden; /* Asegurar bordes redondeados */
}

th, td {
    padding: 1rem; /* Aumentar padding */
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separador de filas */
}

th {
    background: rgba(255, 255, 255, 0.1); /* Fondo para cabecera */
    color: #E0E0E0; /* Color de texto cabecera */
    font-weight: bold;
}

tr:last-child td {
    border-bottom: none; /* Eliminar borde en la última fila */
}

/* Estilos para botones dentro de tablas */
td .button {
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    font-size: 0.9em;
    background: var(--gradient-bg);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

td .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 255, 0.3);
}

/* Estilos para mensajes de éxito/error */
.admin-section .success-message,
.admin-section p[style='color: green;'] {
    background: rgba(76, 175, 80, 0.2);
    color: #A5D6A7 !important;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.5);
    animation: slideDown 0.4s ease;
}

.admin-section .error-message,
.admin-section p[style='color: red;'] {
    background: rgba(244, 67, 54, 0.2);
    color: #FFCDD2 !important;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 67, 54, 0.5);
    animation: slideDown 0.4s ease;
}

.table-header {
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.075);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.catalog-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3d3d3d;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffd700;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.final_price-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.original-final_price {
    text-decoration: line-through;
    color: #888;
}

.discount-final_price {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Estilos optimizados para la sección de transformación de negocio */
.business-transformation {
    max-width: min(1000px, 90vw);
    margin: 0 auto;
    padding: clamp(10px, 3vw, 20px) 0;
}

.intro-text {
    text-align: center;
    margin-bottom: clamp(15px, 4vw, 25px);
}

.intro-text h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 50ch;
    margin: 0 auto;
}

.benefits-section {
    margin: clamp(20px, 5vw, 30px) 0;
}

.benefits-section h4 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--gold-color);
    margin-bottom: clamp(15px, 3vw, 25px);
    font-weight: 600;
    line-height: 1.3;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, 3vw, 20px);
    margin-top: clamp(15px, 3vw, 25px);
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    flex: 0 1 calc(33.333% - 15px);
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: clamp(15px, 3vw, 20px) clamp(12px, 2.5vw, 18px);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    will-change: transform;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.benefit-item i {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
    display: block;
}

.benefit-item h5 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--light-color);
    margin-bottom: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
}

.benefit-item-center {
    flex: 0 1 calc(33.333% - 15px);
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: clamp(15px, 3vw, 20px) clamp(12px, 2.5vw, 18px);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    will-change: transform;
}

.benefit-item-center:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.benefit-item-center i {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
    display: block;
}

.benefit-item-center h5 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--light-color);
    margin-bottom: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-item-center p {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
}

.call-to-action {
    text-align: center;
    margin-top: clamp(15px, 5vw, 20px);
    padding: clamp(15px, 3vw, 25px);
    background: rgba(255, 0, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.cta-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--light-color);
    margin-bottom: 0.9375rem;
    line-height: 1.5;
}

.highlight-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.highlight-text strong {
    font-weight: 800;
}

/* Centrar los dos últimos elementos */
@media (min-width: 900px) {
    .benefit-item-center {
        flex: 0 1 calc(40% - 15px);
        margin-top: 20px;
    }
}

/* Optimización para dispositivos con preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .benefit-item-center {
        transition: none;
    }
    
    .benefit-item-center:hover {
        transform: none;
    }

    .benefit-item {
        transition: none;
    }
    
    .benefit-item:hover {
        transform: none;
    }
}

/* Optimización para modo oscuro del sistema */
@media (prefers-color-scheme: dark) {
    .intro-text p {
        color: #f0f0f0;
    }
    
    .benefit-item-center p {
        color: #c0c0c0;
    }
}

/* Estilos para Stripe Elements */
.stripe-elements-container {
    margin: 20px 0;
}

.stripe-card-element {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.stripe-card-element:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #dc3545;
}

.stripe-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Estilos para hCaptcha */
.h-captcha {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

/* Responsive para hCaptcha */
@media (max-width: 480px) {
    .h-captcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* Animaciones para mensajes de error */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.error-message {
    transition: all 0.4s ease;
}

/* Estilos para botones en estado de carga */
button[type="submit"]:disabled,
.btn-submit:disabled,
#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

button[type="submit"]:disabled::after,
.btn-submit:disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

