:root {
    --color-primary: #F1AE0A;
    --color-secondary: #05779B;


    --color-primary-light: #DCB24E;
    --color-secondary-dark: #1A6777;
    --color-primary-dark: #007993;

    --color-black: #110C0B;
    --color-white: #FFFFFF;
    --color-gray: #F5F5F5;
    --color-text: #333333;
}

* {
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-weight: 600;
}

body {
    background-color: #0D7A9E;
    background-color: #16537e;
}

.main_slider_agencias,
.main_slider_agencias .slider_wrap,
.main_slider_agencias .slider_wrap .slide,
.main_slider_agencias .slider_wrap .slide .wrap_float {
    height: 50vh;
    min-height: 300px;
}

.main_slider_agencias .slider_wrap .slide .bg-img-agencias {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.main_slider_agencias .slider_wrap .slide .bg-img-agencias::after {
    background: rgba(70, 70, 70, 0.45);
    content: '';
    position: absolute;
    inset: 0;
}

.top_panel .left .logo {
    height: 80px;
}

ul li a {
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #F1AE0A !important;
}

.title {
    font-weight: 800;
    color: #fff;
    font-size: 55px;
}

.most_popular .controls .arrows .arrow:hover {
    background: #F1AE0A;
    transition: all .2s linear;
    cursor: pointer;
}

.most_popular .controls .link:hover {
    color: #F1AE0A;
}

.tour_item_top .country span:before {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
}


.tour_page_head .top-info .tour_title {
    font-weight: 700;
}


.booking_cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.booking_card {
    background: rgba(17, 12, 11, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 20px 28px;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.booking_card_label {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.75;
    margin-bottom: 10px;
}

.booking_card_date {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking_card_day {
    color: var(--color-white);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.booking_card_date_right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking_card_month {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.booking_card_year {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
}

.booking_card_price {
    color: var(--color-white);
    font-size: 28px;
    font-weight: 800;
}

@media screen and (max-width: 600px) {
    .booking_cards {
        gap: 10px;
    }

    .booking_card {
        padding: 14px 18px;
        min-width: 130px;
    }

    .booking_card_day {
        font-size: 30px;
    }
}

.booking_cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.booking_card {
    flex: 1 1 auto;
    min-width: 0; /* evita que un contenido largo empuje y rompa el flex */
}

.tour_page_head .bottom-info {
    margin-top: 100px;
    width: 61%;
}

.booking_widget_section {
    width: 100%;
    height: 52vh;
    min-height: 400px;
}

.booking_iframe_full {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ===== FOOTER - columna izquierda limpia (logo + texto) ===== */
.footer_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer_top .left {
    flex: 1 1 320px;
    max-width: 420px;
}

.footer_brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_logo {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.footer_text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer_top .right {
    flex: 1 1 280px;
}

@media screen and (max-width: 768px) {
    .footer_top {
        flex-direction: column;
        gap: 32px;
    }

    .footer_top .left {
        max-width: 100%;
    }

    .footer_logo {
        height: 40px;
    }
}


/* Laptops / pantallas medianas */
@media screen and (max-width: 1366px) {
    .booking_widget_section {
        height: 58vh;
    }
}

/* Tablets */
@media screen and (max-width: 1024px) {
    .booking_widget_section {
        height: 68vh;
    }
}

/* Tablets chicas / mobile grande */
@media screen and (max-width: 768px) {
    .booking_widget_section {
        height: 83vh;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .booking_widget_section {
        height: 114vh;
        min-height: 550px;
    }
}

.most_popular .controls .link {
    color: #fff;
    font-weight: 600;
}

.most_popular .controls .arrows .arrow {
    background: rgb(91, 100, 91);
}

.subtitle {
    color: #fff;
}


/* ===== FOOTER (rediseño) ===== */
.footer {
    background: #0A2E45;
    padding: 60px 0 0;
}

.footer_inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.footer_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
}

.footer_col {
    flex: 1 1 280px;
    text-align: center;
        display: flex;
    flex-direction: column;
}

.footer_col--brand {
    max-width: 380px;
}

/* Marca */
.footer_logo {
        height: 109px;
    width: auto;
    object-fit: contain;
    margin-bottom: -7px;
    display: block;
}

.footer_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.footer_socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Contacto */
.footer_col_title {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.footer_contact_item {
    margin-bottom: 18px;
}

.footer_contact_main {
    display: block;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer_contact_sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin: 0;
}

.footer_address {
    font-weight: 500;
    line-height: 1.5;
}

/* Divider + bottom bar */
.footer_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 48px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer_copy,
.footer_policy {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.footer_policy {
    text-decoration: none;
}

.footer_policy:hover {
    color: var(--color-primary);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .footer {
        padding-top: 44px;
    }

    .footer_main {
        flex-direction: column;
        gap: 0px;
    }

    .footer_col--brand {
        max-width: 100%;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 0 24px;
    }

    .footer_divider {
        margin-top: 36px;
    }
}

@media screen and (max-width: 480px) {
    .footer_inner {
        padding: 0 16px;
    }

    .footer_logo {
        height: 36px;
    }
}



/* ===== TOP PANEL - override para barra sólida (sin hero detrás) ===== */
.top_panel {
    position: relative;
    top: 0;
    width: 100%;
    background: #0A2E45;
    padding: 0;
}

.top_panel .wrap_float {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.top_panel .left {
    width: auto;
    padding-right: 0;
}

.top_panel .left .logo {
    width: auto;
    height: 80px;
}

.top_panel .left .logo img {
    height: 100%;
    width: auto;
}

.top_panel .menu_wrap {
    width: auto;
}

.top_panel .menu_wrap .scroll {
    display: flex;
    align-items: center;
    gap: 40px;
}

.top_panel .center {
    width: auto;
}

.top_panel .center .menu ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top_panel .center .menu ul li {
    margin-right: 0;
}

.top_panel .center .menu ul li a {
    color: #fff;
    font-size: 16px;
    line-height: normal;
}

.top_panel .center .menu ul li a:before {
    display: none; /* saca el puntito rojo decorativo del template original */
}

.top_panel .right .tel a span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.top_panel .mobile_content {
    display: none; /* el template original lo muestra solo en mobile via JS/CSS propio */
}

@media screen and (max-width: 1024px) {
    .top_panel .menu_wrap {
        display: none;
    }

    .top_panel .mobile_btn {
        display: flex;
    }
}

@media screen and (max-width: 640px) {
    .top_panel {
        height: 76px;
    }
}

@media screen and (max-width: 640px) {
    .top_panel .mobile_btn {
        position: absolute;
        right: 0;
        top: 14px;
    }
}

@media screen and (max-width: 760px) {
    .title {
        text-align: center;
        font-size: 35px;
    }
}

@media screen and (max-width: 1520px) {
    .destinations_item ._content ._title {
        font-size: 21px;
    }
}

@media screen and (max-width: 480px) {
    .footer_logo {
        height: 101px;
    }
}

.tour_page_body .left_content .included ul li .li_title {
    color:#fff
}

.tour_page_body .left_content .included ul li .li_subtitle {
    color: #fff;
}


.story_item ._content .country {
    font-size: 16px;
    font-weight: 600;
}


/* ===== HOTEL DETAIL CARD ===== */
.content-description-hotel {
    display: flex;
    align-items: stretch;
    min-height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.content-text {
    flex: 1 1 45%;
    background: var(--color-secondary-dark);
    color: var(--color-white);
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 60px 60px 0;
    position: relative;
    z-index: 2;
    margin-right: -40px; /* se monta sobre la imagen, como en la referencia */
}

.hotel-card-nombre {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.hotel-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}

.hotel-description p {
    margin: 0 0 14px;
}

/* Precio + botón */
.conten-precio-hotel {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.conten-moneda {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.moneda-hotel {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 700;
}

.precio-hotel {
    color: var(--color-primary);
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.content-text-persona {
    color: rgba(255, 255, 255, 0.75);
}

.content-text-persona p {
    margin: 0;
    font-size: 14px;
}

.content-text-persona strong {
    color: var(--color-white);
    font-size: 15px;
}

.card-button-paquetes-hotel {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.card-button-paquetes-hotel:hover {
    background: var(--color-primary-light);
}

/* Imagen */
.content-img {
    flex: 1 1 55%;
    position: relative;
}

.img-hotel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .content-text {
        padding: 40px;
    }

    .hotel-card-nombre {
        font-size: 26px;
    }

    .precio-hotel {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .content-description-hotel {
        flex-direction: column;
        min-height: 0;
        border-radius: 16px;
    }

    .content-text {
        flex: none;
        margin-right: 0;
        border-radius: 0;
        padding: 32px 24px;
        order: 2;
    }

    .content-img {
        flex: none;
        height: 260px;
        order: 1;
    }

    .conten-precio-hotel {
        gap: 20px;
    }

    .hotel-description {
        max-height: none;
        overflow-y: visible;
    }
}


.tour_page_body .left_content.left_hotel {
    max-width: 100%;
}


@media screen and (max-width: 480px) {
.tour_page_head .bottom-info {
    margin-top: 42px;
    width: 53%;
}
.booking_cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    flex-direction: column;
}

.tour_page_head {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 73px;
}

.booking_card {
    text-align: center;
}
.booking_card_date {
    gap: 0;
}
}

.social-links .link.whatsapp {
    background-color: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-links .link.whatsapp span:before {
    width: 22px;
    height: 22px;
    background-image: url(../img/whatsapp-svgrepo-com.svg);
    margin-top: -11px;
    margin-left: -11px;
}

.destinations_item ._content ._title {
    font-size: 25px;
}

