/* =====================================================
   HEADER
===================================================== */


.btn-contact-header {
    background: #EF4508;
    color: #fff !important;

    padding: 14px 30px;
    border-radius: 8px;

    font-weight: 600;
    text-decoration: none;

    transition: .3s ease;
}

.btn-contact-header:hover {
    background: #d63d05;
    color: #fff !important;
}

/* =====================================================
   HERO SLIDER
===================================================== */

/* =====================================================
   TITULOS HERO
===================================================== */

.slide_typo {

    width: 100% !important;

    text-align: center !important;

    color: #fff !important;

    font-size: 70px !important;

    font-weight: 300 !important;

    letter-spacing: 1px;

    z-index: 10 !important;
}

.slide_typo strong {
    font-weight: 700;
}


/* =====================================================
   BOTON HERO
===================================================== */

.btn_1.rounded {

    background: #EF4508 !important;

    border: none !important;

    color: #fff !important;

    border-radius: 40px !important;

    padding: 18px 45px !important;

    font-size: 18px !important;

    font-weight: 600 !important;

    text-transform: none;

    transition: .3s ease;
}

.btn_1.rounded:hover {

    background: #d63d05 !important;

    transform: translateY(-3px);

    color: #fff !important;
}

/* =====================================================
   REDES SOCIALES CENTRADAS
===================================================== */

.social-bar {

    position: absolute;

    bottom: 190px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    z-index: 999;
}

.social-bar a {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    transition: .3s ease;

    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.social-bar a img {

    width: 28px;

    height: 28px;

    object-fit: contain;
}

.social-bar a:hover {

    transform: translateY(-6px);

    box-shadow: 0 10px 20px rgba(0,0,0,.25);
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .slide_typo{
        font-size:48px !important;
    }

    .slide_typo_2{
        font-size:22px !important;
    }

    .social-bar{
        bottom:200px;
    }

}

@media(max-width:768px){

    #layerslider{
        height:100vh !important;
    }

    .slide_typo{
        font-size:36px !important;
        line-height:1.2;
    }

    .slide_typo_2{
        font-size:18px !important;
    }

    .btn_1.rounded{

        padding:14px 28px !important;

        font-size:16px !important;
    }

    .social-bar{

        gap:10px;

        flex-wrap:wrap;

        width:90%;
    }

    .social-bar a{

        width:45px;
        height:45px;
    }

    .social-bar a img{

        width:24px;
        height:24px;
    }

}

@media(max-width:576px){

    .slide_typo{
        font-size:30px !important;
    }

    .slide_typo_2{
        font-size:16px !important;
    }

}

/*seccion tours*/
.guided-tours{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-title h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* ==========================
   GRID
========================== */

.tour-grid{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:grid;

    gap:15px;

    grid-template-columns:
    repeat(3,1fr);

    grid-auto-rows:280px;
}

/* ==========================
   CARD
========================== */

.tour-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    text-decoration:none;

    color:#fff;

    display:block;
}

.tour-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.tour-card:hover img{

    transform:scale(1.05);
}

/* ==========================
   TAMAÑOS
========================== */

.large{
    grid-column:span 2;
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

/* ==========================
   OVERLAY
========================== */

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15)
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;
}

.overlay h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:10px;

    color:#fff;
}

.overlay span{

    font-size:18px;

    color:#fff;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .tour-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .tour-grid{

        grid-template-columns:1fr;
    }

    .large,
    .wide{

        grid-column:auto;
        grid-row:auto;
    }

}

/*seccion d eporque atv with fidel*/
/* =====================================
   WHY BOOKING SECTION
===================================== */

.why-booking-section{
    padding:100px 0;
    background:#f8f8f8;
}

.why-booking-box{

    background:#111;

    color:#fff;

    padding:80px 60px;

    min-height:500px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    border-radius:10px;
}

.why-booking-box h2{

    font-size:52px;

    line-height:1.1;

    font-weight:700;

    margin-bottom:40px;

    color:#fff;
}

.btn-availability{

    display:inline-block;

    width:fit-content;

    background:#EF4508;

    color:#fff;

    padding:16px 35px;

    border-radius:6px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-availability:hover{

    background:#d73d05;

    color:#fff;

    transform:translateY(-3px);
}

.small-text{

    margin-top:25px;

    opacity:.7;

    font-size:14px;
}

/* =====================================
   CONTENT RIGHT
===================================== */

.booking-content{

    padding-left:50px;
}

.booking-content h4{

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

    color:#111;
}

.booking-content p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;
}

.review-image{

    margin-top:35px;
}

.review-image img{

    width:100%;

    max-width:500px;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

    .booking-content{
        padding-left:0;
        margin-top:40px;
    }

    .why-booking-box{

        min-height:auto;

        padding:60px 40px;
    }

    .why-booking-box h2{

        font-size:40px;
    }
}

/*====================== seccion del monito abajo ================*/ 
/* ==========================================
   EXPERIENCE COSTA RICA
========================================== */

.experience-section{
    padding:120px 0;
    background:#f5f5f5;
    overflow:hidden;
}

.experience-wrapper{
    position:relative;
    max-width:1200px;
    margin:auto;
}

/* Imagen */

.experience-image{
    width:65%;
    margin-left:auto;
}

.experience-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
}

/* Caja Negra */

.experience-content{

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:500px;

    background:#070707;

    color:#fff;

    padding:60px;

    z-index:2;
}

.experience-content h2{

    color:#fff;

    font-size:35px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:30px;
}

.experience-content p{

    color:#fff;

    font-size:18px;

    line-height:2;

    margin-bottom:25px;
}

/* Botón */

.btn-learn-more{

    display:inline-block;

    background:#fff;

    color:#111;

    text-decoration:none;

    padding:15px 35px;

    margin-top:15px;

    transition:.3s;
}

.btn-learn-more:hover{

    background:#EF4508;

    color:#fff;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .experience-image{
        width:100%;
    }

    .experience-image img{
        height:500px;
    }

    .experience-content{

        position:relative;

        width:100%;

        transform:none;

        top:auto;

        margin-top:-60px;
    }

}

@media(max-width:768px){

    .experience-content{

        padding:40px 30px;
    }

    .experience-content h2{

        font-size:36px;
    }

    .experience-content p{

        font-size:16px;
        line-height:1.8;
    }

}