/* RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* CONTENEDOR */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* HEADER */
header {
    background: #004080;
    color: white;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* LOGO */
.logo {
    height: 50px;
}

/* HERO */
.hero {
    position: relative;
    z-index: 1;
}

.hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-text h2 {
    font-size: 32px;
    margin: 0;
}

.hero-text p {
    font-size: 18px;
    margin: 5px 0;
}

/* PAGO */
.pago-box {
    text-align: center;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.pago-box button {
    background: #004080;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* GALERIA */
.imagenes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.imagenes img {
    width: 300px;
    border-radius: 10px;
}

/* BOTONES GENERALES */
button {
    background: #004080;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* BOTONES OPCIÓN */
.opcion-btn {
    background: #ccc;
    color: black;
}

.opcion-btn.activo {
    background: #007BFF;
    color: white;
}

/* INPUTS */
input {
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

/* CONTENIDO MODAL */
.modal-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 320px;
    border-radius: 10px;
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* FORM ELEMENTS */
input, button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {

    .hero-text {
        left: 10px;
        right: 10px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 14px;
    }

}
