* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #faf8f4;
    color: #ffffff;
}

/* ===== PORTADA ===== */
.hero {
    position: relative;
    height: 60vh; /* ocupa toda la ventana */
    background: url("../portada.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== LOGO ===== */
.logo {
    position: absolute;
    top: 2cm;
    left: 2cm;
    width: 300px;
    z-index: 10; /* asegura que esté encima */
}

/* ===== CUADRO CENTRAL ===== */
.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-content h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

/* ===== CONTENEDOR FORMULARIO ===== */
.container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* ===== FORMULARIO ===== */
form {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

form h2 {
    text-align: center;
    margin-top: 0;
}

/* ===== CAMPOS APILADOS ===== */
label {
    display: flex;
    flex-direction: column; /* uno debajo del otro */
    margin-bottom: 15px;
}

input {
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: none;
}

/* ===== BOTÓN ===== */
button {
    margin-top: 10px;
    padding: 12px;
    background: #ff0080;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #e60073;
}
/* ===== ESTADO DEL PAGO ===== */
.estado {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.estado h2 {
    margin-top: 0;
}

/* Colores por estado (se usarán después) */
.estado.procesando h2 {
    color: #ffcc00;
}

.estado.aprobado h2 {
    color: #00e676;
}

.estado.rechazado h2 {
    color: #ff5252;
}

/* OCULTAR */
.oculto {
    display: none;
}