/* RESET SOLO PARA ESTA VISTA */
.cortes-section img {
    max-width: 100%;
    display: block;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 40px 20px;
    background-color: #111; /* fallback si la imagen no carga */
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* oscuro para contraste */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.descripcion {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* BOTÓN ABAJO DEL HERO */
.hero-btn-container {
    text-align: center;
    margin: 30px 0;
}

.btn-hero-large {
    display: inline-block;
    background-color: #111; /* negro vacilón */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-hero-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    background-color: gold; /* hover dorado */
    color: #111;
}

/* SECCIÓN CORTES */
.cortes-section {
    padding: 70px 20px;
    background-color: #f2f2f2; /* gris claro de tu página */
    text-align: center;
}

.cortes-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.corte-card {
    width: 440px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.corte-card img {
    width: 640px;
    height: 480px;
    object-fit: cover;
}

.corte-card h3 {
    padding: 15px 10px 5px 10px;
    font-size: 1.1rem;
}

.corte-card p {
    padding: 0 10px 15px 10px;
    font-size: 0.85rem;
    color: #555;
}

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
    .cortes-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .corte-card {
        width: 90%;
    }

    .btn-hero-large {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}
