body { font-family: 'Arial', sans-serif; background-color: #f4f6f8; margin: 0; padding: 0; padding-top: 70px; /* Espacio para el menú fijo */ }

/* MENU DE NAVEGACION (Nuevo) */
.navbar { 
    background: #0056b3; 
    color: white; 
    padding: 0 20px; 
    height: 60px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
.logo { font-size: 1.2em; font-weight: bold; display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.nav-links li a { color: white; text-decoration: none; font-size: 0.9em; font-weight: bold; text-transform: uppercase; transition: 0.3s; }
.nav-links li a:hover { color: #ffd700; text-decoration: underline; }

/* Ajuste para móviles (responsive básico) */
@media (max-width: 768px) {
    .nav-links { display: none; } /* En celular ocultamos enlaces para no saturar, o se puede hacer menú hamburguesa luego */
    .logo { margin: 0 auto; }
}

.container { max-width: 900px; margin: 0 auto; padding: 20px; }

/* SECCIONES NUEVAS */
.section-box { background: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); text-align: center; }
.section-title { color: #333; margin-top: 0; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-bottom: 15px; text-transform: uppercase; }

/* Iconos de pago */
.payment-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 15px; }
.pay-icon { background: #f9f9f9; padding: 10px 20px; border: 1px solid #ddd; border-radius: 5px; font-weight: bold; color: #555; }

/* Modal y estilos anteriores (Mantenemos todo lo que ya funcionaba) */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; width: 90%; max-width: 500px; border-radius: 10px; position: relative; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; position: absolute; right: 15px; top: 5px; }
.modal-header-box { border: 1px solid #0056b3; border-radius: 10px; padding: 10px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.modal-select { flex-grow: 1; padding: 8px; border: 1px solid #ccc; border-radius: 5px; font-size: 1em; font-weight: bold; color: #333; }
.generate-zone { border: 2px solid #0056b3; border-radius: 10px; padding: 40px 20px; cursor: pointer; transition: 0.3s; background: white; color: #333; font-weight: bold; text-transform: uppercase; font-size: 1.1em; }
.generate-zone:hover { background-color: #e6f0ff; transform: scale(1.02); }

/* Grid y Botones */
.big-header { background-color: #111; color: white; padding: 15px; text-align: center; font-size: 1.5em; font-weight: bold; text-transform: uppercase; margin-bottom: 20px; position: relative; }
.big-header::after { content: "▼"; display: block; color: white; font-size: 0.8em; margin-top: 5px; }
.label-red { color: red; font-weight: bold; text-align: center; margin: 15px 0 5px 0; font-size: 0.9em; text-transform: uppercase; }
.btn-maquinita { background: #e0e0e0; border: 1px solid #999; color: #333; padding: 10px 30px; font-weight: bold; cursor: pointer; display: block; margin: 0 auto; width: fit-content; text-transform: uppercase; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.search-bar-container { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; gap: 0; }
.search-select { padding: 10px; border: 1px solid #0056b3; color: #333; background: white; border-right: none; border-radius: 5px 0 0 5px; font-weight: bold; }
.search-input { padding: 10px; border: 1px solid #0056b3; width: 200px; text-align: center; font-size: 1.1em; border-radius: 0; }
.search-btn { padding: 10px 30px; border: 1px solid #0056b3; background: #b0c4de; color: white; font-weight: bold; cursor: pointer; border-left: none; border-radius: 0 5px 5px 0; text-transform: uppercase; }

.grid-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-top: 20px; }
.num-box { border: 1px solid #0056b3; background: white; color: #002a80; font-size: 14px; width: 60px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-family: monospace; font-weight: bold; border-radius: 3px; }
.num-box:hover { background-color: #e6f0ff; transform: scale(1.1); }
.legend { text-align: center; margin: 10px; font-size: 0.9em; }
.square { display: inline-block; width: 15px; height: 15px; border: 1px solid #0056b3; vertical-align: middle; margin-right: 5px; }

.hero { text-align: center; background: white; padding: 20px; margin-bottom: 20px; border-radius: 10px; }
.hero h1 { color: #d32f2f; margin: 0; }
.price-list { background: #222; color: white; padding: 20px; border-radius: 5px; margin-bottom: 20px; text-align: center; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; text-align: left; font-size: 0.9em; }
.price-highlight { color: #ffd700; font-weight: bold; }
.result { margin: 20px auto; padding: 15px; text-align: center; max-width: 500px; }
.disponible { background: #d4edda; border: 1px solid green; color: green; }
.ocupado { background: #f8d7da; border: 1px solid red; color: red; }
.btn-whatsapp { background: #25D366; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; display: inline-block; margin-top: 15px; font-weight: bold; }

/* ESTILOS PARA PAGINA METODOS DE PAGO */
.pay-header { text-align: center; margin-bottom: 30px; }
.pay-header h2 { color: #0056b3; font-size: 2em; margin-bottom: 10px; }
.pay-header p { color: #666; font-size: 1.1em; }

.bank-card { 
    background: linear-gradient(135deg, #0056b3 0%, #003366 100%); 
    color: white; 
    border-radius: 15px; 
    padding: 25px; 
    max-width: 400px; 
    margin: 0 auto 30px auto; 
    box-shadow: 0 10px 20px rgba(0,86,179,0.3); 
    text-align: left;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: "💳";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 50px;
    opacity: 0.2;
}

.bank-label { font-size: 0.8em; text-transform: uppercase; opacity: 0.8; margin-bottom: 5px; display: block; }
.bank-number { font-size: 1.6em; font-family: monospace; letter-spacing: 2px; font-weight: bold; margin-bottom: 20px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.bank-name { font-size: 1.2em; font-weight: bold; }

.store-card {
    background: white;
    border: 1px solid #ddd;
    border-left: 5px solid #ffc107; /* Amarillo OXXO */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.store-icon { font-size: 2em; margin-right: 15px; }
.store-info h4 { margin: 0 0 5px 0; color: #333; }
.store-info p { margin: 0; color: #666; font-size: 0.9em; }

.report-btn {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 30px;
    transition: 0.3s;
}
.report-btn:hover { background-color: #1ebc57; transform: translateY(-2px); }

/* ESTILOS PARA PAGINA NOSOTROS */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
.about-card { background: white; padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 4px solid #0056b3; }
.about-card:hover { transform: translateY(-5px); }
.about-icon { font-size: 3em; margin-bottom: 15px; display: block; }
.about-title { font-size: 1.5em; font-weight: bold; color: #333; margin-bottom: 15px; }
.about-text { color: #666; line-height: 1.6; }

.policy-box { background: #fff0f0; border: 1px solid #ffcaca; border-left: 5px solid #d32f2f; padding: 25px; border-radius: 5px; margin-top: 30px; }
.policy-title { color: #d32f2f; font-weight: bold; font-size: 1.3em; margin-bottom: 15px; display: flex; align-items: center; }

/* BOTÓN COPIAR */
.copy-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.6em; /* Pequeño para que quepa */
    cursor: pointer;
    margin-left: 10px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
}
.copy-btn:hover {
    background-color: white;
    color: #0056b3;
}
/* Estilo especial para la sección OXXO (que tiene fondo blanco) */
.store-copy-btn {
    background-color: #eee;
    border: 1px solid #ccc;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7em;
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
}
.store-copy-btn:hover {
    background-color: #ddd;
}

/* ESTILOS DE SELECCIÓN MÚLTIPLE */
.num-box.seleccionado {
    background-color: #ff9800 !important; /* Naranja */
    color: white !important;
    border-color: #e65100 !important;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

/* BARRA FLOTANTE DE COMPRA */
.floating-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    transform: translateY(100%); /* Oculto por defecto */
    transition: transform 0.3s ease-out;
    box-sizing: border-box;
}
.floating-cart.visible { transform: translateY(0); }
.cart-info { font-size: 1.1em; font-weight: bold; }
.cart-btn {
    background: #25D366; /* Verde WhatsApp */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
}

/* FORMULARIO MODAL DATOS */
.form-group { text-align: left; margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; }
.form-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }
.modal-title { font-size: 1.5em; color: #0056b3; margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
