/* ==================== */
/*      HERO SLIDER     */
/* ==================== */
.hero-slider {
    width: 100%;
    height: 400px; /* Altura del carrusel */
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Capa oscura para que el texto blanco se lea bien */
.slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 2rem;
    margin: 10px 0 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 400;
}

.slide-content h2 a {
    color: white;
    text-decoration: none;
}

.slide-cat {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    background: #947e1e;
    padding: 5px 10px;
    border-radius: 4px;
}

.btn-slide {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    margin-top: 15px;
}

.btn-slide:hover {
    background: white;
    color: #333;
}

/* Ajustes Swiper (Flechas y Puntos) */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
}
.swiper-pagination-bullet-active {
    background: #947e1e !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 350px; }
    .slide-content h2 { font-size: 1.5rem; }
}