/* Fuentes */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
     display: flex;
    flex-direction: column;
    min-height: 100vh; /* altura mínima de 100% de la ventana */
}
.main-content {
    flex: 1; /* ocupa todo el espacio disponible antes del footer */

}
footer {
    margin-top: auto; /* fuerza al footer a ir al final */
    width: 100%;
}

.hero-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.4;
}

/* Hover Cards */
.hover-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 450px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.hover-card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(46, 99%, 39%, 0.92);
    color: #000;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.hover-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

/* Productos */
.product-img {
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-body h5 {
    font-weight: 600;
}

/* Botones */
.btn-warning {
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: hsla(46, 99%, 39%, 0.92);
    color: #000;
}

/* Redes sociales */
.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em 0; /* ← esta es la forma correcta */
    display: flex;
    flex-direction: column;
    gap: 1em;
}


/* Slogan */
.slogan-container {
    position: absolute;
    bottom: 15px;
    left: 900px;
    background-color: rgba(0,0,0,0.6);
    /* padding: 0px 15px; */
    border-radius: 8px;
    font-size: 1rem;
    font-style: italic;
    max-width: 550px;
    color: hsla(46, 99%, 39%, 0.92);
    font-family: 'Playfair Display', serif;
    text-align: right;
}

/* Responsividad */
@media (max-width: 767px) {
    .slogan-container { position: static; margin-top: 20px; text-align: center; max-width: 100%; font-size: 0.9rem; }
    .hero-section-wrapper { height: auto !important; padding-bottom: 20px; }
    .hero-logo-col { height: auto !important; }
    .hero-empty-col { display: none; }
    .social-icon { width: 50px; height: 50px; }
    .social-icon img { width: 30px; height: 30px; }
}

/* Tarjeta producto hover */
.product-card { overflow: hidden; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: scale(1.05); box-shadow: 0 15px 25px rgba(0,0,0,0.3); }
