/* ================================
   BANNER
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}
.banner {
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
    height: 60vh; /* 🔥 Banner más grande */
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.5);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-content h1 {
    font-size: 40px;
    margin: 0;
    text-shadow: 0 0 10px black;
}

.banner-content p {
    font-size: 20px;
    margin: 10px 0 20px;
}


/* ================================
   MENÚ PRINCIPAL
================================ */
.menu {
    background: #d81b60;
    padding: 18px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffeb3b;
}


/* ================================
   TÍTULOS GENERALES
================================ */
.titulo {
    text-align: center;
    font-size: 30px;
    margin-top: 30px;
    color: #d81b60;
    text-shadow: 0 0 6px white;
}


/* ================================
   GRID DE PRODUCTOS
================================ */
.grid {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


/* ================================
   CONTACTO
================================ */
.info-contacto {
    background: #bb246d;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 30px auto;
    text-align: center;
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 20px;
    margin: 15px auto;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.info-item:hover {
    transform: scale(1.05);
}

.info-item h3 {
    color: #d81b60;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}


/* ================================
   FOOTER
================================ */
footer {
    background: #d81b60;
    color: white;
    text-align: center;
    padding: 18px;
    margin-top: 20px;
    font-size: 18px;
}
