.imagenes-inicio {
    display: block;
    position: relative;
    height: clamp(320px, 55vh, 520px);
    overflow: hidden;
}

.secuencia {
    position: relative;
    width: 100%;
    height: 100%;
}

.deslizado {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.deslizado.activado {
    opacity: 1;
}

.intro-inicio {
    padding: 1.563rem 1.25rem 0.5rem;
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
}

.intro-inicio h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-top: 0;
    margin-bottom: 0.313rem;
}

.decoracion {
    width: 3.75rem;
    height: 2px;
    background: #77482a;
    margin: 1rem auto 1rem;
}

.intro-inicio p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.563rem;
}

.boton {
    display: inline-block;
    padding: 0.75rem 1.563rem;
    background: #77482a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

.boton:hover {
    background: #945a35;
}

.destacados {
    padding: 2.5rem 1.25rem;
    display: grid;
    gap: 1.25rem;
}

.tarjeta {
    background: white;
    padding: 1.563rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.tarjeta h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .imagenes-inicio {
        height: clamp(260px, 45vh, 360px);
    }
}

@media (min-width: 768px) {
    .destacados {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .deslizado {
        object-fit: contain;
        background: #f7f5f0;
    }

    .destacados {
        grid-template-columns: repeat(4, 1fr);
    }
}
