/* ==========================================
   CAMPEONATO CENTRO GYM - ESTILOS PRINCIPALES
   ========================================== */

/* Variables del Sistema de Diseño */
:root {
    --bg-dark: #07090c;
    --bg-darker: #040507;
    --bg-card: rgba(18, 22, 28, 0.7);
    --neon-green: #39ff14;
    --neon-green-glow: rgba(57, 255, 20, 0.4);
    --neon-green-dark: #1f9d05;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

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

/* Fondos y Efectos Dinámicos */
.lightning-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 30%, rgba(31, 157, 5, 0.15) 0%, rgba(7, 9, 12, 0) 70%);
    z-index: -2;
    pointer-events: none;
    animation: pulse-bg 8s infinite alternate;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse-bg {
    0% { opacity: 0.7; }
    100% { opacity: 1.2; filter: hue-rotate(10deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--neon-green-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* Navegación */
.header {
    background: rgba(4, 5, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.adet-logo {
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: var(--transition-smooth);
}

.adet-logo.white-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.logo-plus {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-gray);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.logo-gym {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 900;
}

.graffiti-gym {
    font-family: 'Permanent Marker', cursive;
    color: var(--neon-green);
    font-size: 28px;
    text-shadow: 0 0 8px var(--neon-green-glow), 0 0 15px var(--neon-green);
    display: inline-block;
    transform: rotate(-3deg) skewX(-5deg);
    margin-left: 2px;
}

.btn-neon-nav {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    background: transparent;
    text-shadow: 0 0 5px var(--neon-green-glow);
    box-shadow: inset 0 0 4px var(--neon-green-glow);
}

.btn-neon-nav:hover {
    background: var(--neon-green);
    color: var(--bg-darker);
    box-shadow: 0 0 15px var(--neon-green);
    text-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-gratuito {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 85px;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.title-top {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.6), 0 0 30px rgba(57, 255, 20, 0.3);
    font-style: italic;
}

.title-bottom {
    color: var(--text-white);
    font-size: 95px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.1);
}

.hero-location-badge {
    background: var(--neon-green);
    color: var(--bg-darker);
    font-weight: 900;
    font-size: 24px;
    font-family: var(--font-heading);
    padding: 5px 25px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 4px;
    transform: skewX(-10deg);
    box-shadow: 0 0 20px var(--neon-green);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 550px;
}

/* Cuenta Regresiva (Countdown) */
.countdown-container {
    background: rgba(18, 22, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 35px;
    width: 100%;
    max-width: 550px;
    backdrop-filter: blur(5px);
}

.countdown-label {
    font-size: 12px;
    color: var(--neon-green);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.time-block span:first-child {
    font-size: 38px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1;
}

.time-block .label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.time-divider {
    font-size: 28px;
    font-weight: 800;
    color: var(--neon-green);
    margin: 0 10px;
    padding-bottom: 15px;
}

/* Botones Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
}

.btn-main {
    flex: 1;
    max-width: 250px;
    text-align: center;
    background: var(--neon-green);
    color: var(--bg-darker);
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.5);
}

.btn-sec {
    flex: 1;
    max-width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-sec:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Media Panda */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panda-glow-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
}

.panda-glow-wrapper::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle, var(--neon-green-glow) 0%, transparent 70%);
    filter: blur(25px);
    z-index: -1;
}

.panda-mascot {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(57, 255, 20, 0.2);
    border: 1px solid rgba(57, 255, 20, 0.25);
    animation: float-panda 4s ease-in-out infinite alternate;
}

@keyframes float-panda {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}

/* Sección Títulos */
.section-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 45px;
    letter-spacing: 2px;
    color: var(--text-white);
    text-align: center;
    line-height: 1;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    margin-top: 15px;
    border-radius: 2px;
}

/* Sección de Detalles / Cards */
.details-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(57, 255, 20, 0.05);
}

.detail-card:hover::before {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Tarjeta Destacada */
.detail-card.highlighted {
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 5px 25px rgba(57, 255, 20, 0.08);
}

.detail-card.highlighted::before {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--neon-green);
    font-size: 24px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.detail-card h3 {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--neon-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.card-main-text {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.1;
}

.card-sub-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.card-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed var(--neon-green);
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.card-link:hover {
    color: var(--neon-green);
    border-color: var(--text-white);
}

.card-badge {
    background: var(--neon-green);
    color: var(--bg-darker);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 5px;
}

.card-hint {
    font-size: 12px;
    color: var(--text-muted);
}

/* Sección de Pilares con Fondo Oscuro del Edificio */
.pillars-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.pillars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

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

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

.section-tagline {
    color: var(--neon-green);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.pillars-title {
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pillars-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar-item {
    background: rgba(4, 5, 7, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--neon-green);
    backdrop-filter: blur(5px);
}

.pillar-item:hover {
    transform: scale(1.02);
    border-color: rgba(57, 255, 20, 0.2);
    border-left-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 15px;
}

.pillar-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.pillar-item p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Sección de Categorías */
.categories-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    backdrop-filter: blur(10px);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.cat-header i {
    font-size: 26px;
    color: var(--neon-green);
}

.cat-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--text-white);
}

.category-box ul {
    list-style: none;
}

.category-box ul li {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-box ul li i {
    color: var(--neon-green);
    font-size: 14px;
}

.category-box.promo {
    background: radial-gradient(circle at 100% 0%, rgba(57, 255, 20, 0.06) 0%, transparent 60%), var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-box.promo p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.box-footer-badge {
    background: var(--neon-green);
    color: var(--bg-darker);
    font-weight: 800;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Sección de Registro / Inscripción */
.register-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.register-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(18, 22, 28, 0.8) 0%, rgba(10, 12, 15, 0.95) 100%);
    border: 1px solid rgba(57, 255, 20, 0.1);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.register-info h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin: 15px 0;
    line-height: 1;
}

.register-info p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 35px;
}

.badge-open {
    background: var(--neon-green);
    color: var(--bg-darker);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hl-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hl-item i {
    font-size: 24px;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    padding: 15px;
    border-radius: 12px;
}

.hl-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.hl-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Card del Formulario */
.register-card {
    background: rgba(4, 5, 7, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap i {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 16px;
}

.input-wrap input,
.input-wrap select {
    width: 100%;
    background: rgba(18, 22, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 14px 15px 14px 45px;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.input-wrap input:focus,
.input-wrap select:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
    background: rgba(18, 22, 28, 1);
}

/* Modificamos el estilo del select para que la flecha y opciones se vean oscuras */
.input-wrap select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-submit {
    background: var(--neon-green);
    color: var(--bg-darker);
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-body);
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-area {
    margin-bottom: 20px;
}

.footer-left p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 320px;
}

.footer-center h3,
.footer-right h3 {
    font-size: 15px;
    letter-spacing: 1.5px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 12px;
}

.contact-list li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.contact-list li a:hover {
    color: var(--neon-green);
}

.footer-right p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 20px;
}

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

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

.social-icons a:hover {
    background: var(--neon-green);
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--neon-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

/* Modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 7, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(57, 255, 20, 0.25);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(57, 255, 20, 0.15);
    animation: scale-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scale-up {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

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

.ticket-header-modal {
    text-align: center;
    margin-bottom: 25px;
}

.ticket-header-modal i {
    font-size: 45px;
    color: var(--neon-green);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.4));
}

.ticket-header-modal h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.ticket-header-modal p {
    font-size: 13px;
    color: var(--text-gray);
}

/* Diseño del Pase / Ticket Digital */
.ticket {
    background: #0f1319;
    border: 2px solid #1a222c;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    margin-bottom: 25px;
}

/* Corte simulado del boleto */
.ticket::before,
.ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 2px solid #1a222c;
    border-radius: 50%;
    z-index: 2;
}

.ticket::before {
    left: -11px;
}

.ticket::after {
    right: -11px;
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #151b23;
    padding: 15px 25px;
    border-bottom: 1px dashed #1a222c;
}

.ticket-badge {
    background: var(--neon-green);
    color: var(--bg-darker);
    font-weight: 800;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 10px;
    letter-spacing: 1px;
}

.ticket-logo {
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ticket-title-section {
    padding: 20px 25px 15px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ticket-title-section h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--neon-green);
    letter-spacing: 1px;
    line-height: 1;
}

.ticket-title-section p {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-body {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-field {
    display: flex;
    flex-direction: column;
}

.ticket-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticket-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.ticket-value.highlight-neon {
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1.5px;
    line-height: 1;
}

.ticket-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 15px;
}

.ticket-footer {
    background: #151b23;
    padding: 15px 25px;
    border-top: 1px dashed #1a222c;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.barcode {
    height: 35px;
    display: flex;
    gap: 2px;
    width: 80%;
    justify-content: center;
}

.barcode span {
    display: block;
    height: 100%;
    background: var(--text-gray);
    width: 2px;
}

/* Espesores variados para el código de barras */
.barcode span:nth-child(3n) { width: 4px; }
.barcode span:nth-child(4n) { width: 1px; }
.barcode span:nth-child(5n) { width: 3px; }

.ticket-disclaimer {
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

/* Botones de Acción del Modal */
.modal-actions {
    display: flex;
    gap: 15px;
}

.btn-action-modal {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-action-modal:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-action-modal.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-action-modal.whatsapp-btn:hover {
    background: #20ba5a;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   DISEÑO RESPONSIVO (Media Queries)
   ========================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 70px;
    }
    .title-bottom {
        font-size: 80px;
    }
    .hero-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .header-title {
        font-size: 12px;
    }
    .hero {
        padding: 40px 20px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-title {
        font-size: 60px;
    }
    .title-bottom {
        font-size: 70px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-media {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }
    .register-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-left p {
        margin: 0 auto;
    }
    .social-icons {
        justify-content: center;
    }
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }
    .title-bottom {
        font-size: 55px;
    }
    .hero-location-badge {
        font-size: 18px;
        padding: 5px 15px;
    }
    .countdown-container {
        padding: 15px 10px;
    }
    .time-block span:first-child {
        font-size: 28px;
    }
    .time-divider {
        font-size: 20px;
        margin: 0 4px;
        padding-bottom: 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-main, .btn-sec {
        max-width: 100%;
        width: 100%;
    }
    .detail-card {
        padding: 30px 20px;
    }
    .register-card {
        padding: 20px;
    }
    .modal-content {
        padding: 20px;
    }
}
