/*=====================================================
        RESPONSIVE PREMIUM INDEX
=====================================================*/
@media (max-width:768px){

/*------------------------------
SECCIONES
------------------------------*/

section{
    padding:55px 18px;
}

/*------------------------------
ORIGEN
------------------------------*/

#why-us{
    padding-top:45px;
    padding-bottom:50px;
}

.content{
    text-align:left;
}

.content h3{
    font-size:2rem;
    margin-bottom:18px;
}

.content p{
    font-size:17px;
    line-height:1.8;
}

.stats-row{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

    margin-top:35px;

}

.stat-item span{

    font-size:3rem;

}

.stat-label{

    font-size:17px;

}

.about-image{

    margin-top:35px;

}

.about-image img{

    width:100%;

    border-radius:22px;

}

/*------------------------------
TÍTULOS
------------------------------*/

.section-title span,
.noticias-header h3,
.cta-info h2{

    font-size:2.2rem !important;

    line-height:1.15;

}

.section-title h5{

    font-size:18px;

    line-height:1.8;

    margin-top:15px;

}

/*------------------------------
TARJETAS CULTURA
------------------------------*/

.featured-tours .row{

    row-gap:28px;

}

.tour-card{

    border-radius:22px;

    overflow:hidden;

    margin-bottom:0;

}

.tour-image{

    height:250px;

}

.tour-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.tour-title{

    font-size:17px;

}

.tour-content{

    padding:22px;

}

.tour-content h4{

    font-size:20px;

    line-height:1.4;

}

.tour-content p{

    font-size:15px;

    line-height:1.8;

}

/*------------------------------
CTA
------------------------------*/

.cta-premium{

    padding:55px 18px;

}

.cta-grid{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.cta-info{

    width:100%;

}

.cta-info h2{

    font-size:2.5rem;

}

.cta-info p{

    font-size:17px;

}

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.btn-gold,
.btn-outline-white{

    width:100%;

    min-width:100%;

    height:62px;

    font-size:17px;

}

.cta-image{

    width:100%;

    height:380px;

}

.cta-overlay{

    padding:30px;

}

.cta-span{

    font-size:20px;

}

.cta-overlay h3{

    font-size:25px;

}

/*------------------------------
NOTICIAS
------------------------------*/

#noticias{

    padding-top:60px;

}

.noticias-header h3{

    margin-bottom:12px;

}

.noticias-header p{

    font-size:17px;

    line-height:1.8;

}

/* Ocultar flechas */

.swiper-button-next,
.swiper-button-prev{

    display:none !important;

}

/* Mostrar solo puntos */

.swiper-pagination{

    position:relative;

    margin-top:22px;

}

.noticia-card{

    border-radius:22px;

}

.noticia-img{

    height:230px;

}

.noticia-body{

    padding:22px;

}

.noticia-body h4{

    font-size:23px;

}

.noticia-body p{

    font-size:15px;

}

.noticia-btn{

    width:100%;

    justify-content:center;

}

/*------------------------------
BOTÓN GALERÍA
------------------------------*/

.btn-view-all{

    width:100%;

}

/*------------------------------
ESPACIOS
------------------------------*/

.mb-5{

    margin-bottom:2rem !important;

}

.mt-5{

    margin-top:2rem !important;

}

}

/* ARREGLAR SWIPER */

.noticiasSwiper{
    overflow: hidden !important;
}

.noticiasSwiper .swiper-wrapper{
    align-items: stretch;
}

.noticiasSwiper .swiper-slide{
    display: flex;
    height: auto;
}

.noticiasSwiper *{
    box-sizing: border-box;
}


/*=========================================
    RESPONSIVE - TÍTULO NOTICIAS
=========================================*/

@media (max-width:768px){

.section-title{

    max-width:100%;
    padding:0 20px;
    margin:0 auto 45px;
    text-align:center;

}

.section-title span{

    display:inline-block;

    font-size:12px !important;

    letter-spacing:1.5px;

    padding:10px 20px;

    border-radius:30px;

}

.section-title h2{

    margin-top:16px !important;

    font-size:2.1rem;

    line-height:1.2;

}

.section-title p{

    margin-top:15px;

    font-size:16px;

    line-height:1.7;

    padding:0 8px;

}

}
/*====================================
        BUSCADOR MÓVIL
====================================*/

@media (max-width:992px){

#main-nav .buscador-box{

    position:relative;

    display:flex;
    align-items:center;

    width:90%;

    margin:50px auto 3px; /* ← aquí lo bajas */

    padding:0;

}

#main-nav .buscador-box input{

    width:100%;
    height:48px;

    padding:0 18px 0 45px;

    border:none;
    outline:none;

    border-radius:30px;

    background:#f4f6f8;

    color:#243746;

    font-size:15px;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

}

#main-nav .buscador-box input::placeholder{

    color:#9aa6b2;

}

#main-nav .buscador-box i{

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:#6d7b88;

    font-size:16px;

}

#main-nav .resultados{

    position:absolute;

    top:56px;
    left:0;
    right:0;

    border-radius:18px;

    overflow:hidden;

    z-index:9999;

}

}

/* Ocultar buscador móvil en escritorio */
.buscador-movil{
    display:none;
}

/* Mostrar buscador de escritorio */
.buscador-pc{
    display:block;
}

/* ===========================
   MÓVIL
=========================== */

@media (max-width:992px){

    /* Mostrar buscador del menú */
    .buscador-movil{
        display:block;
    }

    /* Ocultar buscador del header */
    .buscador-pc{
        display:none;
    }

}