@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* variables del sistema de diseño */
:root {
    --bg-gradient: linear-gradient(135deg, #1b052b 0%, #0a0110 50%, #150222 100%);
    --bg-darker: #07000b;
    --primary-gold: #d4af37;
    --gold-hover: #f3cf65;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --accent-purple: #9d4edd;
    --text-white: #ffffff;
    --text-muted: #d0c2d8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.12);
    --glass-border-hover: rgba(212, 175, 55, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar personalizada premium */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Header */
header {
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 1, 16, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 15px 5%;
    background: rgba(7, 0, 11, 0.9);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff 30%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b38f2d 100%);
    color: var(--bg-darker) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Botón menú móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    padding: 140px 5% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary-gold);
    display: block;
    font-style: italic;
    font-weight: 400;
}

.hero-text {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b38f2d 100%);
    color: var(--bg-darker);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px var(--gold-glow);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.hero-media {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    max-width: 420px;
    background: var(--bg-darker);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
}

.hero-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Efecto de marco dorado flotante detrás de la imagen */
.hero-media::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 420px;
    border: 2px solid var(--primary-gold);
    border-radius: 24px;
    top: 25px;
    left: 25px;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-media:hover::after {
    top: 15px;
    left: 15px;
    opacity: 0.7;
}

/* Sección de Contenedor General */
.section {
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-title span {
    color: var(--primary-gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Sección del Evento */
.event-section {
    background: radial-gradient(circle at 80% 20%, rgba(157, 78, 221, 0.08) 0%, rgba(0,0,0,0) 60%);
}

.event-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.event-details-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.event-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-gold), var(--accent-purple));
    border-radius: 24px 24px 0 0;
}

.event-highlight {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-info-list {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.event-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.event-info-text h4 {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.event-info-text p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

/* Contador Regresivo */
.countdown-wrapper {
    margin-top: 30px;
}

.countdown-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.countdown-grid {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    border-radius: 16px;
    flex: 1;
    text-align: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.countdown-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.countdown-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-body);
}

.countdown-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

/* Tarjeta del Formulario de Registro */
.event-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.event-form-card:hover {
    border-color: var(--glass-border-hover);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.seats-badge {
    display: inline-block;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    animation: pulseGlow 2s infinite;
}

.seats-badge.full {
    background: rgba(108, 117, 125, 0.15);
    border-color: rgba(108, 117, 125, 0.3);
    color: #adb5bd;
    animation: none;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px var(--gold-glow);
}

textarea.form-input {
    resize: none;
    min-height: 90px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

/* Alertas del Formulario */
.form-alert {
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid;
    animation: fadeIn 0.4s ease;
}

.form-alert.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.3);
    display: block;
}

.form-alert.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Catálogo de Productos */
.products-section {
    background: radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 60%);
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-gold);
    color: var(--bg-darker);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}

.product-media {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-5px);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 1, 16, 0.85);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
}

.btn-product-cta {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-product-cta i {
    color: #25d366;
}

.btn-product-cta:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
    transform: translateY(-2px);
}

/* Sección de Emprendimiento */
.business-section {
    background: radial-gradient(circle at right center, rgba(157, 78, 221, 0.05) 0%, rgba(0,0,0,0) 65%);
}

.business-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-premium);
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.business-wrapper::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.business-content {
    flex: 1.2;
}

.business-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.business-content h3 span {
    color: var(--primary-gold);
}

.business-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.business-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--primary-gold);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.business-media {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.business-glow-card {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(157, 78, 221, 0.08) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    gap: 20px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.business-glow-card i {
    font-size: 54px;
    color: var(--primary-gold);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.business-glow-card h4 {
    font-size: 22px;
    font-weight: 700;
}

.business-glow-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Footer */
footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 400px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--bg-darker);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

/* BOTÓN DE WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    text-decoration: none;
    z-index: 9999;
    transition: var(--transition-smooth);
    animation: floatButton 3s ease-in-out infinite, pulseGreen 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(10, 1, 16, 0.95);
    border: 1px solid var(--primary-gold);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGreen {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   ESTILOS DEL PANEL DE ADMINISTRACIÓN (ADMIN.PHP)
   ========================================================================== */
.admin-body {
    background: #09020f;
    min-height: 100vh;
}

.admin-header {
    background: rgba(15, 3, 26, 0.9);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    text-decoration: none;
}

.admin-logo h2 {
    font-size: 20px;
    font-weight: 700;
}

.admin-logo span {
    color: var(--primary-gold);
    font-size: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.admin-user-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-logout {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-logout:hover {
    background: #dc3545;
    color: var(--text-white);
    border-color: #dc3545;
}

.admin-container {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjeta Login */
.login-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px;
    max-width: 450px;
    margin: 100px auto;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(15px);
}

.login-card h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 10px;
}

.login-card p {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Grilla Dashboard Admin */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.admin-dashboard-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

/* Tarjetas Administrativas */
.admin-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.admin-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

/* Tabla de Registros */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
    padding: 15px;
    font-size: 14.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Status badges */
.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pill.pendiente {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-pill.confirmado {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-pill.cancelado {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Acciones en tabla */
.table-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
    color: var(--text-white);
}

.btn-action.confirm {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.btn-action.confirm:hover {
    background: #28a745;
    color: var(--text-white);
}

.btn-action.cancel {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.btn-action.cancel:hover {
    background: #dc3545;
    color: var(--text-white);
}

.btn-action.wa {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-decoration: none;
}

.btn-action.wa:hover {
    background: #25d366;
    color: var(--text-white);
}

/* Formularios de edición en Admin */
.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Catálogo de Edición de Productos (Admin) */
.admin-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-product-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.admin-product-item:hover {
    border-color: var(--primary-gold);
}

.admin-prod-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
}

.admin-prod-info p {
    font-size: 12.5px;
    color: var(--text-muted);
}

.admin-prod-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 14.5px;
}

/* ==========================================================================
   DISEÑO RESPONSIVO (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .business-wrapper {
        flex-direction: column;
        padding: 40px;
    }
    
    .business-media {
        width: 100%;
    }
    
    .admin-dashboard-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 1, 16, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column-reverse;
        padding-top: 120px;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-media::after {
        display: none;
    }
    
    .section {
        padding: 60px 5%;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .event-details-card, .event-form-card {
        padding: 30px 20px;
    }
    
    .countdown-grid {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 45%;
    }
    
    .business-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
