body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f3efe6;
    color: #3b3b3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.header {
    background: #e8e1d4;
    text-align: center;
    padding: 30px 0;
}

.header h1 {
    margin: 0;
    font-size: 42px;
    color: #2f4f2f;
}

.hero-header {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 🔥 CLAVE: ya no recorta el logo */
    background-color: #e8e1d4;
}

.hero-overlay {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #2f4f2f;
    background: rgba(255,255,255,0.85);
    padding: 25px 40px;
    border-radius: 10px;
}

.hero-overlay h2 {
    margin: 0;
    font-size: 28px;
}


.hero h2 {
    font-size: 36px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background: #5c7a4f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.two-columns {
    display: flex;
    gap: 40px;
    align-items: center;
}

.two-columns img {
    width: 50%;
    border-radius: 10px;
}

.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.para-ti ul {
    line-height: 2;
    font-size: 18px;
}

footer {
    text-align: center;
    background: #e8e1d4;
    padding: 20px;
    font-size: 14px;
}
.productos {
    background-color: #f7f3ea;
    text-align: center;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.producto-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.producto-card:hover {
    transform: translateY(-8px);
}

.producto-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.producto-card h3 {
    margin: 15px 0 5px;
    color: #2f4f2f;
}

.precio {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* =========================
   RESPONSIVE MÓVIL
=========================*/

@media (max-width: 768px) {

    .container {
        width: 92%;
        padding: 25px 0;
    }

    /* HERO */
    .hero-header {
        height: auto;
    }

    .hero-img {
        height: auto;
        object-fit: contain;
    }

    .hero-overlay {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 20px auto;
        width: 90%;
        padding: 20px;
    }

    .hero-overlay h2 {
        font-size: 20px;
    }

    /* DOS COLUMNAS -> UNA */
    .two-columns {
        flex-direction: column;
        text-align: center;
    }

    .two-columns img {
        width: 100%;
    }

    /* CARDS */
    .cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    /* PRODUCTOS */
    .productos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .producto-card img {
        height: 200px;
    }

    /* TEXTOS */
    h2 {
        font-size: 22px;
    }

    p, li {
        font-size: 16px;
    }

    /* BOTONES */
    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }

}
