* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #fff9f4;
    color: #333;
}

/* HEADER */
header {
    background: #000000;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    font-size: 1.6rem;
    font-weight: bold;
}

header ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

header ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 195, 160, 0.6)), 
                url('imagenes/portada.jpeg') center/cover no-repeat;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.btn {
    background: #25D366;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    display: inline-block;
    margin-top: 15px;
}

/* SECTIONS */
.section {
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    color: #000000;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 250px;
    padding: 15px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 15px;
}

/* GALERÍA */
.gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    border-radius: 15px;
}

/* FORMULARIO */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

form input, form textarea, form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

form button {
    background: #ff8fab;
    color: white;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #ff5d8f;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}
.sabores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    text-align: center;
    font-weight: bold;
}
.sabores p {
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .cards, .gallery {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
.logo img {
    height: 70px; /* alto del logo */
    width: auto;  /* mantiene proporción */
}

.btn-messenger {
    display: inline-block;
    background: #0084FF;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}
.btn-messenger:hover {
    background: #006fd6;
}
