/* Mejora de visibilidad para el texto en los slides */
.slide-content-inner {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.slide-content h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.hero-subtitle {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 400;
}

/* Ajuste de la superposición en los slides */
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Centrar texto principal después del header */
.text-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.text-block p {
    text-align: center;
}

/* Mejoras para la galería */
.gallery-section {
    margin: 60px 0;
}

.gallery-carousel {
    position: relative;
    padding-bottom: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.gallery-button-prev, 
.gallery-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-pagination {
    bottom: 10px !important;
}

/* Mejoras para cards en carousels */
.card-content {
    padding: 20px;
    text-align: center;
}

.card-btn {
    display: block;
    margin: 20px auto 30px;
    width: max-content;
    padding: 10px 25px;
    background-color: #9B9475;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background-color: #847057;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: white;
    height: 100%;
    margin-bottom: 35px;
}

.experience-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #9B9475 !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: #9B9475 !important;
}

/* Hero slider responsive */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slide-content-inner {
        padding: 15px;
        max-width: 90%;
    }
    
    .text-block {
        padding: 0 15px;
    }
    
    .experience-card {
        margin-bottom: 40px;
    }
} 