/* RESET Y GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

/* HEADER Y LOGO */
.header {
    position: absolute;
    top: 15px;
    left: 15px;
}

.logo {
    width: 120px;
}

/* MENÚ */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #004c7a;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

/* CONTENIDO */
.contenido {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.contenido h1 {
    color: #004c7a;
    margin-bottom: 20px;
    text-align: center;
}

.contenido p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

/* IMAGEN CENTRAL */
.imagen-central {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.imagen-central img {
    width: 70%;       /* imagen más grande y proporcionada */
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* BOTÓN COMPRA ONLINE */
.compra {
    text-align: center;
    margin: 20px 0;
}

.btn-compra {
    padding: 15px 35px;
    background-color: #0084c7;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-compra:hover {
    background-color: #006ba1;
}

/* INFO DE PRECIOS */
.info {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    background-color: #e2e6ea;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .contenido {
        padding: 10px;
    }

    .imagen-central img {
        width: 90%;
    }

    .btn-compra {
        font-size: 16px;
        padding: 12px 25px;
    }
}
