/* css/registro.css */

:root { 
    --gold: #d4af37; 
    --dark: #0a0a0a; 
    --card: #1a1a1a; 
    --gray: #888;
    --success: #25d366;
    --yape: #7d2181;
}

body { 
    font-family: 'Poppins', sans-serif; 
    background: var(--dark); 
    color: white; 
    margin: 0; 
    line-height: 1.6;
}

.navbar {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 5%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.register-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
}

.register-card {
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    box-sizing: border-box;
    text-align: center;
}

.register-card h1 {
    font-family: 'Bebas Neue', cursive;
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.payment-info {
    background: rgba(125, 33, 129, 0.1);
    border: 1px solid var(--yape);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.yape-badge {
    background: var(--yape);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.yape-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.form-group { 
    margin-bottom: 18px; 
    text-align: left; 
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ccc;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Caja de Totalizador */
.total-box {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--success);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label { color: white; font-weight: 600; font-size: 0.9rem; }
.total-amount { color: var(--success); font-size: 1.5rem; font-weight: 700; }

/* Estilos para el selector +/- */
.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-qty {
    background: #333;
    color: white;
    border: 1px solid var(--gold);
    border-radius: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.2s;
}

.btn-qty:hover { background: var(--gold); color: black; }

.btn-register {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 16px;
    background: var(--gold);
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    margin: 25px 0 0 0;
    clear: both;
}

.btn-register:hover {
    background: #b8962d;
    transform: scale(1.01);
}

#resultado { text-align: center; display: none; }
.success-icon { font-size: 4rem; color: var(--success); margin-bottom: 15px; }