/* ----------------------------- */
/* PÁGINA BIENVENIDOS (elementor-18) */
/* ----------------------------- */

/* Hero Section con efecto de video (simulado con imagen/video) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('https://web.archive.org/web/20230401113323im_/https://budilafkenmapu.cl/wp-content/uploads/2022/08/Budilafken-Mapu-web-2022-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Sección Servicios (3 columnas) */
.servicios-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.servicio-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.servicio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.servicio-item i {
    font-size: 3rem;
    color: #4DB7B3;
    margin-bottom: 20px;
}

.servicio-item h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
}

.servicio-item p {
    color: #666;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 2px;
    background: #4DB7B3;
    margin: 0 auto;
}

/* Sección Tours */
.tours-section {
    padding: 80px 20px;
    background: #4DB7B3;
    color: #fff;
    text-align: center;
}

.tours-section h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tours-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #4DB7B3;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e67e22;
    color: #fff;
    transform: scale(1.05);
}

/* Sección Tienda + Carrusel */
.tienda-info-section {
    padding: 80px 20px;
    background: #fff;
}

.tienda-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.tienda-carousel {
    flex: 1;
    min-width: 300px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slides img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 350px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #4DB7B3;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.tienda-texto {
    flex: 1;
}

.tienda-texto h2 {
    font-size: 2rem;
    color: #4DB7B3;
    margin-bottom: 20px;
}

.tienda-texto p {
    color: #555;
    line-height: 1.6;
}

/* Imagen destacada */
.imagen-destacada-section {
    width: 100%;
}

.imagen-destacada-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sección Contacto + Mapa */
.contacto-mapa-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.contacto-mapa-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-info {
    flex: 1;
    text-align: center;
}

.contacto-info h3 {
    font-size: 1.8rem;
    color: #4DB7B3;
    margin-bottom: 20px;
}

.contacto-info h4 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #333;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #4DB7B3;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

.mapa {
    flex: 1;
    min-width: 300px;
}

.mapa iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 850px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .servicios-grid {
        flex-direction: column;
        align-items: center;
    }
    .servicio-item {
        width: 100%;
        max-width: 350px;
    }
    .tienda-grid {
        flex-direction: column;
    }
    .contacto-mapa-grid {
        flex-direction: column;
    }
}

@media (max-width: 550px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .tours-section h2 {
        font-size: 1.8rem;
    }
    .tienda-texto h2 {
        font-size: 1.5rem;
    }
}