/* =========================================================
   TPP JUNGLE EXPEDICIÓN
   Global Styles
========================================================= */

:root {

    /* Brand */
    --tpp-orange: #F5A000;
    --tpp-orange-dark: #D98D00;

    --tpp-pink: #EC008C;
    --tpp-pink-dark: #C90077;

    --tpp-teal: #00A3A3;
    --tpp-teal-dark: #008585;

    /* Neutrals */
    --tpp-dark: #111111;
    --tpp-gray-900: #252525;
    --tpp-gray-700: #5F6368;
    --tpp-gray-500: #8A8F98;
    --tpp-gray-200: #E9ECEF;
    --tpp-gray-100: #F5F6F8;
    --tpp-light: #F8F9FA;
    --tpp-white: #FFFFFF;

    /* Typography */
    --tpp-font-primary: 'Manrope', sans-serif;
    --tpp-font-heading: 'Poppins', sans-serif;

    /* UI */
    --tpp-radius-sm: 8px;
    --tpp-radius: 14px;
    --tpp-radius-lg: 22px;

    --tpp-shadow-sm:
        0 4px 20px rgba(0, 0, 0, 0.06);

    --tpp-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);

    --tpp-transition:
        all 0.3s ease;
}


/* =========================================================
   GENERAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: var(--tpp-font-primary);

    font-size: 16px;
    line-height: 1.6;

    color: var(--tpp-gray-900);

    background: var(--tpp-white);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tpp-font-heading);
    color: var(--tpp-dark);
    font-weight: 700;
}


/* =========================================================
   LINKS
========================================================= */

a {
    text-decoration: none;
    transition: var(--tpp-transition);
}


/* =========================================================
   IMAGES
========================================================= */

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   SECTIONS
========================================================= */

.tpp-section {
    padding: 90px 0;
}

.tpp-section-sm {
    padding: 60px 0;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.tpp-section-subtitle {
    display: inline-block;

    color: var(--tpp-orange);

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 8px;
}

.tpp-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;

    margin-bottom: 18px;
}


/* =========================================================
   BUTTON PRIMARY
========================================================= */

.btn-tpp-primary {

    background: var(--tpp-orange);
    color: var(--tpp-dark);

    border: 2px solid var(--tpp-orange);

    border-radius: 50px;

    padding: 12px 28px;

    font-weight: 700;

    transition: var(--tpp-transition);
}

.btn-tpp-primary:hover {

    background: var(--tpp-orange-dark);

    border-color: var(--tpp-orange-dark);

    color: var(--tpp-white);

    transform: translateY(-2px);
}


/* =========================================================
   BUTTON SECONDARY
========================================================= */

.btn-tpp-secondary {

    background: var(--tpp-teal);
    color: var(--tpp-white);

    border: 2px solid var(--tpp-teal);

    border-radius: 50px;

    padding: 12px 28px;

    font-weight: 700;

    transition: var(--tpp-transition);
}

.btn-tpp-secondary:hover {

    background: var(--tpp-teal-dark);

    border-color: var(--tpp-teal-dark);

    color: var(--tpp-white);

    transform: translateY(-2px);
}


/* =========================================================
   SCROLL TOP
========================================================= */

.tpp-scroll-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--tpp-orange);
    color: var(--tpp-dark);

    border: none;
    border-radius: 50%;

    font-size: 20px;

    cursor: pointer;

    box-shadow: var(--tpp-shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--tpp-transition);

    z-index: 999;
}

.tpp-scroll-top.active {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.tpp-scroll-top:hover {

    background: var(--tpp-dark);
    color: var(--tpp-white);

    transform: translateY(-3px);
}


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

@media (max-width: 991.98px) {

    .tpp-section {
        padding: 70px 0;
    }

}

@media (max-width: 767.98px) {

    .tpp-section {
        padding: 55px 0;
    }

    .tpp-section-sm {
        padding: 45px 0;
    }

}



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

.tpp-header {
    position: relative;
    z-index: 1030;
}

.tpp-navbar {
    background: rgba(255, 255, 255, 0.97);

    min-height: 88px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.04);

    transition: var(--tpp-transition);
}


/* =========================================================
   LOGO
========================================================= */

.tpp-navbar-brand {
    padding: 0;
}

.tpp-logo {
    width: auto;
    height: 68px;

    object-fit: contain;
}


/* =========================================================
   MENU
========================================================= */

.tpp-navbar .nav-link {

    position: relative;

    color: var(--tpp-gray-900);

    font-size: 0.93rem;

    font-weight: 600;

    padding: 30px 14px !important;

    transition: var(--tpp-transition);
}

.tpp-navbar .nav-link:hover,
.tpp-navbar .nav-link.active {

    color: var(--tpp-orange);
}


/* Línea activa */

.tpp-navbar .nav-link::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: var(--tpp-orange);

    transform: translateX(-50%);

    transition: var(--tpp-transition);
}

.tpp-navbar .nav-link:hover::after,
.tpp-navbar .nav-link.active::after {

    width: 24px;
}


/* =========================================================
   CTA NAVBAR
========================================================= */

.btn-tpp-navbar {

    background: var(--tpp-orange);
    color: var(--tpp-dark);

    border-radius: 50px;

    padding: 11px 22px;

    font-size: 0.9rem;
    font-weight: 700;

    border: 0;

    box-shadow:
        0 8px 25px rgba(245, 160, 0, 0.25);

    transition: var(--tpp-transition);
}

.btn-tpp-navbar:hover {

    color: var(--tpp-white);

    background: var(--tpp-dark);

    transform: translateY(-2px);
}


/* =========================================================
   TOGGLER
========================================================= */

.tpp-navbar-toggler {

    border: 0;

    padding: 8px;

    box-shadow: none !important;
}

.tpp-navbar-toggler:focus {

    box-shadow: none;
}


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

@media (max-width: 991.98px) {

    .tpp-navbar {

        min-height: auto;

        padding: 12px 0;
    }

    .tpp-logo {

        height: 58px;
    }

    .tpp-navbar .navbar-collapse {

        margin-top: 15px;

        padding: 10px 0 20px;
    }

    .tpp-navbar .nav-link {

        padding: 11px 5px !important;

        border-bottom:
            1px solid rgba(0, 0, 0, 0.05);
    }

    .tpp-navbar .nav-link::after {

        display: none;
    }

    .btn-tpp-navbar {

        display: block;

        width: 100%;

        text-align: center;
    }

}


/* =========================================================
   FOOTER
========================================================= */

.tpp-footer {

    background: #101820;

    color:
        rgba(255, 255, 255, 0.75);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.tpp-footer-main {

    padding: 75px 0 60px;
}


/* =========================================================
   LOGO
========================================================= */

.tpp-footer-logo {

    max-width: 190px;

    margin-bottom: 22px;
}


.tpp-footer-description {

    max-width: 380px;

    font-size: 0.92rem;

    line-height: 1.8;

    color:
        rgba(255, 255, 255, 0.65);

    margin-bottom: 25px;
}


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

.tpp-footer-title {

    color: var(--tpp-white);

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 25px;
}


/* =========================================================
   SOCIAL
========================================================= */

.tpp-social {

    display: flex;

    gap: 10px;
}

.tpp-social a {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--tpp-white);

    background:
        rgba(255, 255, 255, 0.08);

    transition: var(--tpp-transition);
}

.tpp-social a:hover {

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.tpp-footer-links {

    margin: 0;

    padding: 0;

    list-style: none;
}

.tpp-footer-links li {

    margin-bottom: 12px;
}

.tpp-footer-links a {

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 0.9rem;
}

.tpp-footer-links a:hover {

    color: var(--tpp-orange);

    padding-left: 4px;
}


/* =========================================================
   CONTACT
========================================================= */

.tpp-footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;
}

.tpp-footer-contact li {

    display: flex;

    gap: 13px;

    margin-bottom: 18px;
}

.tpp-footer-contact > li > i {

    color: var(--tpp-orange);

    font-size: 1.15rem;

    margin-top: 2px;
}

.tpp-footer-contact span {

    display: block;

    font-size: 0.76rem;

    color:
        rgba(255, 255, 255, 0.45);

    margin-bottom: 2px;
}

.tpp-footer-contact a,
.tpp-footer-contact p {

    color:
        rgba(255, 255, 255, 0.80);

    margin: 0;

    font-size: 0.88rem;
}

.tpp-footer-contact a:hover {

    color: var(--tpp-orange);
}


/* =========================================================
   LIBRO RECLAMACIONES
========================================================= */

.tpp-complaints {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px;

    border-radius: var(--tpp-radius);

    background:
        rgba(255, 255, 255, 0.06);

    color: var(--tpp-white);

    margin-bottom: 25px;
}

.tpp-complaints > i {

    font-size: 1.8rem;

    color: var(--tpp-orange);
}

.tpp-complaints strong {

    display: block;

    font-size: 0.84rem;

    font-weight: 700;
}

.tpp-complaints span {

    display: block;

    font-size: 0.72rem;

    color:
        rgba(255, 255, 255, 0.55);
}

.tpp-complaints:hover {

    background:
        rgba(245, 160, 0, 0.12);

    color: var(--tpp-white);
}


/* =========================================================
   PAYMENT
========================================================= */

.tpp-payment-title {

    display: block;

    font-size: 0.8rem;

    margin-bottom: 12px;

    color:
        rgba(255, 255, 255, 0.55);
}

.tpp-payment-icons {

    display: flex;

    gap: 8px;
}

.tpp-payment-icons i {

    width: 42px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.08);

    color: var(--tpp-white);

    font-size: 1.1rem;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.tpp-footer-bottom {

    padding: 20px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.78rem;
}

.tpp-footer-bottom p {

    color:
        rgba(255, 255, 255, 0.5);
}

.tpp-footer-bottom-links {

    display: flex;

    gap: 8px;

    align-items: center;
}

.tpp-footer-bottom-links a {

    color:
        rgba(255, 255, 255, 0.6);
}

.tpp-footer-bottom-links a:hover {

    color: var(--tpp-orange);
}

.tpp-footer-bottom-links strong {

    color: var(--tpp-orange);
}


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

@media (max-width: 767.98px) {

    .tpp-footer-main {

        padding:
            55px 0 40px;
    }

    .tpp-footer-logo {

        max-width: 160px;
    }

    .tpp-footer-bottom {

        text-align: center;
    }

    .tpp-footer-bottom-links {

        justify-content: center;

        flex-wrap: wrap;
    }

}

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

.tpp-hero {

    position: relative;

    min-height: 720px;

    overflow: hidden;

    background: var(--tpp-dark);
}


/* =========================================================
   BACKGROUND
========================================================= */

.tpp-hero-background {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    transform: scale(1.02);
}


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

.tpp-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 12, 15, 0.90) 0%,
            rgba(5, 12, 15, 0.70) 40%,
            rgba(5, 12, 15, 0.20) 75%,
            rgba(5, 12, 15, 0.05) 100%
        );
}


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

.min-vh-75 {

    min-height: 720px;
}

.tpp-hero-content {

    max-width: 750px;

    padding: 80px 0;
}


/* =========================================================
   BADGE
========================================================= */

.tpp-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    border-radius: 50px;

    color: var(--tpp-white);

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter:
        blur(10px);

    font-size: 0.82rem;

    font-weight: 600;

    margin-bottom: 24px;
}

.tpp-hero-badge i {

    color: var(--tpp-orange);
}


/* =========================================================
   TITLE
========================================================= */

.tpp-hero-title {

    color: var(--tpp-white);

    font-size:
        clamp(3rem, 6vw, 5.3rem);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.tpp-hero-title span {

    display: block;

    color: var(--tpp-orange);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tpp-hero-description {

    max-width: 620px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 1.12rem;

    line-height: 1.75;

    margin-bottom: 32px;
}


/* =========================================================
   ACTIONS
========================================================= */

.tpp-hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   PRIMARY
========================================================= */

.btn-tpp-hero-primary {

    padding: 14px 28px;

    border-radius: 50px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-weight: 700;

    border: 2px solid var(--tpp-orange);

    transition: var(--tpp-transition);
}

.btn-tpp-hero-primary:hover {

    background: var(--tpp-white);

    border-color: var(--tpp-white);

    color: var(--tpp-dark);

    transform: translateY(-2px);
}


/* =========================================================
   SECONDARY
========================================================= */

.btn-tpp-hero-outline {

    padding: 14px 28px;

    border-radius: 50px;

    border:
        2px solid rgba(255, 255, 255, 0.55);

    color: var(--tpp-white);

    font-weight: 700;

    background:
        rgba(255, 255, 255, 0.05);

    backdrop-filter:
        blur(8px);

    transition: var(--tpp-transition);
}

.btn-tpp-hero-outline:hover {

    background: var(--tpp-white);

    border-color: var(--tpp-white);

    color: var(--tpp-dark);

    transform: translateY(-2px);
}


/* =========================================================
   FEATURES
========================================================= */

.tpp-hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 40px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.14);
}

.tpp-hero-features > div {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.82rem;

    font-weight: 500;
}

.tpp-hero-features i {

    color: var(--tpp-orange);

    font-size: 1rem;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.tpp-hero-scroll {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    width: 28px;
    height: 44px;

    border:
        2px solid rgba(255, 255, 255, 0.55);

    border-radius: 25px;
}

.tpp-hero-scroll span {

    position: absolute;

    left: 50%;
    top: 8px;

    width: 4px;
    height: 8px;

    border-radius: 4px;

    background: var(--tpp-white);

    transform: translateX(-50%);

    animation:
        tppHeroScroll 1.8s infinite;
}

@keyframes tppHeroScroll {

    0% {

        opacity: 0;

        transform:
            translate(-50%, 0);
    }

    40% {

        opacity: 1;
    }

    100% {

        opacity: 0;

        transform:
            translate(-50%, 14px);
    }

}


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

@media (max-width: 991.98px) {

    .tpp-hero,
    .min-vh-75 {

        min-height: 650px;
    }

    .tpp-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(5, 12, 15, 0.88) 0%,
                rgba(5, 12, 15, 0.65) 100%
            );
    }

    .tpp-hero-title {

        letter-spacing: -1px;
    }

}


@media (max-width: 767.98px) {

    .tpp-hero,
    .min-vh-75 {

        min-height: 620px;
    }

    .tpp-hero-content {

        padding:
            65px 0 90px;
    }

    .tpp-hero-title {

        font-size:
            clamp(2.5rem, 12vw, 3.7rem);

        line-height: 1.08;
    }

    .tpp-hero-description {

        font-size: 1rem;
    }

    .tpp-hero-actions {

        align-items: stretch;

        flex-direction: column;

        max-width: 300px;
    }

    .btn-tpp-hero-primary,
    .btn-tpp-hero-outline {

        width: 100%;

        text-align: center;
    }

    .tpp-hero-features {

        gap: 13px;

        flex-direction: column;
    }

    .tpp-hero-scroll {

        display: none;
    }

}


@media (max-width: 575.98px) {

    .tpp-hero {

        min-height: 610px;
    }

    .tpp-hero-background {

        background-position: 62% center;
    }

    .tpp-hero-badge {

        font-size: 0.72rem;
    }

}


/* =========================================================
   COMMON
========================================================= */

.tpp-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
}

.tpp-section-heading p,
.tpp-section-description {
    color: var(--tpp-gray-700);
    line-height: 1.8;
}

.tpp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--tpp-dark);

    font-size: 0.9rem;
    font-weight: 700;
}

.tpp-link-arrow:hover {
    color: var(--tpp-orange);
    gap: 12px;
}


/* =========================================================
   TOUR CARDS
========================================================= */

.tpp-featured-tours {
    background: var(--tpp-white);
}

.tpp-tour-card {
    height: 100%;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-tour-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--tpp-shadow);
}

.tpp-tour-image {
    position: relative;

    display: block;

    height: 280px;

    overflow: hidden;
}

.tpp-tour-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-tour-card:hover .tpp-tour-image img {
    transform: scale(1.06);
}

.tpp-card-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 13px;

    border-radius: 50px;

    background: var(--tpp-pink);
    color: var(--tpp-white);

    font-size: 0.72rem;
    font-weight: 700;
}

.tpp-card-badge-teal {
    background: var(--tpp-teal);
}

.tpp-tour-body {
    padding: 23px;
}

.tpp-card-location {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--tpp-gray-500);

    font-size: 0.78rem;

    margin-bottom: 8px;
}

.tpp-card-location i {
    color: var(--tpp-orange);
}

.tpp-tour-body h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.tpp-tour-body h3 a {
    color: var(--tpp-dark);
}

.tpp-tour-body h3 a:hover {
    color: var(--tpp-orange);
}

.tpp-tour-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 22px;

    color: var(--tpp-gray-700);

    font-size: 0.78rem;
}

.tpp-tour-meta span {
    display: flex;

    align-items: center;

    gap: 6px;
}

.tpp-tour-meta i {
    color: var(--tpp-teal);
}

.tpp-tour-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid var(--tpp-gray-200);
}

.tpp-price small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.7rem;
}

.tpp-price strong {
    color: var(--tpp-dark);

    font-size: 1.25rem;
}

.tpp-card-action {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--tpp-gray-100);

    color: var(--tpp-dark);

    transition: var(--tpp-transition);
}

.tpp-card-action:hover {
    background: var(--tpp-orange);
    color: var(--tpp-dark);

    transform: rotate(8deg);
}


/* =========================================================
   PACKAGES
========================================================= */

.tpp-packages-section {
    background: var(--tpp-gray-100);
}

.tpp-package-card {
    height: 100%;

    display: flex;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tpp-shadow);
}

.tpp-package-image {
    position: relative;

    width: 43%;
    min-height: 390px;
}

.tpp-package-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.tpp-package-days {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 7px 13px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.82);
    color: var(--tpp-white);

    font-size: 0.73rem;
    font-weight: 600;

    backdrop-filter: blur(8px);
}

.tpp-package-content {
    width: 57%;

    padding: 30px;

    display: flex;
    flex-direction: column;
}

.tpp-package-label {
    color: var(--tpp-teal);

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 8px;
}

.tpp-package-content h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.tpp-package-content p {
    color: var(--tpp-gray-700);

    font-size: 0.87rem;

    line-height: 1.7;
}

.tpp-package-content ul {
    list-style: none;

    margin: 5px 0 25px;
    padding: 0;
}

.tpp-package-content li {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

    color: var(--tpp-gray-700);

    font-size: 0.82rem;
}

.tpp-package-content li i {
    color: var(--tpp-teal);
}

.tpp-package-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;
}

.tpp-package-price span {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.7rem;
}

.tpp-package-price strong {
    font-size: 1.4rem;

    color: var(--tpp-dark);
}


/* =========================================================
   WHY US
========================================================= */

.tpp-why-section {
    background: var(--tpp-white);
}

.tpp-why-image {
    position: relative;

    max-width: 570px;
}

.tpp-why-image > img {
    width: 100%;
    height: 590px;

    object-fit: cover;

    border-radius: 28px;
}

.tpp-why-experience {
    position: absolute;

    right: -25px;
    bottom: 40px;

    width: 180px;

    padding: 22px;

    border-radius: 18px;

    background: var(--tpp-orange);
    color: var(--tpp-dark);

    box-shadow: var(--tpp-shadow);
}

.tpp-why-experience strong {
    display: block;

    font-family: var(--tpp-font-heading);

    font-size: 2rem;
}

.tpp-why-experience span {
    display: block;

    font-size: 0.8rem;
    font-weight: 600;

    line-height: 1.4;
}

.tpp-why-list {
    margin-top: 30px;
}

.tpp-why-item {
    display: flex;

    gap: 17px;

    margin-bottom: 23px;
}

.tpp-why-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(0, 163, 163, 0.10);
    color: var(--tpp-teal);

    font-size: 1.3rem;
}

.tpp-why-item h4 {
    font-size: 1rem;

    margin-bottom: 5px;
}

.tpp-why-item p {
    margin: 0;

    color: var(--tpp-gray-700);

    font-size: 0.84rem;

    line-height: 1.6;
}


/* =========================================================
   EXPERIENCES
========================================================= */

.tpp-experience-section {
    background: #F9FAFB;
}

.tpp-experience-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, 260px);

    gap: 20px;
}

.tpp-experience-card {
    position: relative;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);
}

.tpp-experience-large {
    grid-row: 1 / 3;
}

.tpp-experience-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.tpp-experience-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.75) 100%
        );
}

.tpp-experience-content {
    position: absolute;

    left: 25px;
    bottom: 22px;

    color: var(--tpp-white);
}

.tpp-experience-content span {
    display: block;

    font-size: 0.72rem;
    font-weight: 600;

    opacity: 0.8;

    margin-bottom: 3px;
}

.tpp-experience-content h3 {
    color: var(--tpp-white);

    font-size: 1.6rem;

    margin: 0;
}

.tpp-experience-card:hover img {
    transform: scale(1.08);
}


/* =========================================================
   HOTELS
========================================================= */

.tpp-hotels-section {
    background: var(--tpp-white);
}

.tpp-hotel-card {
    height: 100%;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);

    border: 1px solid rgba(0, 0, 0, 0.06);

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-hotel-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--tpp-shadow);
}

.tpp-hotel-image {
    position: relative;

    display: block;

    height: 260px;

    overflow: hidden;
}

.tpp-hotel-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-hotel-card:hover .tpp-hotel-image img {
    transform: scale(1.06);
}

.tpp-hotel-rating {
    position: absolute;

    right: 15px;
    top: 15px;

    padding: 6px 10px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.94);

    color: var(--tpp-dark);

    font-size: 0.76rem;
    font-weight: 700;
}

.tpp-hotel-rating i {
    color: var(--tpp-orange);
}

.tpp-hotel-body {
    padding: 22px;
}

.tpp-hotel-body h3 {
    font-size: 1.2rem;

    margin-bottom: 10px;
}

.tpp-hotel-body p {
    color: var(--tpp-gray-700);

    font-size: 0.84rem;

    line-height: 1.7;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.tpp-testimonials-section {
    background: var(--tpp-gray-100);

    overflow: hidden;
}

.tpp-testimonials-swiper {
    padding: 10px 4px 55px;
}

.tpp-testimonial-card {
    height: 100%;

    padding: 30px;

    border-radius: var(--tpp-radius-lg);

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-testimonial-stars {
    display: flex;

    gap: 4px;

    color: var(--tpp-orange);

    margin-bottom: 18px;
}

.tpp-testimonial-card > p {
    min-height: 90px;

    color: var(--tpp-gray-700);

    line-height: 1.8;

    font-size: 0.9rem;
}

.tpp-testimonial-user {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;
}

.tpp-testimonial-user img {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;
}

.tpp-testimonial-user strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.85rem;
}

.tpp-testimonial-user span {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.72rem;
}

.tpp-testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--tpp-orange);
}


/* =========================================================
   BLOG
========================================================= */

.tpp-blog-section {
    background: var(--tpp-white);
}

.tpp-blog-card {
    height: 100%;
}

.tpp-blog-image {
    display: block;

    height: 245px;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);
}

.tpp-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-blog-card:hover .tpp-blog-image img {
    transform: scale(1.06);
}

.tpp-blog-body {
    padding: 20px 5px 0;
}

.tpp-blog-category {
    display: inline-block;

    color: var(--tpp-teal);

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    margin-bottom: 9px;
}

.tpp-blog-body h3 {
    font-size: 1.12rem;

    line-height: 1.45;

    margin-bottom: 14px;
}

.tpp-blog-body h3 a {
    color: var(--tpp-dark);
}

.tpp-blog-body h3 a:hover {
    color: var(--tpp-orange);
}

.tpp-blog-meta {
    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--tpp-gray-500);

    font-size: 0.72rem;
}


/* =========================================================
   FINAL CTA
========================================================= */

.tpp-final-cta {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    background: var(--tpp-dark);
}

.tpp-final-cta-bg {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;
}

.tpp-final-cta-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 18, 0.9),
            rgba(8, 15, 18, 0.70)
        );
}

.tpp-final-cta-badge {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--tpp-orange);

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}

.tpp-final-cta h2 {
    color: var(--tpp-white);

    font-size: clamp(2.2rem, 5vw, 4rem);

    margin-bottom: 18px;
}

.tpp-final-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.78);

    line-height: 1.8;
}

.tpp-final-cta-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.btn-tpp-whatsapp {
    padding: 12px 28px;

    border-radius: 50px;

    background: var(--tpp-teal);

    border: 2px solid var(--tpp-teal);

    color: var(--tpp-white);

    font-weight: 700;
}

.btn-tpp-whatsapp:hover {
    background: var(--tpp-white);

    border-color: var(--tpp-white);

    color: var(--tpp-dark);
}


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

@media (max-width: 1199.98px) {

    .tpp-package-card {
        flex-direction: column;
    }

    .tpp-package-image,
    .tpp-package-content {
        width: 100%;
    }

    .tpp-package-image {
        min-height: 260px;
    }

}


@media (max-width: 991.98px) {

    .tpp-why-image {
        margin: 0 auto;
    }

    .tpp-why-experience {
        right: 20px;
    }

}


@media (max-width: 767.98px) {

    .tpp-tour-image,
    .tpp-hotel-image {
        height: 240px;
    }

    .tpp-package-content {
        padding: 24px;
    }

    .tpp-package-footer {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-why-image > img {
        height: 450px;
    }

    .tpp-experience-grid {
        display: flex;

        flex-direction: column;
    }

    .tpp-experience-card,
    .tpp-experience-large {
        height: 280px;
    }

    .tpp-final-cta {
        padding: 80px 0;
    }

}


@media (max-width: 575.98px) {

    .tpp-why-image > img {
        height: 390px;
    }

    .tpp-why-experience {
        right: 15px;
        bottom: 20px;

        width: 155px;

        padding: 17px;
    }

    .tpp-final-cta-actions {
        flex-direction: column;
    }

    .tpp-final-cta-actions .btn {
        width: 100%;
    }

}


/* =========================================================
   CYBER OFERTAS
========================================================= */

.tpp-cyber-section {
    background: var(--tpp-white);
}


/* GRID */

.tpp-cyber-grid {

    display: grid;

    grid-template-columns:
        1.35fr 1fr;

    grid-template-rows:
        repeat(2, 260px);

    gap: 20px;
}


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

.tpp-cyber-card {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius:
        var(--tpp-radius-lg);

    color:
        var(--tpp-white);

    background:
        var(--tpp-dark);
}


.tpp-cyber-large {

    grid-row:
        1 / 3;
}


/* =========================================================
   IMAGE
========================================================= */

.tpp-cyber-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.tpp-cyber-card:hover img {

    transform:
        scale(1.06);
}


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

.tpp-cyber-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 15%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.88) 100%
        );
}


/* =========================================================
   DISCOUNT
========================================================= */

.tpp-cyber-discount {

    position: absolute;

    top: 20px;
    right: 20px;

    min-width: 58px;

    padding:
        9px 14px;

    text-align: center;

    background:
        var(--tpp-pink);

    color:
        var(--tpp-white);

    border-radius:
        50px;

    font-size:
        0.82rem;

    font-weight:
        800;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.2);
}


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

.tpp-cyber-content {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 2;
}


.tpp-cyber-label {

    display: inline-block;

    margin-bottom:
        7px;

    color:
        var(--tpp-orange);

    font-size:
        0.72rem;

    font-weight:
        700;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}


.tpp-cyber-content h3 {

    color:
        var(--tpp-white);

    font-size:
        1.45rem;

    margin-bottom:
        5px;
}


.tpp-cyber-large
.tpp-cyber-content h3 {

    font-size:
        clamp(1.8rem, 3vw, 2.5rem);
}


.tpp-cyber-content p {

    margin-bottom:
        12px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size:
        0.8rem;
}


/* =========================================================
   PRICE
========================================================= */

.tpp-cyber-price {

    display: flex;

    align-items: center;

    gap: 10px;
}


.tpp-cyber-price-old {

    color:
        rgba(255, 255, 255, 0.55);

    font-size:
        0.8rem;

    text-decoration:
        line-through;
}


.tpp-cyber-price strong {

    color:
        var(--tpp-white);

    font-family:
        var(--tpp-font-heading);

    font-size:
        1.35rem;
}


/* =========================================================
   BUTTON
========================================================= */

.tpp-cyber-button {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        18px;

    padding:
        10px 18px;

    border-radius:
        50px;

    background:
        var(--tpp-orange);

    color:
        var(--tpp-dark);

    font-size:
        0.8rem;

    font-weight:
        700;

    transition:
        var(--tpp-transition);
}


.tpp-cyber-card:hover
.tpp-cyber-button {

    background:
        var(--tpp-white);

    transform:
        translateY(-2px);
}


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

@media (max-width: 767.98px) {

    .tpp-cyber-grid {

        display: flex;

        flex-direction: column;
    }


    .tpp-cyber-card,
    .tpp-cyber-large {

        height: 310px;
    }


    .tpp-cyber-content {

        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    .tpp-cyber-discount {

        top: 15px;
        right: 15px;
    }

}


/* =========================================================
   CYBER / OFFERS - META
========================================================= */

.tpp-cyber-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 6px 10px;

    margin-bottom: 10px;
}

.tpp-cyber-meta span {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.68rem;

    font-weight: 600;
}

.tpp-cyber-meta span + span::before {
    content: "•";

    margin-right: 8px;

    color: var(--tpp-orange);
}


/* =========================================================
   PRICE
========================================================= */

.tpp-cyber-price {
    display: flex;

    align-items: flex-end;

    gap: 9px;

    margin-bottom: 16px;
}

.tpp-cyber-price small {
    color: rgba(255, 255, 255, 0.62);

    font-size: 0.68rem;
}

.tpp-cyber-price strong {
    color: var(--tpp-white);

    font-size: 1.35rem;

    line-height: 1;
}


/* CARD GRANDE */

.tpp-cyber-large
.tpp-cyber-price strong {
    font-size: 1.75rem;
}


/* =========================================================
   BUTTON
========================================================= */

.tpp-cyber-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    border-radius: 50px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 0.72rem;

    font-weight: 700;

    transition: var(--tpp-transition);
}

.tpp-cyber-card:hover
.tpp-cyber-button {
    transform: translateY(-2px);
}


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

.tpp-cyber-content h3 {
    margin-bottom: 8px;
}


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

@media (max-width: 767.98px) {

    .tpp-cyber-price {
        align-items: flex-start;

        flex-direction: column;

        gap: 3px;
    }

}


/* =========================================================
   INNER HERO - PÁGINAS INTERNAS
========================================================= */

.tpp-inner-hero {
    position: relative;
    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;
    background: var(--tpp-dark);
}

.tpp-inner-hero-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
}

.tpp-inner-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 15, 18, 0.92) 0%,
        rgba(7, 15, 18, 0.70) 50%,
        rgba(7, 15, 18, 0.25) 100%
    );
}

.tpp-inner-hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
    padding: 75px 0;

    color: var(--tpp-white);
}

.tpp-inner-hero-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--tpp-orange);

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.tpp-inner-hero h1 {
    color: var(--tpp-white);

    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.05;

    margin-bottom: 18px;
}

.tpp-inner-hero p {
    max-width: 600px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 1rem;
    line-height: 1.8;

    margin-bottom: 0;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.tpp-breadcrumb {
    margin-top: 24px;
    margin-bottom: 0;
}

.tpp-breadcrumb .breadcrumb-item,
.tpp-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.8rem;
}

.tpp-breadcrumb .breadcrumb-item a:hover {
    color: var(--tpp-orange);
}

.tpp-breadcrumb .breadcrumb-item.active {
    color: var(--tpp-white);
}

.tpp-breadcrumb
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.40);
}


/* =========================================================
   TOURS LIST
========================================================= */

.tpp-tours-list-section {
    background: #f8f9fa;
}


/* =========================================================
   RESULTS
========================================================= */

.tpp-results-count {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 9px 15px;

    border-radius: 50px;

    background: var(--tpp-white);

    color: var(--tpp-gray-700);

    border: 1px solid var(--tpp-gray-200);

    font-size: 0.8rem;
    font-weight: 600;
}

.tpp-results-count i {
    color: var(--tpp-orange);
}


/* =========================================================
   FILTERS
========================================================= */

.tpp-tour-filters {
    padding: 24px;

    margin-bottom: 35px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: var(--tpp-radius-lg);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-filter-label {
    display: block;

    margin-bottom: 8px;

    color: var(--tpp-gray-900);

    font-size: 0.78rem;
    font-weight: 700;
}


/* SEARCH */

.tpp-filter-input {
    position: relative;
}

.tpp-filter-input > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--tpp-gray-500);

    z-index: 2;

    pointer-events: none;
}

.tpp-filter-input .form-control {
    height: 48px;

    padding-left: 43px;

    border-radius: 12px;

    border: 1px solid var(--tpp-gray-200);

    font-size: 0.87rem;
}


/* SELECT */

.tpp-filter-select {
    height: 48px;

    border-radius: 12px;

    border: 1px solid var(--tpp-gray-200);

    font-size: 0.87rem;
}


/* FOCUS */

.tpp-filter-input .form-control:focus,
.tpp-filter-select:focus {
    border-color: var(--tpp-orange);

    box-shadow:
        0 0 0 0.2rem
        rgba(245, 160, 0, 0.10);
}


/* CLEAR */

.tpp-clear-filter {
    display: inline-flex;

    align-items: center;
    gap: 6px;

    color: var(--tpp-gray-500);

    font-size: 0.78rem;
}

.tpp-clear-filter:hover {
    color: var(--tpp-pink);
}


/* =========================================================
   TOUR DISCOUNT
========================================================= */

.tpp-tour-discount {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 7px 12px;

    border-radius: 50px;

    background: var(--tpp-pink);
    color: var(--tpp-white);

    font-size: 0.72rem;
    font-weight: 800;

    box-shadow:
        0 6px 18px
        rgba(0, 0, 0, 0.15);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.tpp-empty-state {
    max-width: 550px;

    margin: 30px auto;

    padding: 60px 30px;

    text-align: center;

    background: var(--tpp-white);

    border-radius: var(--tpp-radius-lg);

    border: 1px solid var(--tpp-gray-200);
}

.tpp-empty-state-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(245, 160, 0, 0.12);

    color: var(--tpp-orange);

    font-size: 1.8rem;
}

.tpp-empty-state h3 {
    font-size: 1.35rem;

    margin-bottom: 10px;
}

.tpp-empty-state p {
    margin-bottom: 25px;

    color: var(--tpp-gray-700);
}


/* =========================================================
   PAGINATION
========================================================= */

.tpp-pagination-wrapper {
    display: flex;

    justify-content: center;

    margin-top: 50px;
}

.tpp-pagination-wrapper .pagination {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 7px;

    margin-bottom: 0;
}

.tpp-pagination-wrapper .page-link {
    min-width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border-radius: 10px !important;

    border: 1px solid var(--tpp-gray-200);

    color: var(--tpp-gray-900);

    font-size: 0.82rem;
    font-weight: 600;

    background: var(--tpp-white);

    transition: var(--tpp-transition);
}

.tpp-pagination-wrapper .page-link:hover {
    background: var(--tpp-orange);

    border-color: var(--tpp-orange);

    color: var(--tpp-dark);
}

.tpp-pagination-wrapper
.page-item.active
.page-link {
    background: var(--tpp-orange);

    border-color: var(--tpp-orange);

    color: var(--tpp-dark);
}

.tpp-pagination-wrapper
.page-item.disabled
.page-link {
    opacity: 0.45;

    pointer-events: none;
}


/* =========================================================
   CTA - TOUR LIST
========================================================= */

.tpp-tour-list-cta {
    padding: 0 0 90px;

    background: #f8f9fa;
}

.tpp-tour-list-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 38px 42px;

    border-radius: 24px;

    background: #101820;

    color: var(--tpp-white);
}

.tpp-tour-list-cta-box > div:first-child {
    max-width: 650px;
}

.tpp-tour-list-cta-box span {
    display: inline-block;

    margin-bottom: 6px;

    color: var(--tpp-orange);

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.tpp-tour-list-cta-box h3 {
    color: var(--tpp-white);

    font-size: 1.8rem;

    margin-bottom: 10px;
}

.tpp-tour-list-cta-box p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.9rem;
    line-height: 1.7;
}


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

@media (max-width: 991.98px) {

    .tpp-inner-hero {
        min-height: 340px;
    }

    .tpp-inner-hero-content {
        padding: 65px 0;
    }

    .tpp-tour-list-cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 767.98px) {

    .tpp-inner-hero {
        min-height: 310px;
    }

    .tpp-inner-hero-overlay {
        background: rgba(7, 15, 18, 0.78);
    }

    .tpp-inner-hero-content {
        padding: 55px 0;
    }

    .tpp-inner-hero h1 {
        font-size: 2.5rem;
    }

    .tpp-tour-filters {
        padding: 18px;
    }

    .tpp-results-count {
        font-size: 0.75rem;
    }

    .tpp-tour-list-cta {
        padding-bottom: 60px;
    }

    .tpp-tour-list-cta-box {
        padding: 28px 22px;
    }

    .tpp-tour-list-cta-box h3 {
        font-size: 1.45rem;
    }

    .tpp-tour-list-cta-box > div:last-child,
    .tpp-tour-list-cta-box .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .tpp-inner-hero {
        min-height: 290px;
    }

    .tpp-inner-hero h1 {
        font-size: 2.2rem;
    }

    .tpp-tour-filters {
        padding: 16px;
    }

    .tpp-pagination-wrapper .page-link {
        min-width: 38px;
        height: 38px;

        padding: 0 9px;
    }

}

/* =========================================================
   TOUR DETAIL HERO
========================================================= */

.tpp-tour-detail-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--tpp-dark);
}

.tpp-tour-detail-hero-bg {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;
}

.tpp-tour-detail-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 12, 15, 0.15) 10%,
            rgba(5, 12, 15, 0.88) 100%
        );
}

.tpp-tour-detail-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 100px 0 55px;
}

.tpp-tour-detail-badge {
    display: inline-block;

    padding: 7px 14px;

    margin-bottom: 15px;

    border-radius: 50px;

    background: var(--tpp-teal);

    color: var(--tpp-white);

    font-size: 0.75rem;
    font-weight: 700;
}

.tpp-tour-detail-hero h1 {
    color: var(--tpp-white);

    font-size: clamp(2.7rem, 5vw, 4.7rem);

    line-height: 1.05;

    margin-bottom: 20px;
}

.tpp-tour-detail-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}

.tpp-tour-detail-meta span {
    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.85rem;
}

.tpp-tour-detail-meta i {
    color: var(--tpp-orange);
}


/* =========================================================
   TOUR DETAIL
========================================================= */

.tpp-tour-detail-section {
    background: #f8f9fa;
}


/* =========================================================
   GALLERY
========================================================= */

.tpp-tour-gallery {
    margin-bottom: 35px;
}

.tpp-tour-gallery-main {
    position: relative;

    display: block;

    height: 480px;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);
}

.tpp-tour-gallery-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-tour-gallery-main:hover img {
    transform: scale(1.03);
}

.tpp-tour-gallery-view {
    position: absolute;

    right: 18px;
    bottom: 18px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.75);

    color: var(--tpp-white);

    font-size: 0.75rem;

    backdrop-filter: blur(8px);
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.tpp-tour-detail-content {
    margin-bottom: 30px;

    padding: 32px;

    background: var(--tpp-white);

    border-radius: var(--tpp-radius-lg);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-tour-detail-title {
    font-size: 2rem;

    margin-bottom: 15px;
}

.tpp-tour-detail-intro {
    color: var(--tpp-gray-700);

    line-height: 1.8;
}


/* =========================================================
   QUICK INFO
========================================================= */

.tpp-tour-quick-info {
    display: grid;

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

    gap: 15px;

    margin-top: 28px;
}

.tpp-tour-quick-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border-radius: 14px;

    background: var(--tpp-gray-100);
}

.tpp-tour-quick-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(0, 163, 163, 0.1);

    color: var(--tpp-teal);

    font-size: 1.1rem;
}

.tpp-tour-quick-item span {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.7rem;
}

.tpp-tour-quick-item strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.82rem;
}


/* =========================================================
   DETAIL BLOCKS
========================================================= */

.tpp-tour-detail-block {
    margin-bottom: 30px;

    padding: 32px;

    background: var(--tpp-white);

    border-radius: var(--tpp-radius-lg);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-tour-detail-block h3 {
    margin-bottom: 20px;

    font-size: 1.35rem;
}

.tpp-tour-detail-text {
    color: var(--tpp-gray-700);

    line-height: 1.8;
}


/* =========================================================
   INCLUDES
========================================================= */

.tpp-tour-include-item {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 16px;

    background: var(--tpp-gray-100);

    border-radius: 12px;

    color: var(--tpp-gray-700);

    font-size: 0.85rem;
}

.tpp-tour-include-item i {
    color: var(--tpp-teal);
}


/* =========================================================
   RECOMMENDATIONS
========================================================= */

.tpp-tour-recommendations {
    display: grid;

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

    gap: 15px;
}

.tpp-tour-recommendations > div {
    min-height: 100px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 15px;

    text-align: center;

    border-radius: 14px;

    background: var(--tpp-gray-100);
}

.tpp-tour-recommendations i {
    color: var(--tpp-orange);

    font-size: 1.4rem;
}

.tpp-tour-recommendations span {
    color: var(--tpp-gray-700);

    font-size: 0.78rem;
}


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

.tpp-tour-booking-card {
    position: sticky;

    top: 110px;

    padding: 30px;

    border-radius: var(--tpp-radius-lg);

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow);
}

.tpp-tour-booking-label {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.75rem;

    margin-bottom: 3px;
}

.tpp-tour-booking-price {
    margin-bottom: 15px;
}

.tpp-tour-booking-price strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 2rem;
}

.tpp-tour-booking-price span {
    color: var(--tpp-gray-500);

    font-size: 0.75rem;
}

.tpp-tour-booking-offer {
    display: flex;

    align-items: center;

    gap: 7px;

    padding: 10px 13px;

    border-radius: 10px;

    background: rgba(236, 0, 140, 0.08);

    color: var(--tpp-pink);

    font-size: 0.78rem;
    font-weight: 700;
}

.tpp-tour-booking-divider {
    height: 1px;

    margin: 20px 0;

    background: var(--tpp-gray-200);
}

.tpp-tour-booking-features {
    display: grid;

    gap: 12px;

    margin-bottom: 22px;
}

.tpp-tour-booking-features > div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--tpp-gray-700);

    font-size: 0.82rem;
}

.tpp-tour-booking-features i {
    color: var(--tpp-teal);
}

.tpp-tour-contact-btn {
    margin-top: 10px;

    padding: 12px 20px;

    border-radius: 50px;

    border: 1px solid var(--tpp-gray-200);

    color: var(--tpp-dark);

    font-weight: 700;
}

.tpp-tour-contact-btn:hover {
    background: var(--tpp-gray-100);

    color: var(--tpp-dark);
}

.tpp-tour-booking-note {
    display: flex;

    align-items: flex-start;

    gap: 7px;

    margin-top: 15px;
    margin-bottom: 0;

    color: var(--tpp-gray-500);

    font-size: 0.7rem;

    line-height: 1.5;
}


/* =========================================================
   RELATED TOURS
========================================================= */

.tpp-related-tours {
    background: var(--tpp-white);
}


/* =========================================================
   DETAIL CTA
========================================================= */

.tpp-tour-detail-cta {
    padding: 0 0 90px;

    background: var(--tpp-white);
}

.tpp-tour-detail-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 40px;

    border-radius: 24px;

    background: #101820;

    color: var(--tpp-white);
}

.tpp-tour-detail-cta-box span {
    display: inline-block;

    margin-bottom: 6px;

    color: var(--tpp-orange);

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
}

.tpp-tour-detail-cta-box h3 {
    color: var(--tpp-white);

    margin-bottom: 10px;
}

.tpp-tour-detail-cta-box p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);
}


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

@media (max-width: 991.98px) {

    .tpp-tour-detail-hero {
        min-height: 430px;
    }

    .tpp-tour-booking-card {
        position: static;
    }

    .tpp-tour-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .tpp-tour-recommendations {
        grid-template-columns: repeat(2, 1fr);
    }

    .tpp-tour-detail-cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 767.98px) {

    .tpp-tour-detail-hero {
        min-height: 390px;
    }

    .tpp-tour-detail-hero-content {
        padding: 80px 0 40px;
    }

    .tpp-tour-gallery-main {
        height: 330px;
    }

    .tpp-tour-detail-content,
    .tpp-tour-detail-block,
    .tpp-tour-booking-card {
        padding: 22px;
    }

    .tpp-tour-quick-info {
        grid-template-columns: 1fr;
    }

    .tpp-tour-detail-cta {
        padding-bottom: 60px;
    }

    .tpp-tour-detail-cta-box {
        padding: 28px 22px;
    }

    .tpp-tour-detail-cta-box .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .tpp-tour-detail-hero h1 {
        font-size: 2.3rem;
    }

    .tpp-tour-detail-meta {
        gap: 10px 16px;
    }

    .tpp-tour-gallery-main {
        height: 270px;
    }

    .tpp-tour-recommendations {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   TOUR DETAIL - GALERÍA SECUNDARIA
========================================================= */

.tpp-tour-gallery-thumb {
    position: relative;

    display: block;

    height: 232px;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);
}

.tpp-tour-gallery-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.tpp-tour-gallery-thumb:hover img {
    transform: scale(1.05);
}


/* =========================================================
   TOUR DETAIL - TABS
========================================================= */

.tpp-tour-detail-tabs {
    margin-top: 30px;
}

.tpp-detail-nav {
    display: flex;

    gap: 10px;

    margin-bottom: 20px;

    padding: 8px;

    background: var(--tpp-white);

    border-radius: var(--tpp-radius-lg);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-detail-nav .nav-item {
    flex: 1;
}

.tpp-detail-nav .nav-link {
    width: 100%;

    padding: 13px 18px;

    border-radius: 12px;

    color: var(--tpp-gray-700);

    font-size: 0.88rem;
    font-weight: 700;

    transition: var(--tpp-transition);
}

.tpp-detail-nav .nav-link:hover {
    color: var(--tpp-orange);
}

.tpp-detail-nav .nav-link.active {
    background: var(--tpp-orange);

    color: var(--tpp-dark);
}


/* =========================================================
   TOUR DETAIL - RICH CONTENT
========================================================= */

.tpp-tour-rich-content {
    color: var(--tpp-gray-700);

    font-size: 0.92rem;
    line-height: 1.8;
}

.tpp-tour-rich-content p:last-child {
    margin-bottom: 0;
}

.tpp-tour-rich-content ul,
.tpp-tour-rich-content ol {
    padding-left: 20px;

    margin-bottom: 20px;
}

.tpp-tour-rich-content li {
    margin-bottom: 8px;
}

.tpp-tour-rich-content strong {
    color: var(--tpp-dark);
}

.tpp-tour-rich-content img {
    max-width: 100%;
    height: auto;

    border-radius: 12px;
}


/* =========================================================
   TOUR DETAIL - BLOCK ICON
========================================================= */

.tpp-tour-block-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal);

    font-size: 1.25rem;
}


/* =========================================================
   TOUR DETAIL - VIDEOS
========================================================= */

.tpp-tour-video {
    position: relative;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);

    background: #000;
}

.tpp-tour-video iframe {
    display: block;

    width: 100% !important;

    min-height: 420px;

    border: 0;
}


/* =========================================================
   TOUR DETAIL - IMPORTANT NOTES
========================================================= */

.tpp-tour-important-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.tpp-tour-important-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid var(--tpp-gray-200);

    color: var(--tpp-gray-700);

    font-size: 0.87rem;
    line-height: 1.7;
}

.tpp-tour-important-list li:first-child {
    padding-top: 0;
}

.tpp-tour-important-list li:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}

.tpp-tour-important-list i {
    margin-top: 4px;

    color: var(--tpp-teal);

    flex: 0 0 auto;
}


/* =========================================================
   BOOKING CARD - PRECIO ANTERIOR
========================================================= */

.tpp-tour-old-price {
    margin-bottom: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.82rem;

    text-decoration: line-through;
}


/* =========================================================
   BOOKING CARD - FORM FIELDS
========================================================= */

.tpp-booking-field {
    margin-bottom: 18px;
}

.tpp-booking-field label {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 8px;

    color: var(--tpp-gray-900);

    font-size: 0.78rem;
    font-weight: 700;
}

.tpp-booking-field label i {
    color: var(--tpp-orange);
}

.tpp-booking-field .form-control,
.tpp-booking-field .form-select {
    min-height: 46px;

    border-radius: 12px;

    border: 1px solid var(--tpp-gray-200);

    font-size: 0.85rem;

    background-color: var(--tpp-white);
}

.tpp-booking-field .form-control:focus,
.tpp-booking-field .form-select:focus {
    border-color: var(--tpp-orange);

    box-shadow:
        0 0 0 0.2rem
        rgba(245, 160, 0, 0.10);
}


/* =========================================================
   BOOKING CARD - BUTTON
========================================================= */

.tpp-tour-booking-card .btn-tpp-whatsapp {
    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   RESPONSIVE - TOUR DETAIL
========================================================= */

@media (max-width: 991.98px) {

    .tpp-tour-gallery-main {
        height: 420px;
    }

    .tpp-tour-gallery-thumb {
        height: 202px;
    }

    .tpp-tour-video iframe {
        min-height: 360px;
    }

}


@media (max-width: 767.98px) {

    .tpp-tour-gallery-main {
        height: 330px;
    }

    .tpp-tour-gallery-thumb {
        height: 180px;
    }

    .tpp-detail-nav {
        flex-direction: column;
    }

    .tpp-detail-nav .nav-item {
        width: 100%;
    }

    .tpp-tour-video iframe {
        min-height: 260px;
    }

}


@media (max-width: 575.98px) {

    .tpp-tour-gallery-main {
        height: 280px;
    }

    .tpp-tour-gallery-thumb {
        height: 145px;
    }

    .tpp-tour-detail-tabs {
        margin-top: 22px;
    }

    .tpp-tour-detail-block {
        padding: 20px;
    }

}


/* =========================================================
   PACKAGES LIST
========================================================= */

.tpp-packages-list-section {
    background: #f8f9fa;
}


/* =========================================================
   PACKAGE LIST CARD
========================================================= */

.tpp-package-list-card {
    min-height: 390px;
}


/* TITLE */

.tpp-package-title-link {
    color: var(--tpp-dark);

    transition: var(--tpp-transition);
}

.tpp-package-title-link:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   PACKAGE META
========================================================= */

.tpp-package-list-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px 15px;

    margin-bottom: 16px;
}

.tpp-package-list-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--tpp-gray-500);

    font-size: 0.76rem;
}

.tpp-package-list-meta i {
    color: var(--tpp-teal);
}


/* =========================================================
   PACKAGE BENEFITS
========================================================= */

.tpp-package-benefits {
    list-style: none;

    padding: 0;
    margin: 0 0 24px;
}

.tpp-package-benefits li {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

    color: var(--tpp-gray-700);

    font-size: 0.82rem;
}

.tpp-package-benefits li:last-child {
    margin-bottom: 0;
}

.tpp-package-benefits i {
    color: var(--tpp-teal);

    font-size: 0.85rem;
}


/* =========================================================
   PACKAGE LIST CTA
========================================================= */

.tpp-package-list-cta {
    padding: 0 0 90px;

    background: #f8f9fa;
}


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

@media (max-width: 1199.98px) {

    .tpp-package-list-card {
        min-height: auto;
    }

}


@media (max-width: 767.98px) {

    .tpp-package-list-cta {
        padding-bottom: 60px;
    }

}


/* =========================================================
   PACKAGE DETAIL - BASE
========================================================= */

.tpp-package-detail-section {
    background: #f8f9fa;
}


/* =========================================================
   PACKAGE ACCORDION
========================================================= */

.tpp-package-accordion {
    --bs-accordion-border-color: var(--tpp-gray-200);
}

.tpp-package-accordion .accordion-item {
    overflow: hidden;

    margin-bottom: 12px;

    border: 1px solid var(--tpp-gray-200);

    border-radius: 14px !important;

    background: var(--tpp-white);
}

.tpp-package-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.tpp-package-accordion .accordion-button {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 20px;

    background: var(--tpp-white);

    color: var(--tpp-dark);

    font-size: 0.92rem;
    font-weight: 700;

    box-shadow: none;
}

.tpp-package-accordion .accordion-button:not(.collapsed) {
    background:
        rgba(245, 160, 0, 0.08);

    color: var(--tpp-dark);

    box-shadow: none;
}

.tpp-package-accordion .accordion-button:focus {
    box-shadow: none;
}

.tpp-package-accordion .accordion-body {
    padding: 20px;

    border-top: 1px solid var(--tpp-gray-200);
}

.tpp-package-tour-number {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 0.75rem;
    font-weight: 800;
}


/* =========================================================
   PACKAGE TOUR META
========================================================= */

.tpp-package-tour-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 18px;
}

.tpp-package-tour-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    border-radius: 50px;

    background:
        rgba(0, 163, 163, 0.08);

    color: var(--tpp-teal-dark);

    font-size: 0.75rem;
    font-weight: 600;
}

.tpp-package-tour-meta i {
    color: var(--tpp-teal);
}


/* =========================================================
   PACKAGE TOUR GALLERY
========================================================= */

.tpp-package-tour-thumb {
    width: 100%;
    height: 110px;

    object-fit: cover;

    border-radius: 12px;

    transition: transform 0.35s ease;
}

.tpp-package-tour-thumb:hover {
    transform: scale(1.03);
}


/* =========================================================
   SIMPLE PACKAGE PRICE
========================================================= */

.tpp-package-simple-price {
    display: flex;

    align-items: flex-end;

    gap: 10px;

    padding: 24px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(245, 160, 0, 0.12),
            rgba(0, 163, 163, 0.08)
        );

    border:
        1px solid rgba(245, 160, 0, 0.18);
}

.tpp-package-simple-price span,
.tpp-package-simple-price small {
    color: var(--tpp-gray-500);

    font-size: 0.75rem;
}

.tpp-package-simple-price strong {
    color: var(--tpp-dark);

    font-size: 2rem;

    line-height: 1;
}


/* =========================================================
   HOTEL SELECTOR
========================================================= */

.tpp-package-hotel-selector {
    display: grid;

    gap: 14px;
}

.tpp-package-hotel-option {
    position: relative;

    display: grid;

    grid-template-columns:
        72px minmax(0, 1fr) auto;

    align-items: center;

    gap: 15px;

    padding: 15px;

    border: 2px solid var(--tpp-gray-200);

    border-radius: 16px;

    background: var(--tpp-white);

    cursor: pointer;

    transition: var(--tpp-transition);
}

.tpp-package-hotel-option:hover {
    border-color:
        rgba(245, 160, 0, 0.55);

    transform: translateY(-2px);
}

.tpp-package-hotel-option.active {
    border-color: var(--tpp-orange);

    background:
        rgba(245, 160, 0, 0.05);

    box-shadow:
        0 8px 24px rgba(245, 160, 0, 0.10);
}

.tpp-package-hotel-option input[type="radio"] {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* IMAGE */

.tpp-package-hotel-option-image {
    width: 72px;
    height: 72px;

    overflow: hidden;

    border-radius: 12px;
}

.tpp-package-hotel-option-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* INFO */

.tpp-package-hotel-option-info {
    min-width: 0;
}

.tpp-package-hotel-option-info strong {
    display: block;

    margin-bottom: 5px;

    color: var(--tpp-dark);

    font-size: 0.92rem;

    line-height: 1.4;
}

.tpp-package-hotel-stars {
    display: flex;

    gap: 2px;
}

.tpp-package-hotel-stars i {
    color: var(--tpp-orange);

    font-size: 0.75rem;
}


/* PRICE */

.tpp-package-hotel-option-price {
    min-width: 120px;

    text-align: right;
}

.tpp-package-hotel-option-price small {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.68rem;
}

.tpp-package-hotel-option-price strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 1.05rem;
}

.tpp-package-hotel-option-price a {
    display: inline-block;

    margin-top: 5px;

    color: var(--tpp-teal);

    font-size: 0.7rem;
    font-weight: 700;

    text-decoration: underline;
}

.tpp-package-hotel-option-price a:hover {
    color: var(--tpp-orange);
}


/* CHECK VISUAL */

.tpp-package-hotel-option::after {
    content: "\F26E";

    position: absolute;

    top: 10px;
    right: 10px;

    font-family: "bootstrap-icons";

    color: var(--tpp-orange);

    font-size: 1.15rem;

    opacity: 0;

    transform: scale(0.7);

    transition: var(--tpp-transition);
}

.tpp-package-hotel-option.active::after {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   MULTI HOTEL
========================================================= */

.tpp-package-city-hotels {
    height: 100%;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);

    border: 1px solid var(--tpp-gray-200);

    background: var(--tpp-white);
}

.tpp-package-city-hotels-header {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 18px;

    background:
        rgba(0, 163, 163, 0.07);

    border-bottom: 1px solid var(--tpp-gray-200);
}

.tpp-package-city-hotels-header > i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--tpp-teal);

    color: var(--tpp-white);

    font-size: 1rem;
}

.tpp-package-city-hotels-header small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.67rem;
}

.tpp-package-city-hotels-header strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.9rem;
}


/* LIST */

.tpp-package-city-hotels-list {
    padding: 12px;
}

.tpp-package-multihotel-option {
    position: relative;

    display: grid;

    grid-template-columns:
        58px minmax(0, 1fr) auto;

    align-items: center;

    gap: 12px;

    padding: 12px;

    margin-bottom: 10px;

    border-radius: 13px;

    border: 1px solid var(--tpp-gray-200);

    cursor: pointer;

    transition: var(--tpp-transition);
}

.tpp-package-multihotel-option:last-child {
    margin-bottom: 0;
}

.tpp-package-multihotel-option:hover {
    border-color:
        rgba(0, 163, 163, 0.45);
}

.tpp-package-multihotel-option.active {
    background:
        rgba(0, 163, 163, 0.06);

    border-color: var(--tpp-teal);
}

.tpp-package-multihotel-option input[type="radio"] {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* IMAGE */

.tpp-package-multihotel-image {
    width: 58px;
    height: 58px;

    overflow: hidden;

    border-radius: 10px;
}

.tpp-package-multihotel-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* INFO */

.tpp-package-multihotel-info {
    min-width: 0;
}

.tpp-package-multihotel-info strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.82rem;

    line-height: 1.4;
}

.tpp-package-multihotel-info a {
    display: inline-block;

    margin-top: 4px;

    color: var(--tpp-teal);

    font-size: 0.68rem;

    text-decoration: underline;
}


/* PRICE */

.tpp-package-multihotel-price {
    min-width: 95px;

    text-align: right;
}

.tpp-package-multihotel-price strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.92rem;
}

.tpp-package-multihotel-price small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;
}

.tpp-package-base-rate {
    display: inline-block;

    padding: 5px 9px;

    border-radius: 50px;

    background:
        rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal-dark);

    font-size: 0.67rem;
    font-weight: 700;
}

.tpp-package-price-negative {
    color: var(--tpp-pink) !important;
}


/* =========================================================
   PACKAGE SUMMARY
========================================================= */

.tpp-package-summary-price {
    margin-bottom: 15px;
}

.tpp-package-summary-price strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 2rem;

    line-height: 1.1;
}

.tpp-package-summary-price > span {
    color: var(--tpp-gray-500);

    font-size: 0.75rem;
}


/* =========================================================
   SELECTED HOTEL BOX
========================================================= */

.tpp-package-selected-box {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 14px;

    margin-bottom: 18px;

    border-radius: 13px;

    background:
        rgba(0, 163, 163, 0.07);

    border:
        1px solid rgba(0, 163, 163, 0.12);
}

.tpp-package-selected-box > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--tpp-teal);

    color: var(--tpp-white);
}

.tpp-package-selected-box small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.66rem;
}

.tpp-package-selected-box strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.8rem;

    line-height: 1.4;
}


/* =========================================================
   RELATED PACKAGE CARDS
========================================================= */

.tpp-package-related-card {
    height: 100%;

    overflow: hidden;

    border-radius: var(--tpp-radius-lg);

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-package-related-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--tpp-shadow);
}

.tpp-package-related-image {
    display: block;

    height: 210px;

    overflow: hidden;
}

.tpp-package-related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.tpp-package-related-card:hover
.tpp-package-related-image img {
    transform: scale(1.05);
}

.tpp-package-related-body {
    padding: 20px;
}

.tpp-package-related-body h3 {
    margin: 8px 0 12px;

    font-size: 1rem;

    line-height: 1.4;
}

.tpp-package-related-body h3 a {
    color: var(--tpp-dark);
}

.tpp-package-related-body h3 a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   STICKY SIDEBAR FIX
========================================================= */

#sectionBooking {
    position: sticky;

    top: 110px;

    align-self: flex-start;
}


/* =========================================================
   RESPONSIVE PACKAGE DETAIL
========================================================= */

@media (max-width: 1199.98px) {

    .tpp-package-hotel-option {
        grid-template-columns:
            64px minmax(0, 1fr);
    }

    .tpp-package-hotel-option-price {
        grid-column:
            1 / -1;

        text-align: left;

        padding-left: 79px;
    }

    .tpp-package-multihotel-option {
        grid-template-columns:
            52px minmax(0, 1fr);
    }

    .tpp-package-multihotel-price {
        grid-column:
            1 / -1;

        text-align: left;

        padding-left: 64px;
    }

}


@media (max-width: 991.98px) {

    #sectionBooking {
        position: static;
    }

    .tpp-package-related-image {
        height: 230px;
    }

}


@media (max-width: 767.98px) {

    .tpp-package-accordion
    .accordion-button {
        padding: 15px;

        font-size: 0.82rem;
    }

    .tpp-package-accordion
    .accordion-body {
        padding: 16px;
    }

    .tpp-package-tour-thumb {
        height: 130px;
    }

    .tpp-package-simple-price {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

    .tpp-package-hotel-option {
        grid-template-columns:
            58px minmax(0, 1fr);

        padding: 12px;
    }

    .tpp-package-hotel-option-image {
        width: 58px;
        height: 58px;
    }

    .tpp-package-hotel-option-price {
        padding-left: 73px;
    }

}


@media (max-width: 575.98px) {

    .tpp-package-city-hotels-list {
        padding: 8px;
    }

    .tpp-package-multihotel-option {
        grid-template-columns:
            48px minmax(0, 1fr);

        gap: 10px;

        padding: 10px;
    }

    .tpp-package-multihotel-image {
        width: 48px;
        height: 48px;
    }

    .tpp-package-multihotel-price {
        padding-left: 58px;
    }

    .tpp-package-related-image {
        height: 200px;
    }

}

/* =========================================================
   HOTEL LIST - NUEVO DISEÑO
========================================================= */

.tpp-hotels-list-section {
    background: #f7f8fa;
}


/* =========================================================
   SEARCH BAR
========================================================= */

.tpp-hotel-searchbar {
    margin-bottom: 32px;

    padding: 14px;

    border-radius: 18px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-hotel-search-input {
    position: relative;
}

.tpp-hotel-search-input > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--tpp-gray-500);

    z-index: 2;
}

.tpp-hotel-search-input .form-control {
    height: 52px;

    padding-left: 45px;

    border: 1px solid var(--tpp-gray-200);

    border-radius: 13px;

    font-size: 0.9rem;
}

.tpp-hotel-search-input .form-control:focus {
    border-color: var(--tpp-orange);

    box-shadow:
        0 0 0 0.2rem
        rgba(245, 160, 0, 0.10);
}

.tpp-hotel-search-btn {
    min-width: 135px;

    min-height: 52px;
}

.tpp-hotel-filter-mobile-btn {
    min-height: 48px;

    border-radius: 12px;

    background: var(--tpp-gray-100);

    border: 1px solid var(--tpp-gray-200);

    color: var(--tpp-dark);

    font-weight: 700;
}

.tpp-hotel-filter-mobile-btn:hover {
    background: var(--tpp-dark);

    color: var(--tpp-white);
}


/* =========================================================
   FILTER SIDEBAR
========================================================= */

.tpp-hotel-filter-sidebar {
    position: sticky;

    top: 110px;

    padding: 24px;

    border-radius: 20px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-hotel-filter-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 18px;

    margin-bottom: 22px;

    border-bottom: 1px solid var(--tpp-gray-200);
}

.tpp-hotel-filter-header h3 {
    margin: 0;

    font-size: 1.15rem;
}

.tpp-hotel-filter-header > i {
    color: var(--tpp-teal);

    font-size: 1.25rem;
}


/* =========================================================
   FILTER GROUP
========================================================= */

.tpp-hotel-filter-group {
    margin-bottom: 26px;
}

.tpp-hotel-filter-group h4 {
    margin-bottom: 13px;

    color: var(--tpp-dark);

    font-size: 0.85rem;
}

.tpp-hotel-filter-option {
    position: relative;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 11px;

    color: var(--tpp-gray-700);

    font-size: 0.82rem;

    cursor: pointer;

    transition: var(--tpp-transition);
}

.tpp-hotel-filter-option:last-child {
    margin-bottom: 0;
}

.tpp-hotel-filter-option:hover {
    color: var(--tpp-dark);
}

.tpp-hotel-filter-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.tpp-hotel-radio {
    position: relative;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    border-radius: 50%;

    border: 2px solid var(--tpp-gray-200);

    background: var(--tpp-white);

    transition: var(--tpp-transition);
}

.tpp-hotel-filter-option input:checked + .tpp-hotel-radio {
    border-color: var(--tpp-orange);
}

.tpp-hotel-filter-option input:checked + .tpp-hotel-radio::after {
    content: "";

    position: absolute;

    inset: 3px;

    border-radius: 50%;

    background: var(--tpp-orange);
}

.tpp-hotel-filter-stars {
    display: inline-flex;

    gap: 2px;
}

.tpp-hotel-filter-stars i {
    color: var(--tpp-orange);

    font-size: 0.72rem;
}

.tpp-hotel-filter-clear {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 15px;

    color: var(--tpp-gray-500);

    font-size: 0.78rem;
}

.tpp-hotel-filter-clear:hover {
    color: var(--tpp-pink);
}


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

.tpp-hotel-results-header {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.tpp-hotel-results-header h2 {
    margin: 0;

    font-size: 1.75rem;
}


/* =========================================================
   HOTEL HORIZONTAL LIST
========================================================= */

.tpp-hotel-list {
    display: grid;

    gap: 22px;
}

.tpp-hotel-horizontal-card {
    display: grid;

    grid-template-columns:
        minmax(280px, 38%)
        minmax(0, 62%);

    overflow: hidden;

    min-height: 300px;

    border-radius: 22px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-hotel-horizontal-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--tpp-shadow);
}


/* =========================================================
   HOTEL IMAGE
========================================================= */

.tpp-hotel-horizontal-image {
    position: relative;

    display: block;

    min-height: 300px;

    overflow: hidden;

    background: var(--tpp-gray-100);
}

.tpp-hotel-horizontal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-hotel-horizontal-card:hover
.tpp-hotel-horizontal-image img {
    transform: scale(1.04);
}

.tpp-hotel-horizontal-location {
    position: absolute;

    left: 15px;
    top: 15px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.78);

    color: var(--tpp-white);

    font-size: 0.7rem;
    font-weight: 700;

    backdrop-filter: blur(8px);
}

.tpp-hotel-horizontal-location i {
    color: var(--tpp-orange);
}


/* =========================================================
   HOTEL CONTENT
========================================================= */

.tpp-hotel-horizontal-content {
    display: flex;

    flex-direction: column;

    padding: 26px 28px;
}

.tpp-hotel-horizontal-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 14px;
}

.tpp-hotel-horizontal-top h3 {
    margin: 0;

    font-size: 1.35rem;

    line-height: 1.35;
}

.tpp-hotel-horizontal-top h3 a {
    color: var(--tpp-dark);
}

.tpp-hotel-horizontal-top h3 a:hover {
    color: var(--tpp-orange);
}

.tpp-hotel-category-badge {
    flex: 0 0 auto;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal-dark);

    font-size: 0.7rem;
    font-weight: 700;
}


/* =========================================================
   HOTEL META
========================================================= */

.tpp-hotel-horizontal-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px 16px;

    margin-bottom: 14px;
}

.tpp-hotel-horizontal-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--tpp-gray-500);

    font-size: 0.75rem;
}

.tpp-hotel-horizontal-meta i {
    color: var(--tpp-teal);
}


/* =========================================================
   HOTEL DESCRIPTION
========================================================= */

.tpp-hotel-horizontal-description {
    margin-bottom: 20px;

    color: var(--tpp-gray-700);

    font-size: 0.87rem;

    line-height: 1.75;
}


/* =========================================================
   HOTEL FOOTER
========================================================= */

.tpp-hotel-horizontal-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid var(--tpp-gray-200);
}

.tpp-hotel-horizontal-helper {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--tpp-gray-500);

    font-size: 0.75rem;
}

.tpp-hotel-horizontal-helper i {
    color: var(--tpp-teal);
}


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.tpp-hotel-filter-offcanvas {
    width: min(88vw, 360px) !important;
}

.tpp-hotel-filter-offcanvas .offcanvas-header {
    padding: 22px;

    border-bottom: 1px solid var(--tpp-gray-200);
}

.tpp-hotel-filter-offcanvas .offcanvas-body {
    padding: 22px;
}


/* =========================================================
   CTA
========================================================= */

.tpp-hotel-list-cta {
    padding: 0 0 90px;

    background: #f7f8fa;
}


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

@media (max-width: 1199.98px) {

    .tpp-hotel-horizontal-card {
        grid-template-columns:
            minmax(250px, 36%)
            minmax(0, 64%);
    }

}


@media (max-width: 991.98px) {

    .tpp-hotel-results-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-hotel-horizontal-card {
        grid-template-columns:
            minmax(240px, 40%)
            minmax(0, 60%);
    }

    .tpp-hotel-horizontal-top {
        flex-direction: column;
    }

}


@media (max-width: 767.98px) {

    .tpp-hotel-searchbar {
        padding: 12px;
    }

    .tpp-hotel-search-btn {
        width: 100%;
    }

    .tpp-hotel-horizontal-card {
        display: block;

        min-height: auto;
    }

    .tpp-hotel-horizontal-image {
        height: 260px;
        min-height: 260px;
    }

    .tpp-hotel-horizontal-content {
        padding: 22px;
    }

    .tpp-hotel-horizontal-top {
        gap: 10px;
    }

    .tpp-hotel-horizontal-footer {
        align-items: stretch;

        flex-direction: column;
    }

    .tpp-hotel-horizontal-footer .btn {
        width: 100%;
    }

    .tpp-hotel-list-cta {
        padding-bottom: 60px;
    }

}


@media (max-width: 575.98px) {

    .tpp-hotel-horizontal-image {
        height: 220px;
        min-height: 220px;
    }

    .tpp-hotel-horizontal-content {
        padding: 18px;
    }

    .tpp-hotel-horizontal-top h3 {
        font-size: 1.15rem;
    }

    .tpp-hotel-category-badge {
        font-size: 0.65rem;
    }

}


/* =========================================================
   HOTEL LIST V2
   Ajustes para galería + servicios + descripción
========================================================= */


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

.tpp-hotel-horizontal-card {
    display: grid;

    grid-template-columns:
        minmax(300px, 39%)
        minmax(0, 61%);

    min-height: 360px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-hotel-horizontal-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--tpp-shadow);
}


/* =========================================================
   IMAGE / CAROUSEL
========================================================= */

.tpp-hotel-horizontal-image {
    position: relative;

    display: block;

    min-width: 0;

    height: 100%;
    min-height: 360px;

    overflow: hidden;

    background: #e9ecef;
}


/* Bootstrap carousel debe ocupar todo */

.tpp-hotel-horizontal-image .carousel,
.tpp-hotel-horizontal-image .carousel-inner,
.tpp-hotel-horizontal-image .carousel-item {
    width: 100%;
    height: 100%;
}


/* Imagen */

.tpp-hotel-horizontal-image .carousel-item img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    min-height: 360px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}


.tpp-hotel-horizontal-card:hover
.tpp-hotel-horizontal-image
.carousel-item.active img {
    transform: scale(1.035);
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.tpp-hotel-horizontal-image
.carousel-control-prev,

.tpp-hotel-horizontal-image
.carousel-control-next {

    top: 50%;

    width: 38px;
    height: 38px;

    margin-top: -19px;

    opacity: 0;

    border-radius: 50%;

    background: rgba(17, 17, 17, 0.62);

    transition: var(--tpp-transition);
}


.tpp-hotel-horizontal-image
.carousel-control-prev {

    left: 12px;
}


.tpp-hotel-horizontal-image
.carousel-control-next {

    right: 12px;
}


.tpp-hotel-horizontal-card:hover
.carousel-control-prev,

.tpp-hotel-horizontal-card:hover
.carousel-control-next {

    opacity: 1;
}


.tpp-hotel-horizontal-image
.carousel-control-prev-icon,

.tpp-hotel-horizontal-image
.carousel-control-next-icon {

    width: 16px;
    height: 16px;
}


/* =========================================================
   LOCATION
========================================================= */

.tpp-hotel-horizontal-location {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 12px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.82);

    color: var(--tpp-white);

    font-size: 0.70rem;
    font-weight: 700;

    text-transform: uppercase;

    backdrop-filter: blur(8px);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);
}


.tpp-hotel-horizontal-location i {
    color: var(--tpp-orange);
}


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

.tpp-hotel-horizontal-content {
    min-width: 0;

    display: flex;

    flex-direction: column;

    padding: 26px 28px;
}


/* =========================================================
   TOP
========================================================= */

.tpp-hotel-horizontal-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 10px;
}


.tpp-hotel-horizontal-top > div {
    min-width: 0;
}


.tpp-hotel-horizontal-top h3 {
    margin: 0;

    font-size: 1.32rem;

    line-height: 1.3;
}


.tpp-hotel-horizontal-top h3 a {
    color: var(--tpp-dark);

    transition: var(--tpp-transition);
}


.tpp-hotel-horizontal-top h3 a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   STARS
========================================================= */

.tpp-hotel-stars {
    display: flex;

    gap: 3px;
}


.tpp-hotel-stars i {
    color: var(--tpp-orange);

    font-size: 0.78rem;
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.tpp-hotel-category-badge {
    flex: 0 0 auto;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal-dark);

    font-size: 0.68rem;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   META
========================================================= */

.tpp-hotel-horizontal-meta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px 15px;

    margin-bottom: 14px;
}


.tpp-hotel-horizontal-meta span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--tpp-gray-500);

    font-size: 0.73rem;
}


.tpp-hotel-horizontal-meta i {
    color: var(--tpp-teal);
}


/* =========================================================
   HOTEL SERVICES
========================================================= */

.tpp-hotel-services {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 16px;
}


.tpp-hotel-services span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 9px;

    border-radius: 8px;

    border: 1px solid var(--tpp-gray-200);

    background: #fafafa;

    color: var(--tpp-gray-700);

    font-size: 0.68rem;

    line-height: 1.2;
}


.tpp-hotel-services span i {
    color: var(--tpp-teal);

    font-size: 0.72rem;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tpp-hotel-horizontal-description {
    position: relative;

    margin-bottom: 18px;

    overflow: hidden;

    color: var(--tpp-gray-700);

    font-size: 0.82rem;

    line-height: 1.7;


    /*
     * Evitamos que una descripción larga
     * haga crecer demasiado el card.
     */
    display: -webkit-box;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}


.tpp-hotel-horizontal-description p {
    margin: 0;
}


.tpp-hotel-horizontal-description p + p {
    margin-top: 8px;
}


/* =========================================================
   FOOTER
========================================================= */

.tpp-hotel-horizontal-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid var(--tpp-gray-200);
}


.tpp-hotel-horizontal-helper {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--tpp-gray-500);

    font-size: 0.72rem;
}


.tpp-hotel-horizontal-helper i {
    color: var(--tpp-teal);
}


.tpp-hotel-horizontal-footer
.btn-tpp-primary {

    flex: 0 0 auto;
}


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

.tpp-hotel-results-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}


.tpp-hotel-results-header h2 {
    margin: 0;

    font-size: 1.75rem;
}


/* =========================================================
   FILTER SIDEBAR
========================================================= */

.tpp-hotel-filter-sidebar {
    position: sticky;

    top: 110px;

    max-height: calc(100vh - 130px);

    overflow-y: auto;

    padding: 24px;

    border-radius: 20px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);
}


/* scrollbar discreto */

.tpp-hotel-filter-sidebar::-webkit-scrollbar {
    width: 5px;
}


.tpp-hotel-filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--tpp-gray-200);

    border-radius: 10px;
}


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

@media (max-width: 1199.98px) {

    .tpp-hotel-horizontal-card {
        grid-template-columns:
            minmax(270px, 38%)
            minmax(0, 62%);
    }


    .tpp-hotel-horizontal-content {
        padding: 23px;
    }


    .tpp-hotel-horizontal-description {
        -webkit-line-clamp: 3;
    }

}


@media (max-width: 991.98px) {

    .tpp-hotel-results-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .tpp-hotel-horizontal-card {
        grid-template-columns:
            minmax(240px, 40%)
            minmax(0, 60%);
    }


    .tpp-hotel-horizontal-top {
        flex-direction: column;

        gap: 8px;
    }


    .tpp-hotel-horizontal-image,
    .tpp-hotel-horizontal-image
    .carousel-item img {

        min-height: 350px;
    }

}


@media (max-width: 767.98px) {

    .tpp-hotel-horizontal-card {
        display: block;

        min-height: auto;
    }


    .tpp-hotel-horizontal-image {
        height: 275px;

        min-height: 275px;
    }


    .tpp-hotel-horizontal-image
    .carousel-item img {

        height: 275px !important;

        min-height: 275px;
    }


    .tpp-hotel-horizontal-content {
        padding: 22px;
    }


    .tpp-hotel-horizontal-description {
        -webkit-line-clamp: 4;
    }


    .tpp-hotel-horizontal-footer {
        align-items: stretch;

        flex-direction: column;
    }


    .tpp-hotel-horizontal-footer
    .btn {

        width: 100%;
    }


    .tpp-hotel-horizontal-image
    .carousel-control-prev,

    .tpp-hotel-horizontal-image
    .carousel-control-next {

        opacity: 1;
    }

}


@media (max-width: 575.98px) {

    .tpp-hotel-horizontal-image {
        height: 230px;

        min-height: 230px;
    }


    .tpp-hotel-horizontal-image
    .carousel-item img {

        height: 230px !important;

        min-height: 230px;
    }


    .tpp-hotel-horizontal-content {
        padding: 18px;
    }


    .tpp-hotel-horizontal-top h3 {
        font-size: 1.1rem;
    }


    .tpp-hotel-services {
        gap: 5px;
    }


    .tpp-hotel-services span {
        padding: 5px 7px;

        font-size: 0.64rem;
    }

}


/* =========================================================
   HOTEL DETAIL
========================================================= */

.tpp-hotel-detail-section {
    background: #f7f8fa;
}


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

.tpp-hotel-detail-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
    background: var(--tpp-dark);
}

.tpp-hotel-detail-hero-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.02);
}

.tpp-hotel-detail-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 12, 15, 0.10) 10%,
            rgba(5, 12, 15, 0.88) 100%
        );
}

.tpp-hotel-detail-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding: 110px 0 45px;
}

.tpp-hotel-detail-stars {
    display: flex;
    gap: 4px;

    margin: 16px 0 12px;
}

.tpp-hotel-detail-stars i {
    color: var(--tpp-orange);
    font-size: 0.9rem;
}

.tpp-hotel-detail-hero h1 {
    color: var(--tpp-white);

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;

    margin-bottom: 18px;
}

.tpp-hotel-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 20px;
}

.tpp-hotel-detail-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.82rem;
}

.tpp-hotel-detail-meta i {
    color: var(--tpp-orange);
}


/* =========================================================
   GALLERY
========================================================= */

.tpp-hotel-detail-gallery {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(0, 1fr);

    gap: 14px;

    height: 520px;

    padding: 14px;

    border-radius: 24px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-hotel-detail-gallery-main,
.tpp-hotel-detail-gallery-main > a,
.tpp-hotel-detail-gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 16px;
}

.tpp-hotel-detail-gallery-main img,
.tpp-hotel-detail-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-hotel-detail-gallery-main:hover img,
.tpp-hotel-detail-gallery-item:hover img {
    transform: scale(1.045);
}

.tpp-hotel-detail-gallery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;

    gap: 14px;

    min-width: 0;
}

.tpp-hotel-detail-gallery-open {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.78);

    color: var(--tpp-white);

    font-size: 0.75rem;

    backdrop-filter: blur(8px);
}

.tpp-hotel-detail-gallery-more {
    position: absolute;
    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(17, 17, 17, 0.48);

    color: var(--tpp-white);

    font-family: var(--tpp-font-heading);

    font-size: 1rem;
    font-weight: 700;

    backdrop-filter: blur(2px);
}


/* =========================================================
   BLOCK TITLE
========================================================= */

.tpp-hotel-detail-block-title {
    font-size: 1.45rem;
}


/* =========================================================
   SERVICES
========================================================= */

.tpp-hotel-detail-services {
    display: grid;

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

    gap: 12px;
}

.tpp-hotel-detail-service {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 15px;

    border-radius: 13px;

    background: var(--tpp-gray-100);

    color: var(--tpp-gray-700);

    font-size: 0.82rem;
}

.tpp-hotel-detail-service-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal);

    font-size: 0.9rem;
}


/* =========================================================
   RELATED PACKAGES
========================================================= */

.tpp-hotel-package-list {
    display: grid;
    gap: 12px;
}

.tpp-hotel-package-item {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px;

    border-radius: 14px;

    border: 1px solid var(--tpp-gray-200);

    background: var(--tpp-white);
}

.tpp-hotel-package-info {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 0;
}

.tpp-hotel-package-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(245, 160, 0, 0.12);

    color: var(--tpp-orange);

    font-size: 1rem;
}

.tpp-hotel-package-info strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.84rem;

    line-height: 1.4;
}

.tpp-hotel-package-info small {
    display: block;

    margin-top: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.68rem;
}

.tpp-hotel-package-action {
    flex: 0 0 auto;
    text-align: right;
}

.tpp-hotel-package-action > strong {
    display: block;

    margin-bottom: 5px;

    color: var(--tpp-dark);

    font-size: 1rem;
}


/* =========================================================
   VIDEO
========================================================= */

.tpp-hotel-video {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    background: #000;
}

.tpp-hotel-video iframe {
    display: block;

    width: 100% !important;
    min-height: 320px;

    border: 0;
}


/* =========================================================
   MAP
========================================================= */

.tpp-hotel-map {
    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    background: var(--tpp-gray-100);
}

.tpp-hotel-map iframe {
    display: block;

    width: 100% !important;
    min-height: 420px;

    border: 0 !important;
}


/* =========================================================
   BOOKING SIDEBAR
========================================================= */

.tpp-hotel-booking-card {
    position: sticky;

    top: 110px;

    padding: 28px;

    border-radius: 22px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow);
}

.tpp-hotel-booking-head {
    padding-bottom: 18px;

    margin-bottom: 20px;

    border-bottom: 1px solid var(--tpp-gray-200);
}

.tpp-hotel-booking-head h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.tpp-hotel-booking-head p {
    margin: 0;

    color: var(--tpp-gray-500);

    font-size: 0.78rem;
    line-height: 1.6;
}

.tpp-hotel-booking-summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 13px 14px;

    margin: 5px 0 20px;

    border-radius: 12px;

    background: rgba(0, 163, 163, 0.07);

    border: 1px solid rgba(0, 163, 163, 0.10);
}

.tpp-hotel-booking-summary > div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--tpp-gray-700);

    font-size: 0.78rem;
}

.tpp-hotel-booking-summary i {
    color: var(--tpp-teal);
}

.tpp-hotel-booking-summary strong {
    color: var(--tpp-dark);
    font-size: 1rem;
}


/* =========================================================
   RELATED HOTELS
========================================================= */

.tpp-hotel-related-section {
    background: var(--tpp-white);
}


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

@media (max-width: 991.98px) {

    .tpp-hotel-detail-gallery {
        height: 470px;
    }

    .tpp-hotel-booking-card {
        position: static;
    }

}


@media (max-width: 767.98px) {

    .tpp-hotel-detail-hero {
        min-height: 360px;
    }

    .tpp-hotel-detail-hero-content {
        padding: 90px 0 38px;
    }

    .tpp-hotel-detail-gallery {
        display: block;

        height: auto;

        padding: 10px;
    }

    .tpp-hotel-detail-gallery-main {
        height: 330px;
    }

    .tpp-hotel-detail-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 155px);

        margin-top: 10px;

        gap: 10px;
    }

    .tpp-hotel-detail-services {
        grid-template-columns: 1fr;
    }

    .tpp-hotel-package-item {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-hotel-package-action {
        width: 100%;

        text-align: left;
    }

    .tpp-hotel-video iframe {
        min-height: 260px;
    }

    .tpp-hotel-map iframe {
        min-height: 330px;
    }

}


@media (max-width: 575.98px) {

    .tpp-hotel-detail-hero h1 {
        font-size: 2.2rem;
    }

    .tpp-hotel-detail-gallery-main {
        height: 270px;
    }

    .tpp-hotel-detail-gallery-grid {
        grid-template-rows: repeat(2, 120px);
    }

    .tpp-hotel-booking-card {
        padding: 22px;
    }

}


/* =========================================================
   RELATED HOTELS - MEJORA VISUAL
========================================================= */

.tpp-hotel-related-section {
    background: #ffffff;
}


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

.tpp-hotel-related-section .tpp-hotel-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 22px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.tpp-hotel-related-section .tpp-hotel-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   IMAGE
========================================================= */

.tpp-hotel-related-section .tpp-hotel-image {
    position: relative;

    display: block;

    height: 285px;

    overflow: hidden;

    background: var(--tpp-gray-100);
}


.tpp-hotel-related-section .tpp-hotel-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.5s ease;
}


.tpp-hotel-related-section
.tpp-hotel-card:hover
.tpp-hotel-image img {
    transform: scale(1.05);
}


/* =========================================================
   LOCATION BADGE
========================================================= */

.tpp-hotel-related-section
.tpp-hotel-location-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    border-radius: 50px;

    background:
        rgba(17, 17, 17, 0.76);

    color: #fff;

    font-size: 0.68rem;

    font-weight: 700;

    backdrop-filter: blur(8px);
}


.tpp-hotel-related-section
.tpp-hotel-location-badge i {
    color: var(--tpp-orange);
}


/* =========================================================
   BODY
========================================================= */

.tpp-hotel-related-section .tpp-hotel-body {
    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 22px;
}


/* =========================================================
   STARS
========================================================= */

.tpp-hotel-related-section .tpp-hotel-stars {
    display: flex;

    gap: 3px;

    min-height: 16px;
}


.tpp-hotel-related-section .tpp-hotel-stars i {
    color: var(--tpp-orange);

    font-size: 0.78rem;
}


/* =========================================================
   TITLE
========================================================= */

.tpp-hotel-related-section .tpp-hotel-body h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tpp-hotel-related-section
.tpp-hotel-body h3 a {
    color: var(--tpp-dark);

    transition:
        var(--tpp-transition);
}


.tpp-hotel-related-section
.tpp-hotel-body h3 a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   META
========================================================= */

.tpp-hotel-related-section
.tpp-hotel-list-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px 14px;

    margin-bottom: 14px;
}


.tpp-hotel-related-section
.tpp-hotel-list-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--tpp-gray-500);

    font-size: 0.72rem;
}


.tpp-hotel-related-section
.tpp-hotel-list-meta i {
    color: var(--tpp-teal);
}


/* =========================================================
   SERVICES
========================================================= */

.tpp-hotel-related-section
.tpp-hotel-services {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 20px;
}


.tpp-hotel-related-section
.tpp-hotel-services span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 9px;

    border-radius: 8px;

    background: #f8fafb;

    border:
        1px solid var(--tpp-gray-200);

    color: var(--tpp-gray-700);

    font-size: 0.66rem;

    line-height: 1.2;
}


.tpp-hotel-related-section
.tpp-hotel-services i {
    color: var(--tpp-teal);

    font-size: 0.68rem;
}


/* =========================================================
   LINK / FOOTER
========================================================= */

.tpp-hotel-related-section
.tpp-hotel-body > .tpp-link-arrow {
    margin-top: auto;

    padding-top: 17px;

    border-top:
        1px solid var(--tpp-gray-200);

    font-size: 0.78rem;

    font-weight: 700;
}


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

.tpp-hotel-related-section
.tpp-section-title {
    margin-bottom: 12px;
}


.tpp-hotel-related-section
.tpp-section-description {
    max-width: 550px;
}


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

@media (max-width: 1199.98px) {

    .tpp-hotel-related-section
    .tpp-hotel-image {
        height: 255px;
    }

}


@media (max-width: 991.98px) {

    .tpp-hotel-related-section
    .tpp-hotel-image {
        height: 260px;
    }

}


@media (max-width: 767.98px) {

    .tpp-hotel-related-section
    .tpp-hotel-image {
        height: 240px;
    }


    .tpp-hotel-related-section
    .tpp-hotel-body h3 {
        min-height: auto;

        font-size: 1.08rem;
    }


    .tpp-hotel-related-section
    .tpp-hotel-body {
        padding: 18px;
    }

}


@media (max-width: 575.98px) {

    .tpp-hotel-related-section
    .tpp-hotel-image {
        height: 220px;
    }


    .tpp-hotel-related-section
    .tpp-hotel-services span {
        font-size: 0.62rem;

        padding: 5px 7px;
    }

}



/* =========================================================
   BLOG LIST
========================================================= */

.tpp-blog-list-section {
    background: #f7f8fa;
}


/* =========================================================
   HEADING
========================================================= */

.tpp-blog-list-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}


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

.tpp-blog-list-grid {
    display: grid;

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

    gap: 24px;
}


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

.tpp-blog-list-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 22px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-blog-list-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--tpp-shadow);
}


/* =========================================================
   IMAGE
========================================================= */

.tpp-blog-list-image {
    position: relative;

    display: block;

    height: 250px;

    overflow: hidden;

    background: var(--tpp-gray-100);
}

.tpp-blog-list-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-blog-list-card:hover
.tpp-blog-list-image img {
    transform: scale(1.05);
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.tpp-blog-list-category {
    position: absolute;

    left: 16px;
    bottom: 16px;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(0, 163, 163, 0.92);

    color: var(--tpp-white);

    font-size: 0.68rem;
    font-weight: 700;

    backdrop-filter: blur(8px);
}


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

.tpp-blog-list-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 22px;
}

.tpp-blog-list-content h3 {
    margin-bottom: 12px;

    font-size: 1.15rem;

    line-height: 1.4;
}

.tpp-blog-list-content h3 a {
    color: var(--tpp-dark);
}

.tpp-blog-list-content h3 a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   PREVIEW
========================================================= */

.tpp-blog-list-preview {
    display: -webkit-box;

    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

    overflow: hidden;

    margin-bottom: 18px;

    color: var(--tpp-gray-700);

    font-size: 0.82rem;

    line-height: 1.7;
}

.tpp-blog-list-preview p {
    margin: 0;
}

.tpp-blog-list-preview img,
.tpp-blog-list-preview iframe,
.tpp-blog-list-preview video {
    display: none !important;
}


/* =========================================================
   FOOTER
========================================================= */

.tpp-blog-list-footer {
    margin-top: auto;

    padding-top: 16px;

    border-top: 1px solid var(--tpp-gray-200);
}


/* =========================================================
   SIDEBAR
========================================================= */

.tpp-blog-sidebar {
    position: sticky;

    top: 110px;

    display: grid;

    gap: 24px;
}

.tpp-blog-sidebar-block {
    padding: 24px;

    border-radius: 20px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-blog-sidebar-block h3 {
    margin-bottom: 18px;

    font-size: 1.2rem;
}


/* =========================================================
   CATEGORIES
========================================================= */

.tpp-blog-category-list {
    display: grid;

    gap: 9px;
}

.tpp-blog-category-item {
    padding: 11px 12px;

    border-radius: 10px;

    background: var(--tpp-gray-100);

    color: var(--tpp-gray-700);

    font-size: 0.78rem;
}

.tpp-blog-category-item span {
    display: flex;

    align-items: center;

    gap: 8px;
}

.tpp-blog-category-item i {
    color: var(--tpp-teal);
}


/* =========================================================
   POPULAR POSTS
========================================================= */

.tpp-blog-popular-list {
    display: grid;

    gap: 16px;
}

.tpp-blog-popular-item {
    display: grid;

    grid-template-columns: 82px minmax(0, 1fr);

    gap: 12px;

    align-items: center;
}

.tpp-blog-popular-image {
    display: block;

    width: 82px;
    height: 72px;

    overflow: hidden;

    border-radius: 11px;
}

.tpp-blog-popular-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.tpp-blog-popular-content {
    min-width: 0;
}

.tpp-blog-popular-content > span {
    display: block;

    margin-bottom: 3px;

    color: var(--tpp-teal);

    font-size: 0.64rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.4px;
}

.tpp-blog-popular-content h4 {
    margin: 0;

    font-size: 0.82rem;

    line-height: 1.45;
}

.tpp-blog-popular-content h4 a {
    color: var(--tpp-dark);
}

.tpp-blog-popular-content h4 a:hover {
    color: var(--tpp-orange);
}


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

@media (max-width: 991.98px) {

    .tpp-blog-sidebar {
        position: static;
    }

}


@media (max-width: 767.98px) {

    .tpp-blog-list-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-blog-list-grid {
        grid-template-columns: 1fr;
    }

    .tpp-blog-list-image {
        height: 240px;
    }

}


@media (max-width: 575.98px) {

    .tpp-blog-list-image {
        height: 215px;
    }

    .tpp-blog-list-content,
    .tpp-blog-sidebar-block {
        padding: 18px;
    }

}



/* =========================================================
   BLOG DETAIL
========================================================= */

.tpp-blog-detail-section {
    background: #f7f8fa;
}


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

.tpp-blog-detail-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--tpp-dark);
}

.tpp-blog-detail-hero-image {
    position: absolute;

    inset: 0;
}

.tpp-blog-detail-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.tpp-blog-detail-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 12, 15, 0.15) 0%,
            rgba(5, 12, 15, 0.35) 45%,
            rgba(5, 12, 15, 0.94) 100%
        );
}

.tpp-blog-detail-hero-content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 120px 0 58px;
}

.tpp-blog-detail-category {
    display: inline-flex;

    padding: 7px 13px;

    margin: 16px 0 14px;

    border-radius: 50px;

    background: var(--tpp-teal);

    color: var(--tpp-white);

    font-size: 0.7rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.tpp-blog-detail-hero h1 {
    max-width: 850px;

    margin-bottom: 18px;

    color: var(--tpp-white);

    font-size: clamp(2.5rem, 5vw, 4.6rem);

    line-height: 1.08;
}

.tpp-blog-detail-date {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.82rem;
}

.tpp-blog-detail-date i {
    color: var(--tpp-orange);
}


/* =========================================================
   GALLERY
========================================================= */

.tpp-blog-detail-gallery {
    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(260px, 0.75fr);

    gap: 12px;

    height: 500px;

    margin-bottom: 40px;

    padding: 12px;

    overflow: hidden;

    border-radius: 24px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}


/* MAIN */

.tpp-blog-detail-gallery-main {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-radius: 17px;

    background: var(--tpp-gray-100);
}

.tpp-blog-detail-gallery-main img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.tpp-blog-detail-gallery-main:hover img {
    transform: scale(1.035);
}


/* SIDE */

.tpp-blog-detail-gallery-side {
    display: grid;

    min-width: 0;
    min-height: 0;

    gap: 12px;
}

.tpp-blog-detail-gallery-side-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.tpp-blog-detail-gallery-side-2 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.tpp-blog-detail-gallery-side-3 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.tpp-blog-detail-gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-radius: 15px;

    background: var(--tpp-gray-100);
}

.tpp-blog-detail-gallery-item img {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}

.tpp-blog-detail-gallery-item:hover img {
    transform: scale(1.05);
}


/* VIEW */

.tpp-blog-detail-gallery-view {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.78);

    color: var(--tpp-white);

    font-size: 0.73rem;

    font-weight: 600;

    backdrop-filter: blur(8px);

    pointer-events: none;
}


/* MORE */

.tpp-blog-detail-gallery-more {
    position: absolute;

    inset: 0;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(8, 13, 16, 0.50);

    color: var(--tpp-white);

    font-family: var(--tpp-font-heading);

    font-size: 0.9rem;

    font-weight: 700;

    backdrop-filter: blur(2px);

    pointer-events: none;
}


/* =========================================================
   ARTICLE
========================================================= */

.tpp-blog-article {
    position: relative;

    z-index: 1;

    clear: both;

    padding: 45px 50px;

    border-radius: 24px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-blog-article-content {
    color: var(--tpp-gray-700);

    font-size: 1rem;

    line-height: 1.9;
}

.tpp-blog-article-content p {
    margin-bottom: 20px;
}

.tpp-blog-article-content h2 {
    margin-top: 38px;
    margin-bottom: 16px;

    color: var(--tpp-dark);

    font-size: 1.8rem;
}

.tpp-blog-article-content h3 {
    margin-top: 30px;
    margin-bottom: 14px;

    color: var(--tpp-dark);

    font-size: 1.4rem;
}

.tpp-blog-article-content h4 {
    margin-top: 26px;
    margin-bottom: 12px;

    color: var(--tpp-dark);

    font-size: 1.15rem;
}

.tpp-blog-article-content ul,
.tpp-blog-article-content ol {
    margin-bottom: 22px;

    padding-left: 22px;
}

.tpp-blog-article-content li {
    margin-bottom: 8px;
}

.tpp-blog-article-content img {
    max-width: 100%;
    height: auto;

    margin: 18px 0;

    border-radius: 16px;
}

.tpp-blog-article-content iframe {
    width: 100% !important;

    min-height: 420px;

    margin: 20px 0;

    border: 0;

    border-radius: 16px;
}

.tpp-blog-article-content blockquote {
    margin: 30px 0;

    padding: 22px 25px;

    border-left: 4px solid var(--tpp-orange);

    border-radius: 0 14px 14px 0;

    background: var(--tpp-gray-100);

    color: var(--tpp-dark);
}


/* =========================================================
   ARTICLE FOOTER
========================================================= */

.tpp-blog-detail-footer {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding: 25px;

    border-radius: 20px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-blog-share > span,
.tpp-blog-detail-tags > span {
    display: block;

    margin-bottom: 10px;

    color: var(--tpp-dark);

    font-size: 0.75rem;

    font-weight: 700;
}


/* SHARE */

.tpp-blog-share-buttons {
    display: flex;

    gap: 8px;
}

.tpp-blog-share-buttons a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--tpp-gray-100);

    color: var(--tpp-dark);

    transition: var(--tpp-transition);
}

.tpp-blog-share-buttons a:hover {
    background: var(--tpp-orange);

    color: var(--tpp-dark);

    transform: translateY(-2px);
}


/* TAGS */

.tpp-blog-detail-tag-list {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 7px;
}

.tpp-blog-detail-tag {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 10px;

    border-radius: 50px;

    background: var(--tpp-gray-100);

    color: var(--tpp-gray-700);

    font-size: 0.7rem;
}

.tpp-blog-detail-tag small {
    min-width: 20px;
    height: 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--tpp-teal);

    color: var(--tpp-white);

    font-size: 0.6rem;
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.tpp-blog-related-section {
    background: var(--tpp-white);
}

.tpp-blog-related-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 22px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-blog-related-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--tpp-shadow);
}

.tpp-blog-related-image {
    position: relative;

    display: block;

    height: 245px;

    overflow: hidden;
}

.tpp-blog-related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-blog-related-card:hover
.tpp-blog-related-image img {
    transform: scale(1.05);
}

.tpp-blog-related-image > span {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(0, 163, 163, 0.92);

    color: var(--tpp-white);

    font-size: 0.66rem;

    font-weight: 700;
}

.tpp-blog-related-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px;
}

.tpp-blog-related-body h3 {
    margin-bottom: 12px;

    font-size: 1.05rem;

    line-height: 1.4;
}

.tpp-blog-related-body h3 a {
    color: var(--tpp-dark);
}

.tpp-blog-related-body h3 a:hover {
    color: var(--tpp-orange);
}

.tpp-blog-related-preview {
    display: -webkit-box;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;

    margin-bottom: 18px;

    color: var(--tpp-gray-700);

    font-size: 0.78rem;

    line-height: 1.65;
}

.tpp-blog-related-preview p {
    margin: 0;
}

.tpp-blog-related-preview img,
.tpp-blog-related-preview iframe {
    display: none !important;
}

.tpp-blog-related-body > .tpp-link-arrow {
    margin-top: auto;

    padding-top: 16px;

    border-top: 1px solid var(--tpp-gray-200);
}


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

@media (max-width: 991.98px) {

    .tpp-blog-detail-gallery {
        grid-template-columns:
            minmax(0, 1.5fr)
            minmax(220px, 0.7fr);

        height: 440px;
    }

    .tpp-blog-article {
        padding: 38px;
    }

}


@media (max-width: 767.98px) {

    .tpp-blog-detail-hero {
        min-height: 430px;
    }

    .tpp-blog-detail-hero-content {
        padding: 95px 0 40px;
    }

    .tpp-blog-detail-gallery {
        display: block;

        height: auto;

        padding: 10px;

        overflow: visible;
    }

    .tpp-blog-detail-gallery-main {
        height: 330px;
    }

    .tpp-blog-detail-gallery-main img {
        position: static;
    }

    .tpp-blog-detail-gallery-side {
        display: grid;

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

        grid-template-rows: none;

        gap: 10px;

        margin-top: 10px;
    }

    .tpp-blog-detail-gallery-item {
        height: 145px;
    }

    .tpp-blog-detail-gallery-item img {
        position: static;
    }

    .tpp-blog-detail-gallery-side-1
    .tpp-blog-detail-gallery-item {
        grid-column: 1 / -1;
    }

    .tpp-blog-detail-gallery-side-3
    .tpp-blog-detail-gallery-item:last-child {
        grid-column: 1 / -1;
    }

    .tpp-blog-article {
        padding: 28px 24px;
    }

    .tpp-blog-detail-footer {
        flex-direction: column;
    }

    .tpp-blog-detail-tag-list {
        justify-content: flex-start;
    }

}


@media (max-width: 575.98px) {

    .tpp-blog-detail-hero h1 {
        font-size: 2.25rem;
    }

    .tpp-blog-detail-gallery-main {
        height: 270px;
    }

    .tpp-blog-detail-gallery-item {
        height: 120px;
    }

    .tpp-blog-detail-gallery-view {
        left: 12px;
        bottom: 12px;

        padding: 8px 11px;

        font-size: 0.68rem;
    }

    .tpp-blog-article {
        padding: 22px 18px;
    }

    .tpp-blog-article-content {
        font-size: 0.92rem;
    }

    .tpp-blog-related-image {
        height: 220px;
    }

}


/* =========================================================
   NAVBAR DROPDOWN
========================================================= */

.tpp-navbar-dropdown {
    min-width: 220px;

    padding: 8px;

    margin-top: 10px !important;

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 14px;

    background: var(--tpp-white);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);
}


/* ITEMS */

.tpp-navbar-dropdown .dropdown-item {
    display: flex;

    align-items: center;

    padding: 10px 12px;

    border-radius: 9px;

    color: var(--tpp-gray-700);

    font-size: 0.8rem;

    font-weight: 600;

    transition: var(--tpp-transition);
}


.tpp-navbar-dropdown .dropdown-item i {
    color: var(--tpp-teal);

    font-size: 0.9rem;
}


/* HOVER */

.tpp-navbar-dropdown .dropdown-item:hover {
    background: rgba(245, 160, 0, 0.08);

    color: var(--tpp-dark);
}


/* ACTIVE */

.tpp-navbar-dropdown .dropdown-item.active,
.tpp-navbar-dropdown .dropdown-item:active {
    background: var(--tpp-orange);

    color: var(--tpp-dark);
}


.tpp-navbar-dropdown .dropdown-item.active i {
    color: var(--tpp-dark);
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.tpp-navbar .dropdown-toggle::after {
    margin-left: 6px;

    vertical-align: 0.15em;

    border-top-width: 4px;
    border-right-width: 4px;
    border-left-width: 4px;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .tpp-navbar .dropdown:hover
    > .dropdown-menu {

        display: block;
    }


    .tpp-navbar .dropdown-menu {
        animation:
            tppDropdownFade
            0.18s ease;
    }

}


@keyframes tppDropdownFade {

    from {
        opacity: 0;

        transform:
            translateY(6px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .tpp-navbar-dropdown {
        margin-top: 4px !important;
        margin-bottom: 8px;

        padding: 5px;

        border: 0;

        border-radius: 10px;

        box-shadow: none;

        background: var(--tpp-gray-100);
    }


    .tpp-navbar-dropdown .dropdown-item {
        padding: 9px 12px;
    }

}



/* =========================================================
   CONTACT
========================================================= */


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

.tpp-contact-hero {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--tpp-dark);
}

.tpp-contact-hero-bg {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;
}

.tpp-contact-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 14, 18, 0.92) 0%,
            rgba(6, 14, 18, 0.65) 55%,
            rgba(6, 14, 18, 0.30) 100%
        );
}

.tpp-contact-hero-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 105px 0 55px;
}

.tpp-contact-hero-kicker {
    display: inline-block;

    margin: 14px 0 10px;

    color: var(--tpp-orange);

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}

.tpp-contact-hero h1 {
    margin-bottom: 18px;

    color: var(--tpp-white);

    font-size: clamp(2.7rem, 5vw, 4.8rem);

    line-height: 1.05;
}

.tpp-contact-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.tpp-contact-section {
    background: #f7f8fa;
}


/* =========================================================
   CONTACT PANEL
========================================================= */

.tpp-contact-panel {
    height: 100%;

    padding: 34px;

    border-radius: 24px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-contact-panel h2 {
    margin-bottom: 12px;

    font-size: 2rem;

    line-height: 1.2;
}

.tpp-contact-panel-intro {
    margin-bottom: 28px;

    color: var(--tpp-gray-700);

    font-size: 0.88rem;

    line-height: 1.75;
}


/* =========================================================
   INFO ITEM
========================================================= */

.tpp-contact-info-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid var(--tpp-gray-200);
}

.tpp-contact-info-item:last-of-type {
    border-bottom: 0;
}

.tpp-contact-info-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(0, 163, 163, 0.09);

    color: var(--tpp-teal);

    font-size: 1rem;
}

.tpp-contact-info-item span,
.tpp-contact-info-item small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.7rem;
}

.tpp-contact-info-item strong,
.tpp-contact-info-item a {
    display: block;

    margin: 2px 0;

    color: var(--tpp-dark);

    font-size: 0.88rem;

    font-weight: 700;
}

.tpp-contact-info-item a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   WHATSAPP
========================================================= */

.tpp-contact-whatsapp {
    width: 100%;

    margin-top: 25px;

    min-height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   SOCIAL
========================================================= */

.tpp-contact-socials {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 22px;

    padding-top: 20px;

    border-top: 1px solid var(--tpp-gray-200);
}

.tpp-contact-socials > span {
    color: var(--tpp-gray-700);

    font-size: 0.75rem;

    font-weight: 700;
}

.tpp-contact-social-links {
    display: flex;

    gap: 8px;
}

.tpp-contact-social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--tpp-gray-100);

    color: var(--tpp-dark);

    transition: var(--tpp-transition);
}

.tpp-contact-social-links a:hover {
    background: var(--tpp-orange);

    transform: translateY(-2px);
}


/* =========================================================
   EXPERIENCE
========================================================= */

.tpp-contact-experience {
    position: relative;

    height: 100%;
    min-height: 560px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    border-radius: 24px;

    background: var(--tpp-dark);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-contact-experience-image {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;
}

.tpp-contact-experience-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6, 14, 18, 0.05) 10%,
            rgba(6, 14, 18, 0.92) 100%
        );
}

.tpp-contact-experience-content {
    position: relative;

    z-index: 2;

    max-width: 610px;

    padding: 45px;

    color: var(--tpp-white);
}

.tpp-contact-experience-content > span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--tpp-orange);

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.tpp-contact-experience-content h2 {
    margin-bottom: 14px;

    color: var(--tpp-white);

    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.1;
}

.tpp-contact-experience-content p {
    max-width: 520px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 0.88rem;

    line-height: 1.75;
}

.tpp-contact-experience-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.tpp-contact-secondary-btn {
    min-height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border: 1px solid rgba(255, 255, 255, 0.40);

    border-radius: 50px;

    color: var(--tpp-white);

    font-weight: 700;
}

.tpp-contact-secondary-btn:hover {
    background: var(--tpp-white);

    border-color: var(--tpp-white);

    color: var(--tpp-dark);
}


/* =========================================================
   FEATURES
========================================================= */

.tpp-contact-features {
    padding: 0 0 85px;

    background: #f7f8fa;
}

.tpp-contact-feature {
    height: 100%;

    padding: 28px;

    border-radius: 20px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-contact-feature-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 14px;

    background: rgba(245, 160, 0, 0.11);

    color: var(--tpp-orange);

    font-size: 1.2rem;
}

.tpp-contact-feature h3 {
    margin-bottom: 10px;

    font-size: 1rem;
}

.tpp-contact-feature p {
    margin: 0;

    color: var(--tpp-gray-700);

    font-size: 0.8rem;

    line-height: 1.7;
}


/* =========================================================
   MAP + LOCATION
========================================================= */

.tpp-contact-location {
    background: var(--tpp-white);
}

.tpp-contact-map {
    height: 100%;
    min-height: 480px;

    overflow: hidden;

    border-radius: 24px;

    background: var(--tpp-gray-100);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-contact-map iframe {
    display: block;

    width: 100% !important;
    height: 100% !important;

    min-height: 480px;

    border: 0;
}

.tpp-contact-location-card {
    height: 100%;

    padding: 36px;

    border-radius: 24px;

    background: #101820;

    color: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-contact-location-card h2 {
    margin-bottom: 14px;

    color: var(--tpp-white);

    font-size: 2rem;
}

.tpp-contact-location-card > p {
    margin-bottom: 26px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.84rem;

    line-height: 1.75;
}

.tpp-contact-location-details {
    display: grid;

    gap: 14px;

    margin-bottom: 28px;
}

.tpp-contact-location-details > div {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.8rem;
}

.tpp-contact-location-details i {
    margin-top: 2px;

    color: var(--tpp-orange);
}

.tpp-contact-location-details a {
    color: rgba(255, 255, 255, 0.78);
}

.tpp-contact-location-details a:hover {
    color: var(--tpp-orange);
}


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

@media (max-width: 991.98px) {

    .tpp-contact-experience {
        min-height: 500px;
    }

}


@media (max-width: 767.98px) {

    .tpp-contact-hero {
        min-height: 400px;
    }

    .tpp-contact-hero-content {
        padding: 90px 0 40px;
    }

    .tpp-contact-panel {
        padding: 24px;
    }

    .tpp-contact-experience {
        min-height: 430px;
    }

    .tpp-contact-experience-content {
        padding: 28px;
    }

    .tpp-contact-features {
        padding-bottom: 60px;
    }

    .tpp-contact-map,
    .tpp-contact-map iframe {
        min-height: 360px;
    }

    .tpp-contact-location-card {
        padding: 28px;
    }

}


@media (max-width: 575.98px) {

    .tpp-contact-hero h1 {
        font-size: 2.35rem;
    }

    .tpp-contact-experience-actions {
        display: grid;
    }

    .tpp-contact-experience-actions .btn {
        width: 100%;
    }

    .tpp-contact-location-card .btn {
        width: 100%;
    }

}


/* =========================================================
   CONTACT - SOCIAL NETWORKS
========================================================= */

.tpp-contact-social-section {
    padding: 85px 0;

    background: var(--tpp-white);
}


.tpp-contact-social-box {
    position: relative;

    overflow: hidden;

    padding: 55px;

    border-radius: 28px;

    background: #101820;

    color: var(--tpp-white);
}


/* DECORACIÓN */

.tpp-contact-social-box::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    right: -100px;

    border-radius: 50%;

    background: rgba(0, 163, 163, 0.16);
}


.tpp-contact-social-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -100px;
    bottom: -140px;

    border-radius: 50%;

    background: rgba(245, 160, 0, 0.12);
}


.tpp-contact-social-box .row {
    position: relative;

    z-index: 2;
}


/* =========================================================
   TEXT
========================================================= */

.tpp-contact-social-box h2 {
    max-width: 430px;

    margin-bottom: 16px;

    color: var(--tpp-white);

    font-size: clamp(2rem, 3vw, 2.8rem);

    line-height: 1.15;
}


.tpp-contact-social-box p {
    max-width: 450px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.88rem;

    line-height: 1.75;
}


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

.tpp-contact-social-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;
}


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

.tpp-contact-social-card {
    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 82px;

    padding: 15px 18px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.06);

    color: var(--tpp-white);

    transition: var(--tpp-transition);
}


.tpp-contact-social-card:hover {
    border-color: rgba(245, 160, 0, 0.45);

    background: rgba(255, 255, 255, 0.10);

    color: var(--tpp-white);

    transform: translateX(5px);
}


/* ICON */

.tpp-contact-social-card-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 1.2rem;
}


/* INFO */

.tpp-contact-social-card-info {
    flex: 1;

    min-width: 0;
}


.tpp-contact-social-card-info span {
    display: block;

    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.68rem;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


.tpp-contact-social-card-info strong {
    display: block;

    color: var(--tpp-white);

    font-size: 0.86rem;

    font-weight: 700;
}


/* ARROW */

.tpp-contact-social-card-arrow {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--tpp-white);

    transition: var(--tpp-transition);
}


.tpp-contact-social-card:hover
.tpp-contact-social-card-arrow {
    background: var(--tpp-orange);

    color: var(--tpp-dark);

    transform: rotate(45deg);
}


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

@media (max-width: 991.98px) {

    .tpp-contact-social-box {
        padding: 40px;
    }

}


@media (max-width: 767.98px) {

    .tpp-contact-social-section {
        padding: 60px 0;
    }


    .tpp-contact-social-box {
        padding: 30px 24px;

        border-radius: 22px;
    }


    .tpp-contact-social-box h2 {
        font-size: 2rem;
    }

}


@media (max-width: 575.98px) {

    .tpp-contact-social-card {
        min-height: 74px;

        padding: 12px 14px;
    }


    .tpp-contact-social-card-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }


    .tpp-contact-social-card-info strong {
        font-size: 0.78rem;
    }

}

/* ================================= */
/* POLICIES */
/* ================================== */

html {
    scroll-behavior:smooth
}

.tpp-policies-section {
    background:#f7f8fa
}

.tpp-policies-hero {
    position:relative;
    min-height:450px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:var(--tpp-dark)
}

.tpp-policies-hero-bg {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center
}

.tpp-policies-hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(6,14,18,.94) 0%,rgba(6,14,18,.7) 58%,rgba(6,14,18,.35) 100%)
}

.tpp-policies-hero-content {
    position:relative;
    z-index:2;
    max-width:780px;
    padding:110px 0 55px
}

.tpp-policies-hero-kicker {
    display:inline-block;
    margin:14px 0 10px;
    color:var(--tpp-orange);
    font-size:.76rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.2px
}

.tpp-policies-hero h1 {
    margin-bottom:18px;
    color:var(--tpp-white);
    font-size:clamp(2.7rem,5vw,4.6rem);
    line-height:1.05
}

.tpp-policies-hero p {
    max-width:650px;
    margin:0;
    color:rgba(255,255,255,.74);
    font-size:.95rem;
    line-height:1.8
}

.tpp-policies-nav {
    position:sticky;
    top:110px;
    padding:24px;
    border-radius:20px;
    background:var(--tpp-white);
    border:1px solid rgba(0,0,0,.05);
    box-shadow:var(--tpp-shadow-sm)
}

.tpp-policies-nav-title {
    padding-bottom:17px;
    margin-bottom:15px;
    border-bottom:1px solid var(--tpp-gray-200)
}

.tpp-policies-nav-title h3 {
    margin:0;
    font-size:1.1rem
}

.tpp-policies-nav-list {
    display:grid;
    gap:4px
}

.tpp-policies-nav-list a {
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 10px;
    border-radius:9px;
    color:var(--tpp-gray-700);
    font-size:.74rem;
    transition:var(--tpp-transition)
}

.tpp-policies-nav-list a span {
    color:var(--tpp-teal);
    font-size:.62rem;
    font-weight:800
}

.tpp-policies-nav-list a:hover {
    background:rgba(245,160,0,.08);
    color:var(--tpp-dark);
    transform:translateX(3px)
}

.tpp-policies-content {
    display:grid;
    gap:22px
}

.tpp-policy-card {
    scroll-margin-top:125px;
    padding:32px;
    border-radius:22px;
    background:var(--tpp-white);
    border:1px solid rgba(0,0,0,.05);
    box-shadow:var(--tpp-shadow-sm)
}

.tpp-policy-card-head {
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:24px
}

.tpp-policy-number {
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(0,163,163,.09);
    color:var(--tpp-teal);
    font-size:.74rem;
    font-weight:800
}

.tpp-policy-card h2 {
    margin:0;
    color:var(--tpp-dark);
    font-size:1.45rem;
    line-height:1.3
}

.tpp-policy-list {
    list-style:none;
    padding:0;
    margin:0
}

.tpp-policy-list li {
    position:relative;
    padding:11px 0 11px 28px;
    border-bottom:1px solid var(--tpp-gray-200);
    color:var(--tpp-gray-700);
    font-size:.84rem;
    line-height:1.75
}

.tpp-policy-list li:last-child {
    border-bottom:0;
    padding-bottom:0
}

.tpp-policy-list li::before {
    content:'\F26E';
    position:absolute;
    left:0;
    top:13px;
    font-family:'bootstrap-icons';
    color:var(--tpp-teal);
    font-size:.85rem
}

.tpp-policy-list strong {
    color:var(--tpp-dark)
}

.tpp-policy-highlight {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:24px
}

.tpp-policy-highlight>div {
    padding:16px;
    border-radius:14px;
    background:var(--tpp-gray-100);
    border:1px solid var(--tpp-gray-200)
}

.tpp-policy-highlight i {
    display:block;
    margin-bottom:10px;
    color:var(--tpp-orange);
    font-size:1.1rem
}

.tpp-policy-highlight span {
    display:block;
    color:var(--tpp-gray-500);
    font-size:.66rem
}

.tpp-policy-highlight strong {
    display:block;
    margin-top:2px;
    color:var(--tpp-dark);
    font-size:.9rem
}

.tpp-policy-contact {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:25px;
    padding:18px;
    border-radius:15px;
    background:#101820;
    color:var(--tpp-white)
}

.tpp-policy-contact>div {
    display:flex;
    align-items:center;
    gap:12px
}

.tpp-policy-contact>div>i {
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(245,160,0,.12);
    color:var(--tpp-orange)
}

.tpp-policy-contact span {
    display:block;
    color:rgba(255,255,255,.56);
    font-size:.67rem
}

.tpp-policy-contact strong {
    display:block;
    margin-top:2px;
    color:var(--tpp-white);
    font-size:.82rem
}

.tpp-policies-cta {
    padding:0 0 90px;
    background:#f7f8fa
}

.tpp-policies-cta-box {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
    padding:42px;
    border-radius:24px;
    background:#101820;
    color:var(--tpp-white)
}

.tpp-policies-cta-box>div {
    max-width:680px
}

.tpp-policies-cta-box span {
    display:inline-block;
    margin-bottom:7px;
    color:var(--tpp-orange);
    font-size:.72rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px
}

.tpp-policies-cta-box h2 {
    margin-bottom:10px;
    color:var(--tpp-white);
    font-size:1.8rem
}

.tpp-policies-cta-box p {
    margin:0;
    color:rgba(255,255,255,.62);
    font-size:.84rem;
    line-height:1.7
}

@media(max-width:991.98px) {
    .tpp-policies-nav {
        position:static
    }

    .tpp-policies-nav-list {
        grid-template-columns:repeat(2,1fr)
    }

    .tpp-policies-cta-box {
        align-items:flex-start;
        flex-direction:column
    }

}

@media(max-width:767.98px) {
    .tpp-policies-hero {
        min-height:390px
    }

    .tpp-policies-hero-content {
        padding:90px 0 40px
    }

    .tpp-policies-nav {
        padding:20px
    }

    .tpp-policy-card {
        padding:24px
    }

    .tpp-policy-highlight {
        grid-template-columns:1fr
    }

    .tpp-policy-contact {
        align-items:flex-start;
        flex-direction:column
    }

    .tpp-policy-contact .btn {
        width:100%
    }

    .tpp-policies-cta {
        padding-bottom:60px
    }

    .tpp-policies-cta-box {
        padding:30px 24px
    }

    .tpp-policies-cta-box .btn {
        width:100%
    }

}

@media(max-width:575.98px) {
    .tpp-policies-hero h1 {
        font-size:2.3rem
    }

    .tpp-policies-nav-list {
        grid-template-columns:1fr
    }

    .tpp-policy-card {
        padding:20px
    }

    .tpp-policy-card-head {
        gap:12px
    }

    .tpp-policy-number {
        width:42px;
        height:42px;
        flex-basis:42px
    }

    .tpp-policy-card h2 {
        font-size:1.25rem
    }

}


/* =========================================================
   MENU - OFFERS
========================================================= */

.tpp-nav-offers {
    display: inline-flex;

    align-items: center;

    gap: 2px;
}

.tpp-nav-offers i {
    color: #f0008b;

    font-size: 0.9rem;

    transition: var(--tpp-transition);
}

.tpp-nav-offers:hover i,
.tpp-nav-offers.active i {
    color: var(--tpp-orange);

    transform: translateY(-1px);
}




/* =========================================================
   OFFERS LIST
========================================================= */

html {
    scroll-behavior: smooth;
}

.tpp-offers-list-section {
    background: #f7f8fa;
}

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

.tpp-offers-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--tpp-dark);
}

.tpp-offers-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.tpp-offers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,10,13,.94) 0%, rgba(7,10,13,.72) 55%, rgba(7,10,13,.30) 100%);
}

.tpp-offers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 115px 0 58px;
}

.tpp-offers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 14px 0 12px;
    color: var(--tpp-orange);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.tpp-offers-kicker i {
    color: #f0008b;
}

.tpp-offers-hero h1 {
    margin-bottom: 18px;
    color: var(--tpp-white);
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
}

.tpp-offers-hero p {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    line-height: 1.8;
}

/* =========================================================
   HERO STATS
========================================================= */

.tpp-offers-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tpp-offers-hero-stats > div {
    min-width: 150px;
    padding: 13px 16px;
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
}

.tpp-offers-hero-stats strong {
    display: block;
    color: var(--tpp-white);
    font-size: 1.15rem;
}

.tpp-offers-hero-stats span {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: .65rem;
}

/* =========================================================
   CAMPAIGN NAV
========================================================= */

.tpp-offers-campaign-nav {
    position: relative;
    z-index: 5;
    margin-top: -25px;
}

.tpp-offers-campaign-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    overflow-x: auto;
    border-radius: 18px;
    background: var(--tpp-white);
    box-shadow: var(--tpp-shadow);
    scrollbar-width: none;
}

.tpp-offers-campaign-scroll::-webkit-scrollbar {
    display: none;
}

.tpp-offers-campaign-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 50px;
    background: var(--tpp-gray-100);
    color: var(--tpp-gray-700);
    font-size: .72rem;
    font-weight: 700;
    transition: var(--tpp-transition);
}

.tpp-offers-campaign-pill i {
    color: #f0008b;
}

.tpp-offers-campaign-pill:hover,
.tpp-offers-campaign-pill.active {
    background: var(--tpp-dark);
    color: var(--tpp-white);
}

/* =========================================================
   CAMPAIGN
========================================================= */

.tpp-offer-campaign {
    scroll-margin-top: 125px;
    margin-bottom: 70px;
}

.tpp-offer-campaign:last-child {
    margin-bottom: 0;
}

.tpp-offer-campaign-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.tpp-offer-campaign-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    color: #f0008b;
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.tpp-offer-campaign-header h3 {
    margin-bottom: 4px;
    color: var(--tpp-dark);
    font-size: 2rem;
    line-height: 1.15;
}

.tpp-offer-campaign-header p {
    margin: 0;
    color: var(--tpp-gray-500);
    font-size: .75rem;
}

.tpp-offer-campaign-count {
    color: rgba(16,24,32,.08);
    font-family: var(--tpp-font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: .8;
}

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

.tpp-offer-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

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

.tpp-offer-package-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--tpp-white);
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: var(--tpp-shadow-sm);
    transition: var(--tpp-transition);
}

.tpp-offer-package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tpp-shadow);
}

.tpp-offer-package-image {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    background: var(--tpp-gray-100);
}

.tpp-offer-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.tpp-offer-package-card:hover .tpp-offer-package-image img {
    transform: scale(1.05);
}

.tpp-offer-package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.70) 100%);
}

.tpp-offer-package-fire {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 28px);
    padding: 7px 11px;
    overflow: hidden;
    border-radius: 50px;
    background: #f0008b;
    color: var(--tpp-white);
    font-size: .65rem;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: 0 7px 20px rgba(240,0,139,.25);
}

.tpp-offer-package-view {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--tpp-white);
    font-size: .72rem;
    font-weight: 700;
}

.tpp-offer-package-view i {
    transition: var(--tpp-transition);
}

.tpp-offer-package-card:hover .tpp-offer-package-view i {
    transform: translate(2px,-2px);
}

.tpp-offer-package-body {
    padding: 20px;
}

.tpp-offer-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;
    margin-bottom: 10px;
}

.tpp-offer-package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--tpp-gray-500);
    font-size: .67rem;
}

.tpp-offer-package-meta i {
    color: var(--tpp-teal);
}

.tpp-offer-package-body h4 {
    min-height: 50px;
    margin-bottom: 18px;
    font-size: 1.08rem;
    line-height: 1.4;
}

.tpp-offer-package-body h4 a {
    color: var(--tpp-dark);
    transition: var(--tpp-transition);
}

.tpp-offer-package-body h4 a:hover {
    color: var(--tpp-orange);
}

.tpp-offer-package-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding-top: 16px;
    border-top: 1px solid var(--tpp-gray-200);
}

.tpp-offer-package-price small {
    display: block;
    margin-bottom: 2px;
    color: var(--tpp-gray-500);
    font-size: .65rem;
}

.tpp-offer-package-price strong {
    display: block;
    color: var(--tpp-dark);
    font-size: 1.2rem;
}

.tpp-offer-package-action {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tpp-orange);
    color: var(--tpp-dark);
    transition: var(--tpp-transition);
}

.tpp-offer-package-action:hover {
    background: var(--tpp-dark);
    color: var(--tpp-white);
    transform: translateX(2px);
}

/* =========================================================
   FINAL CTA
========================================================= */

.tpp-offers-final-cta {
    padding: 0 0 90px;
    background: #f7f8fa;
}

.tpp-offers-final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(135deg,#101820 0%,#15272d 100%);
    color: var(--tpp-white);
}

.tpp-offers-final-cta-box > div {
    max-width: 700px;
}

.tpp-offers-final-cta-box span {
    display: inline-block;
    margin-bottom: 6px;
    color: #f0008b;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.tpp-offers-final-cta-box h2 {
    margin-bottom: 8px;
    color: var(--tpp-white);
    font-size: 1.8rem;
}

.tpp-offers-final-cta-box p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: .82rem;
}

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

@media (max-width: 1199.98px) {
    .tpp-offer-package-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 991.98px) {
    .tpp-offers-hero {
        min-height: 470px;
    }

    .tpp-offer-campaign-count {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .tpp-offers-hero-content {
        padding: 95px 0 50px;
    }

    .tpp-offers-hero h1 {
        font-size: 2.8rem;
    }

    .tpp-offers-campaign-nav {
        margin-top: -18px;
    }

    .tpp-offer-campaign {
        margin-bottom: 50px;
    }

    .tpp-offer-campaign-header {
        align-items: flex-start;
    }

    .tpp-offer-campaign-count {
        display: none;
    }

    .tpp-offer-package-grid {
        grid-template-columns: 1fr;
    }

    .tpp-offer-package-image {
        height: 260px;
    }

    .tpp-offers-final-cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }

    .tpp-offers-final-cta-box .btn {
        width: 100%;
    }

    .tpp-offers-final-cta {
        padding-bottom: 60px;
    }
}

@media (max-width: 575.98px) {
    .tpp-offers-hero {
        min-height: 430px;
    }

    .tpp-offers-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tpp-offers-hero-stats > div {
        min-width: 0;
    }

    .tpp-offer-package-image {
        height: 225px;
    }

    .tpp-offer-campaign-header h3 {
        font-size: 1.65rem;
    }
}

/* =========================================================
   OFFER DETAIL
========================================================= */

.tpp-offer-detail-section {
    background: #f7f8fa;
}


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

.tpp-offer-detail-hero {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--tpp-dark);
}

.tpp-offer-detail-hero-bg {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.02);
}

.tpp-offer-detail-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 10, 13, 0.08) 10%,
            rgba(5, 10, 13, 0.90) 100%
        );
}

.tpp-offer-detail-hero-content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 120px 0 60px;
}

.tpp-offer-detail-badges {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 16px 0 14px;
}

.tpp-offer-detail-badge-primary,
.tpp-offer-detail-badge-secondary {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    border-radius: 50px;

    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.tpp-offer-detail-badge-primary {
    background: #f0008b;

    color: var(--tpp-white);

    box-shadow:
        0 8px 24px rgba(240, 0, 139, 0.22);
}

.tpp-offer-detail-badge-secondary {
    background: rgba(255, 255, 255, 0.12);

    color: var(--tpp-white);

    backdrop-filter: blur(8px);
}

.tpp-offer-detail-hero h1 {
    max-width: 850px;

    margin-bottom: 18px;

    color: var(--tpp-white);

    font-size: clamp(2.7rem, 5.5vw, 5rem);

    line-height: 1.04;
}

.tpp-offer-detail-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px 20px;
}

.tpp-offer-detail-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 0.8rem;
}

.tpp-offer-detail-meta i {
    color: var(--tpp-orange);
}


/* =========================================================
   PRICE BAR
========================================================= */

.tpp-offer-detail-pricebar {
    position: relative;

    z-index: 6;

    margin-top: -28px;
}

.tpp-offer-detail-pricebar-box {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        auto;

    align-items: center;

    gap: 25px;

    padding: 18px 22px;

    border-radius: 20px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow);
}

.tpp-offer-detail-pricebar-copy > span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #f0008b;

    font-size: 0.66rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.tpp-offer-detail-pricebar-copy > strong {
    display: block;

    margin-top: 3px;

    color: var(--tpp-dark);

    font-size: 0.92rem;
}

.tpp-offer-detail-pricebar-price {
    text-align: right;
}

.tpp-offer-detail-pricebar-price small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.64rem;
}

.tpp-offer-detail-pricebar-price strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 1.45rem;
}


/* =========================================================
   GALLERY
========================================================= */

.tpp-offer-detail-gallery {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(260px, 0.75fr);

    gap: 12px;

    height: 480px;

    margin-bottom: 35px;
}

.tpp-offer-detail-gallery-main,
.tpp-offer-detail-gallery-item {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 20px;

    background: var(--tpp-gray-100);
}

.tpp-offer-detail-gallery-main img,
.tpp-offer-detail-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-offer-detail-gallery-main:hover img,
.tpp-offer-detail-gallery-item:hover img {
    transform: scale(1.04);
}

.tpp-offer-detail-gallery-side {
    display: grid;

    grid-template-rows: repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.tpp-offer-detail-gallery-open {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.78);

    color: var(--tpp-white);

    font-size: 0.72rem;

    backdrop-filter: blur(8px);
}


/* =========================================================
   INTRO
========================================================= */

.tpp-offer-detail-intro {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;

    padding: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(240, 0, 139, 0.08),
            rgba(245, 160, 0, 0.09)
        );

    border:
        1px solid rgba(240, 0, 139, 0.10);
}

.tpp-offer-detail-intro h2 {
    margin: 0;

    font-size: 1.65rem;
}

.tpp-offer-detail-intro-badge {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border-radius: 50px;

    background: #f0008b;

    color: var(--tpp-white);

    font-size: 0.68rem;

    font-weight: 800;
}


/* =========================================================
   BLOCKS
========================================================= */

.tpp-offer-detail-block {
    margin-bottom: 22px;

    padding: 28px;

    border-radius: 22px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-offer-detail-block-head {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;
}

.tpp-offer-detail-block-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(240, 0, 139, 0.09);

    color: #f0008b;

    font-size: 1rem;
}

.tpp-offer-detail-block h3 {
    margin: 0;

    font-size: 1.3rem;
}


/* =========================================================
   ACCORDION
========================================================= */

.tpp-offer-accordion {
    --bs-accordion-border-color:
        var(--tpp-gray-200);
}

.tpp-offer-accordion .accordion-item {
    overflow: hidden;

    margin-bottom: 10px;

    border:
        1px solid var(--tpp-gray-200);

    border-radius: 14px !important;
}

.tpp-offer-accordion .accordion-button {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 18px;

    color: var(--tpp-dark);

    background: var(--tpp-white);

    font-size: 0.86rem;

    font-weight: 700;

    box-shadow: none;
}

.tpp-offer-accordion .accordion-button:not(.collapsed) {
    background:
        rgba(240, 0, 139, 0.05);

    color: var(--tpp-dark);
}

.tpp-offer-accordion .accordion-button:focus {
    box-shadow: none;
}

.tpp-offer-accordion .accordion-body {
    padding: 18px;

    border-top:
        1px solid var(--tpp-gray-200);
}

.tpp-offer-tour-number {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0008b;

    color: var(--tpp-white);

    font-size: 0.68rem;

    font-weight: 800;
}

.tpp-offer-tour-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 15px;
}

.tpp-offer-tour-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 10px;

    border-radius: 50px;

    background:
        rgba(0, 163, 163, 0.08);

    color: var(--tpp-teal-dark);

    font-size: 0.7rem;
}


/* =========================================================
   CONDITIONS
========================================================= */

.tpp-offer-condition-list {
    list-style: none;

    padding: 0;

    margin: 0;
}

.tpp-offer-condition-list li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    padding: 9px 0;

    color: var(--tpp-gray-700);

    font-size: 0.8rem;

    line-height: 1.6;
}

.tpp-offer-condition-list i {
    margin-top: 2px;

    color: var(--tpp-teal);
}


/* =========================================================
   BOOKING
========================================================= */

.tpp-offer-booking-card {
    position: sticky;

    top: 110px;

    overflow: hidden;

    padding: 28px;

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            #101820 0%,
            #16262b 100%
        );

    color: var(--tpp-white);

    box-shadow: var(--tpp-shadow);
}

.tpp-offer-booking-top {
    padding-bottom: 18px;

    margin-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);
}

.tpp-offer-booking-badge {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 12px;

    padding: 7px 10px;

    border-radius: 50px;

    background: #f0008b;

    color: var(--tpp-white);

    font-size: 0.64rem;

    font-weight: 800;
}

.tpp-offer-booking-top h3 {
    margin-bottom: 7px;

    color: var(--tpp-white);

    font-size: 1.4rem;
}

.tpp-offer-booking-top p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.75rem;
}

.tpp-offer-booking-price {
    margin-bottom: 16px;
}

.tpp-offer-booking-price > span {
    display: block;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.68rem;
}

.tpp-offer-booking-price strong {
    display: flex;

    align-items: baseline;

    gap: 6px;

    margin-top: 4px;

    color: var(--tpp-white);

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.1;
}

.tpp-offer-booking-price strong #summary_price {
    display: inline;

    color: inherit;

    font-size: inherit;

    font-weight: inherit;

    line-height: inherit;
}

.tpp-offer-booking-card
.tpp-booking-field label {
    color: rgba(255, 255, 255, 0.78);
}

.tpp-offer-booking-card
.tpp-booking-field .form-control,
.tpp-offer-booking-card
.tpp-booking-field .form-select {
    background: rgba(255, 255, 255, 0.97);
}

.tpp-offer-booking-features {
    display: grid;

    gap: 10px;

    margin: 18px 0;
}

.tpp-offer-booking-features > div {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 0.72rem;

    line-height: 1.5;
}

.tpp-offer-booking-features i {
    margin-top: 1px;

    color: var(--tpp-orange);
}

.tpp-offer-booking-features strong {
    color: var(--tpp-white);
}

.tpp-offer-booking-card
.tpp-package-selected-box {
    background: rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.10);
}

.tpp-offer-booking-card
.tpp-package-selected-box small {
    color: rgba(255, 255, 255, 0.50);
}

.tpp-offer-booking-card
.tpp-package-selected-box strong {
    color: var(--tpp-white);
}

.tpp-offer-booking-card
.tpp-tour-booking-note {
    color: rgba(255, 255, 255, 0.50);
}


/* =========================================================
   RELATED
========================================================= */

.tpp-offer-related-section {
    background: var(--tpp-white);
}

.tpp-offer-related-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-offer-related-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--tpp-shadow);
}

.tpp-offer-related-image {
    position: relative;

    display: block;

    height: 240px;

    overflow: hidden;
}

.tpp-offer-related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.tpp-offer-related-card:hover
.tpp-offer-related-image img {
    transform: scale(1.05);
}

.tpp-offer-related-image > span {
    position: absolute;

    top: 14px;
    left: 14px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border-radius: 50px;

    background: #f0008b;

    color: var(--tpp-white);

    font-size: 0.64rem;

    font-weight: 800;
}

.tpp-offer-related-body {
    padding: 20px;
}

.tpp-offer-related-body h3 {
    min-height: 48px;

    margin-bottom: 16px;

    font-size: 1rem;

    line-height: 1.4;
}

.tpp-offer-related-body h3 a {
    color: var(--tpp-dark);
}

.tpp-offer-related-body h3 a:hover {
    color: var(--tpp-orange);
}

.tpp-offer-related-footer {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    padding-top: 15px;

    border-top:
        1px solid var(--tpp-gray-200);
}

.tpp-offer-related-footer small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.64rem;
}

.tpp-offer-related-footer strong {
    display: block;

    margin-top: 2px;

    color: var(--tpp-dark);

    font-size: 1.05rem;
}


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

@media (max-width: 991.98px) {

    .tpp-offer-detail-pricebar-box {
        grid-template-columns:
            1fr auto;
    }

    .tpp-offer-detail-pricebar-box > .btn {
        grid-column: 1 / -1;

        width: 100%;
    }

    .tpp-offer-booking-card {
        position: static;
    }

}


@media (max-width: 767.98px) {

    .tpp-offer-detail-hero {
        min-height: 430px;
    }

    .tpp-offer-detail-hero-content {
        padding: 95px 0 48px;
    }

    .tpp-offer-detail-pricebar {
        margin-top: -18px;
    }

    .tpp-offer-detail-pricebar-box {
        display: flex;

        align-items: flex-start;

        flex-direction: column;

        gap: 14px;
    }

    .tpp-offer-detail-pricebar-price {
        text-align: left;
    }

    .tpp-offer-detail-gallery {
        display: block;

        height: auto;
    }

    .tpp-offer-detail-gallery-main {
        height: 320px;
    }

    .tpp-offer-detail-gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 150px;

        gap: 10px;

        margin-top: 10px;
    }

    .tpp-offer-detail-intro {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-offer-detail-block {
        padding: 22px;
    }

}


@media (max-width: 575.98px) {

    .tpp-offer-detail-hero h1 {
        font-size: 2.35rem;
    }

    .tpp-offer-detail-gallery-main {
        height: 260px;
    }

    .tpp-offer-detail-gallery-side {
        grid-template-rows: 115px;
    }

    .tpp-offer-booking-card {
        padding: 22px;
    }

    .tpp-offer-related-image {
        height: 220px;
    }

}



/* =========================================================
   NAVBAR CART
========================================================= */

.tpp-navbar-cart {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 8px 11px;

    border-radius: 50px;

    background: var(--tpp-gray-100);

    color: var(--tpp-dark);

    font-size: 0.78rem;

    font-weight: 700;

    text-decoration: none;

    transition: var(--tpp-transition);
}


.tpp-navbar-cart:hover {
    background: rgba(245, 160, 0, 0.12);

    color: var(--tpp-dark);

    transform: translateY(-1px);
}


/* =========================================================
   ICON
========================================================= */

.tpp-navbar-cart-icon {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 1rem;
}


/* =========================================================
   COUNT
========================================================= */

.tpp-navbar-cart-count {
    min-width: 22px;
    height: 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 50px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 0.65rem;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .tpp-navbar-cart {
        width: 100%;

        justify-content: flex-start;

        padding: 10px 12px;

        border-radius: 10px;
    }

}

@media (min-width: 992px) {

    .tpp-navbar-cart-text {
        display: none;
    }

}


/* =========================================================
   CART
========================================================= */

.tpp-cart-section {
    background: #f7f8fa;
}


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

.tpp-cart-hero {
    position: relative;

    min-height: 350px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #101820 0%,
            #153036 100%
        );
}

.tpp-cart-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(0, 163, 163, 0.14);
}

.tpp-cart-hero::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -120px;
    bottom: -160px;

    border-radius: 50%;

    background:
        rgba(245, 160, 0, 0.10);
}

.tpp-cart-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 10, 13, 0.35),
            transparent
        );
}

.tpp-cart-hero-content {
    position: relative;

    z-index: 2;

    max-width: 700px;

    padding: 100px 0 45px;
}

.tpp-cart-hero-kicker {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin: 14px 0 10px;

    color: var(--tpp-orange);

    font-size: 0.74rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.tpp-cart-hero h1 {
    margin-bottom: 15px;

    color: var(--tpp-white);

    font-size: clamp(2.5rem, 5vw, 4.4rem);

    line-height: 1.05;
}

.tpp-cart-hero p {
    max-width: 590px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =========================================================
   HEADING
========================================================= */

.tpp-cart-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.tpp-cart-items-count {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 12px;

    border-radius: 50px;

    background:
        rgba(0, 163, 163, 0.08);

    color: var(--tpp-teal-dark);

    font-size: 0.7rem;

    font-weight: 700;
}


/* =========================================================
   ITEMS
========================================================= */

.tpp-cart-items {
    display: grid;

    gap: 16px;
}


/* =========================================================
   ITEM
========================================================= */

.tpp-cart-item {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    overflow: hidden;

    border-radius: 20px;

    background: var(--tpp-white);

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: var(--tpp-shadow-sm);

    transition: var(--tpp-transition);
}

.tpp-cart-item:hover {
    box-shadow: var(--tpp-shadow);
}


/* =========================================================
   IMAGE
========================================================= */

.tpp-cart-item-image {
    position: relative;

    display: block;

    min-height: 220px;

    overflow: hidden;

    background: var(--tpp-gray-100);
}

.tpp-cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.tpp-cart-item:hover
.tpp-cart-item-image img {
    transform: scale(1.04);
}

.tpp-cart-item-type {
    position: absolute;

    left: 13px;
    bottom: 13px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 10px;

    border-radius: 50px;

    background: rgba(17, 17, 17, 0.78);

    color: var(--tpp-white);

    font-size: 0.65rem;

    font-weight: 700;

    backdrop-filter: blur(8px);
}

.tpp-cart-item-type i {
    color: var(--tpp-orange);
}


/* =========================================================
   BODY
========================================================= */

.tpp-cart-item-body {
    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 22px;
}

.tpp-cart-item-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}

.tpp-cart-item-label {
    display: block;

    margin-bottom: 5px;

    color: var(--tpp-teal);

    font-size: 0.64rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.tpp-cart-item-top h3 {
    margin: 0;

    font-size: 1.15rem;

    line-height: 1.4;
}

.tpp-cart-item-top h3 a {
    color: var(--tpp-dark);
}

.tpp-cart-item-top h3 a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   REMOVE
========================================================= */

.tpp-cart-remove {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 10px;

    background:
        rgba(220, 53, 69, 0.07);

    color: #dc3545;

    transition: var(--tpp-transition);
}

.tpp-cart-remove:hover {
    background: #dc3545;

    color: var(--tpp-white);
}


/* =========================================================
   META
========================================================= */

.tpp-cart-item-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px 16px;

    margin-top: 14px;
}

.tpp-cart-item-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--tpp-gray-500);

    font-size: 0.7rem;
}

.tpp-cart-item-meta i {
    color: var(--tpp-teal);
}


/* =========================================================
   BOTTOM
========================================================= */

.tpp-cart-item-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding-top: 18px;
}


/* =========================================================
   QUANTITY
========================================================= */

.tpp-cart-quantity {
    display: inline-grid;

    grid-template-columns:
        34px
        42px
        34px;

    align-items: center;

    overflow: hidden;

    border:
        1px solid var(--tpp-gray-200);

    border-radius: 11px;

    background: var(--tpp-white);
}

.tpp-cart-quantity button {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    background: var(--tpp-gray-100);

    color: var(--tpp-dark);

    transition: var(--tpp-transition);
}

.tpp-cart-quantity button:hover {
    background: var(--tpp-orange);
}

.tpp-cart-quantity > span {
    text-align: center;

    color: var(--tpp-dark);

    font-size: 0.78rem;

    font-weight: 800;
}


/* =========================================================
   PRICE
========================================================= */

.tpp-cart-item-prices {
    text-align: right;
}

.tpp-cart-item-prices small {
    display: block;

    margin-bottom: 3px;

    color: var(--tpp-gray-500);

    font-size: 0.65rem;
}

.tpp-cart-item-prices strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 1.25rem;
}


/* =========================================================
   CONTINUE
========================================================= */

.tpp-cart-continue {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;
}

.tpp-cart-clear {
    padding: 0;

    border: 0;

    background: transparent;

    color: var(--tpp-gray-500);

    font-size: 0.72rem;

    transition: var(--tpp-transition);
}

.tpp-cart-clear:hover {
    color: #dc3545;
}


/* =========================================================
   SUMMARY
========================================================= */

.tpp-cart-summary {
    position: sticky;

    top: 110px;

    padding: 28px;

    border-radius: 22px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow);
}

.tpp-cart-summary h3 {
    margin-bottom: 20px;

    font-size: 1.35rem;
}

.tpp-cart-summary-list {
    display: grid;

    gap: 12px;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--tpp-gray-200);
}

.tpp-cart-summary-list > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--tpp-gray-700);

    font-size: 0.76rem;
}

.tpp-cart-summary-list strong {
    color: var(--tpp-dark);
}


/* =========================================================
   TOTAL
========================================================= */

.tpp-cart-summary-total {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    padding: 20px 0;
}

.tpp-cart-summary-total span {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.82rem;

    font-weight: 800;
}

.tpp-cart-summary-total small {
    display: block;

    margin-top: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;
}

.tpp-cart-summary-total > strong {
    color: var(--tpp-dark);

    font-size: 1.55rem;
}


/* =========================================================
   SUMMARY NOTES
========================================================= */

.tpp-cart-summary-notes {
    display: grid;

    gap: 10px;

    margin-top: 20px;

    padding-top: 18px;

    border-top:
        1px solid var(--tpp-gray-200);
}

.tpp-cart-summary-notes > div {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--tpp-gray-500);

    font-size: 0.67rem;

    line-height: 1.5;
}

.tpp-cart-summary-notes i {
    margin-top: 1px;

    color: var(--tpp-teal);
}


/* =========================================================
   EMPTY
========================================================= */

.tpp-cart-empty {
    max-width: 700px;

    margin: 0 auto;

    padding: 65px 35px;

    text-align: center;

    border-radius: 24px;

    background: var(--tpp-white);

    box-shadow: var(--tpp-shadow-sm);
}

.tpp-cart-empty-icon {
    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background:
        rgba(0, 163, 163, 0.08);

    color: var(--tpp-teal);

    font-size: 2rem;
}

.tpp-cart-empty h2 {
    margin-bottom: 12px;

    font-size: 1.8rem;
}

.tpp-cart-empty p {
    max-width: 480px;

    margin: 0 auto 25px;

    color: var(--tpp-gray-700);

    font-size: 0.85rem;

    line-height: 1.7;
}

.tpp-cart-empty-actions {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}

.tpp-cart-empty-secondary {
    min-height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border:
        1px solid var(--tpp-gray-200);

    border-radius: 50px;

    background: var(--tpp-white);

    color: var(--tpp-dark);

    font-weight: 700;
}

.tpp-cart-empty-secondary:hover {
    border-color: var(--tpp-orange);

    background:
        rgba(245, 160, 0, 0.06);

    color: var(--tpp-dark);
}


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

@media (max-width: 991.98px) {

    .tpp-cart-summary {
        position: static;
    }

}


@media (max-width: 767.98px) {

    .tpp-cart-hero {
        min-height: 320px;
    }

    .tpp-cart-hero-content {
        padding: 90px 0 38px;
    }

    .tpp-cart-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-cart-item {
        grid-template-columns: 1fr;
    }

    .tpp-cart-item-image {
        min-height: 240px;

        height: 240px;
    }

    .tpp-cart-continue {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 575.98px) {

    .tpp-cart-hero h1 {
        font-size: 2.25rem;
    }

    .tpp-cart-item-image {
        height: 210px;

        min-height: 210px;
    }

    .tpp-cart-item-body {
        padding: 18px;
    }

    .tpp-cart-item-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-cart-item-prices {
        width: 100%;

        text-align: left;
    }

    .tpp-cart-summary {
        padding: 22px;
    }

    .tpp-cart-empty {
        padding: 45px 20px;
    }

    .tpp-cart-empty-actions {
        display: grid;
    }

    .tpp-cart-empty-actions .btn {
        width: 100%;
    }

}



/* =========================================================
   TOUR DETAIL - CART
   Agregar al final del CSS específico de tours_detail
========================================================= */


/* =========================================================
   TOTAL ESTIMADO
========================================================= */

.tpp-tour-cart-total {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin: 20px 0 14px;

    padding: 16px;

    border-radius: 14px;

    background: var(--tpp-gray-100);

    border:
        1px solid var(--tpp-gray-200);
}


.tpp-tour-cart-total > div > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-dark);

    font-size: 0.76rem;

    font-weight: 800;
}


.tpp-tour-cart-total > div > small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;
}


.tpp-tour-cart-total > strong {
    flex: 0 0 auto;

    color: var(--tpp-dark);

    font-size: 1.25rem;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   CART BUTTON
========================================================= */

.btn-tpp-cart {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--tpp-dark);

    border-radius: 50px;

    background: var(--tpp-dark);

    color: var(--tpp-white);

    font-size: 0.76rem;

    font-weight: 800;

    transition: var(--tpp-transition);
}


.btn-tpp-cart:hover,
.btn-tpp-cart:focus {
    border-color: var(--tpp-orange);

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    transform: translateY(-1px);
}


.btn-tpp-cart:disabled {
    opacity: 0.75;

    cursor: wait;

    transform: none;
}


/* =========================================================
   CART FEEDBACK
========================================================= */

.tpp-tour-cart-feedback {
    display: none;

    margin-top: 10px;

    padding: 10px 12px;

    border-radius: 10px;

    font-size: 0.68rem;

    line-height: 1.5;
}


.tpp-tour-cart-feedback.is-visible {
    display: block;
}


.tpp-tour-cart-feedback-success {
    background:
        rgba(25, 135, 84, 0.10);

    color: #146c43;

    border:
        1px solid rgba(25, 135, 84, 0.16);
}


.tpp-tour-cart-feedback-warning {
    background:
        rgba(245, 160, 0, 0.10);

    color: #8a5a00;

    border:
        1px solid rgba(245, 160, 0, 0.18);
}


.tpp-tour-cart-feedback-error {
    background:
        rgba(220, 53, 69, 0.09);

    color: #b02a37;

    border:
        1px solid rgba(220, 53, 69, 0.15);
}


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

@media (max-width: 575.98px) {

    .tpp-tour-cart-total {
        align-items: flex-start;

        flex-direction: column;
    }


    .tpp-tour-cart-total > strong {
        font-size: 1.35rem;
    }

}


/* =========================================================
   CART LOADING
========================================================= */

.tpp-cart-loading {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(16, 24, 32, 0.50);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}


.tpp-cart-loading.show {
    opacity: 1;

    visibility: visible;
}


.tpp-cart-loading-content {
    min-width: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 24px 28px;

    border-radius: 18px;

    background: var(--tpp-white);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);
}


.tpp-cart-loading-content
.spinner-border {
    width: 34px;
    height: 34px;

    color: var(--tpp-teal);
}


.tpp-cart-loading-content > span {
    color: var(--tpp-dark);

    font-size: 0.75rem;

    font-weight: 700;
}



/* =========================================================
   CHECKOUT
========================================================= */

.tpp-checkout-section {
    background: #f7f8fa;
}


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

.tpp-checkout-hero {
    position: relative;

    min-height: 360px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #101820 0%,
            #183238 100%
        );
}

.tpp-checkout-hero::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -230px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(0, 163, 163, 0.14);
}

.tpp-checkout-hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -90px;
    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(245, 160, 0, 0.10);
}

.tpp-checkout-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 10, 13, 0.35),
            transparent
        );
}

.tpp-checkout-hero-content {
    position: relative;

    z-index: 2;

    max-width: 750px;

    padding: 100px 0 48px;
}

.tpp-checkout-kicker {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin: 14px 0 10px;

    color: var(--tpp-orange);

    font-size: 0.74rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.tpp-checkout-hero h1 {
    margin-bottom: 15px;

    color: var(--tpp-white);

    font-size: clamp(2.6rem, 5vw, 4.5rem);

    line-height: 1.04;
}

.tpp-checkout-hero p {
    max-width: 620px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;

    line-height: 1.75;
}


/* =========================================================
   FORM
========================================================= */

.tpp-checkout-form {
    display: grid;

    gap: 20px;
}


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

.tpp-checkout-card {
    padding: 28px;

    border-radius: 22px;

    background: var(--tpp-white);

    border:
        1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
        var(--tpp-shadow-sm);
}

.tpp-checkout-card-header {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 24px;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--tpp-gray-200);
}

.tpp-checkout-step {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(0, 163, 163, 0.09);

    color: var(--tpp-teal);

    font-size: 0.7rem;

    font-weight: 800;
}

.tpp-checkout-card-header h2 {
    margin: 0;

    color: var(--tpp-dark);

    font-size: 1.3rem;
}


/* =========================================================
   LABELS / CONTROLS
========================================================= */

.tpp-checkout-label {
    display: block;

    margin-bottom: 7px;

    color: var(--tpp-dark);

    font-size: 0.73rem;

    font-weight: 700;
}

.tpp-checkout-label > span {
    color: #dc3545;
}

.tpp-checkout-control {
    min-height: 46px;

    border:
        1px solid var(--tpp-gray-200);

    border-radius: 11px;

    background: var(--tpp-white);

    color: var(--tpp-dark);

    font-size: 0.78rem;

    box-shadow: none !important;

    transition: var(--tpp-transition);
}

.tpp-checkout-control:focus {
    border-color: var(--tpp-teal);

    box-shadow:
        0 0 0 3px rgba(0, 163, 163, 0.08) !important;
}

.tpp-checkout-control::placeholder {
    color: var(--tpp-gray-500);

    opacity: 0.75;
}

.tpp-checkout-textarea {
    min-height: 130px;

    resize: vertical;
}


/* =========================================================
   INPUT ICON
========================================================= */

.tpp-checkout-input-icon {
    position: relative;
}

.tpp-checkout-input-icon > i {
    position: absolute;

    top: 50%;
    left: 14px;

    z-index: 2;

    color: var(--tpp-teal);

    font-size: 0.86rem;

    transform: translateY(-50%);
}

.tpp-checkout-input-icon .form-control {
    padding-left: 40px;
}


/* =========================================================
   HELP
========================================================= */

.tpp-checkout-help {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-top: 13px;

    color: var(--tpp-gray-500);

    font-size: 0.67rem;

    line-height: 1.5;
}

.tpp-checkout-help i {
    margin-top: 1px;

    color: var(--tpp-teal);
}


/* =========================================================
   TERMS
========================================================= */

.tpp-checkout-terms {
    padding: 18px 20px;

    border-radius: 14px;

    background: var(--tpp-white);

    border:
        1px solid var(--tpp-gray-200);
}

.tpp-checkout-terms .form-check {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;

    padding: 0;
}

.tpp-checkout-terms .form-check-input {
    flex: 0 0 auto;

    margin: 3px 0 0;

    border-color:
        var(--tpp-gray-300);
}

.tpp-checkout-terms .form-check-input:checked {
    border-color: var(--tpp-teal);

    background-color: var(--tpp-teal);
}

.tpp-checkout-terms .form-check-label {
    color: var(--tpp-gray-700);

    font-size: 0.72rem;

    line-height: 1.6;
}

.tpp-checkout-terms a {
    color: var(--tpp-teal);

    font-weight: 700;
}

.tpp-checkout-terms a:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   SUBMIT
========================================================= */

.tpp-checkout-submit {
    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.tpp-checkout-submit-loading {
    display: none;
}

.tpp-checkout-submit.is-loading
.tpp-checkout-submit-default {
    display: none;
}

.tpp-checkout-submit.is-loading
.tpp-checkout-submit-loading {
    display: inline-flex;

    align-items: center;
}


/* =========================================================
   SUMMARY
========================================================= */

.tpp-checkout-summary {
    position: sticky;

    top: 110px;

    overflow: hidden;

    padding: 28px;

    border-radius: 22px;

    background: var(--tpp-white);

    border:
        1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
        var(--tpp-shadow);
}

.tpp-checkout-summary-header {
    position: relative;

    padding-bottom: 18px;

    margin-bottom: 18px;

    border-bottom:
        1px solid var(--tpp-gray-200);
}

.tpp-checkout-summary-header h3 {
    margin: 0;

    padding-right: 95px;

    font-size: 1.35rem;
}

.tpp-checkout-edit-cart {
    position: absolute;

    top: 5px;
    right: 0;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--tpp-teal);

    font-size: 0.67rem;

    font-weight: 700;
}

.tpp-checkout-edit-cart:hover {
    color: var(--tpp-orange);
}


/* =========================================================
   SUMMARY ITEMS
========================================================= */

.tpp-checkout-summary-items {
    display: grid;

    gap: 15px;

    max-height: 420px;

    padding-right: 3px;

    overflow-y: auto;
}

.tpp-checkout-summary-item {
    display: grid;

    grid-template-columns:
        74px
        minmax(0, 1fr);

    gap: 12px;

    align-items: center;
}

.tpp-checkout-summary-image {
    position: relative;

    width: 74px;
    height: 74px;

    overflow: visible;

    border-radius: 13px;

    background: var(--tpp-gray-100);
}

.tpp-checkout-summary-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: inherit;
}

.tpp-checkout-summary-image > span {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 50px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 0.62rem;

    font-weight: 800;

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

.tpp-checkout-summary-info {
    min-width: 0;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 12px;
}

.tpp-checkout-summary-info > div {
    min-width: 0;
}

.tpp-checkout-summary-type {
    display: block;

    margin-bottom: 3px;

    color: var(--tpp-teal);

    font-size: 0.59rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.tpp-checkout-summary-info h4 {
    margin: 0 0 5px;

    overflow: hidden;

    color: var(--tpp-dark);

    font-size: 0.82rem;

    line-height: 1.35;

    text-overflow: ellipsis;
}

.tpp-checkout-summary-info small {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;
}

.tpp-checkout-summary-info small i {
    color: var(--tpp-teal);
}

.tpp-checkout-summary-info > strong {
    flex: 0 0 auto;

    color: var(--tpp-dark);

    font-size: 0.8rem;
}


/* =========================================================
   SUMMARY VALUES
========================================================= */

.tpp-checkout-summary-values {
    display: grid;

    gap: 11px;

    margin-top: 20px;

    padding: 18px 0;

    border-top:
        1px solid var(--tpp-gray-200);

    border-bottom:
        1px solid var(--tpp-gray-200);
}

.tpp-checkout-summary-values > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--tpp-gray-700);

    font-size: 0.72rem;
}

.tpp-checkout-summary-values strong {
    color: var(--tpp-dark);
}


/* =========================================================
   TOTAL
========================================================= */

.tpp-checkout-summary-total {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    padding: 20px 0;
}

.tpp-checkout-summary-total span {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.8rem;

    font-weight: 800;
}

.tpp-checkout-summary-total small {
    display: block;

    max-width: 190px;

    margin-top: 3px;

    color: var(--tpp-gray-500);

    font-size: 0.6rem;

    line-height: 1.45;
}

.tpp-checkout-summary-total > strong {
    flex: 0 0 auto;

    color: var(--tpp-dark);

    font-size: 1.5rem;
}


/* =========================================================
   NOTICE
========================================================= */

.tpp-checkout-summary-notice {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    border-radius: 13px;

    background:
        rgba(0, 163, 163, 0.07);

    border:
        1px solid rgba(0, 163, 163, 0.10);
}

.tpp-checkout-summary-notice > i {
    margin-top: 2px;

    color: var(--tpp-teal);

    font-size: 1rem;
}

.tpp-checkout-summary-notice strong {
    display: block;

    margin-bottom: 3px;

    color: var(--tpp-dark);

    font-size: 0.7rem;
}

.tpp-checkout-summary-notice span {
    display: block;

    color: var(--tpp-gray-600);

    font-size: 0.63rem;

    line-height: 1.5;
}


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

@media (max-width: 991.98px) {

    .tpp-checkout-summary {
        position: static;
    }

}


@media (max-width: 767.98px) {

    .tpp-checkout-hero {
        min-height: 320px;
    }

    .tpp-checkout-hero-content {
        padding: 90px 0 38px;
    }

    .tpp-checkout-card {
        padding: 22px;
    }

    .tpp-checkout-summary {
        padding: 22px;
    }

}


@media (max-width: 575.98px) {

    .tpp-checkout-hero h1 {
        font-size: 2.3rem;
    }

    .tpp-checkout-summary-header h3 {
        padding-right: 0;
    }

    .tpp-checkout-edit-cart {
        position: static;

        margin-top: 9px;
    }

    .tpp-checkout-summary-info {
        align-items: flex-start;

        flex-direction: column;
    }

    .tpp-checkout-summary-total {
        align-items: flex-start;

        flex-direction: column;
    }

}



/* =========================================================
   CONFIRMATION
========================================================= */

.tpp-confirmation-section {
    background: #f7f8fa;
}


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

.tpp-confirmation-hero {
    position: relative;

    overflow: hidden;

    padding: 135px 0 75px;

    background:
        linear-gradient(
            135deg,
            #101820 0%,
            #173137 100%
        );
}


.tpp-confirmation-hero::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    top: -270px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(0, 163, 163, 0.15);
}


.tpp-confirmation-hero::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    bottom: -190px;
    left: -80px;

    border-radius: 50%;

    background:
        rgba(245, 160, 0, 0.10);
}


.tpp-confirmation-hero-content {
    position: relative;

    z-index: 2;

    max-width: 720px;

    margin: auto;

    text-align: center;
}


/* =========================================================
   CHECK ICON
========================================================= */

.tpp-confirmation-icon {
    width: 74px;
    height: 74px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--tpp-teal);

    color: var(--tpp-white);

    font-size: 2rem;

    box-shadow:
        0 15px 40px rgba(0, 163, 163, 0.25);
}


.tpp-confirmation-kicker {
    display: block;

    margin-bottom: 9px;

    color: var(--tpp-orange);

    font-size: 0.7rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}


.tpp-confirmation-hero h1 {
    margin-bottom: 15px;

    color: var(--tpp-white);

    font-size: clamp(
        2.3rem,
        5vw,
        4rem
    );

    line-height: 1.05;
}


.tpp-confirmation-hero p {
    max-width: 620px;

    margin: 0 auto;

    color:
        rgba(
            255,
            255,
            255,
            0.68
        );

    font-size: 0.85rem;

    line-height: 1.75;
}


/* =========================================================
   STATUS
========================================================= */

.tpp-confirmation-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 22px;

    padding: 10px 16px;

    border-radius: 50px;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    color:
        rgba(
            255,
            255,
            255,
            0.85
        );

    font-size: 0.68rem;

    font-weight: 600;
}


.tpp-confirmation-status i {
    color: var(--tpp-teal);
}


/* =========================================================
   MESSAGE
========================================================= */

.tpp-confirmation-message {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px 22px;

    margin-bottom: 15px;

    border-radius: 16px;

    background:
        rgba(
            0,
            163,
            163,
            0.07
        );

    border:
        1px solid
        rgba(
            0,
            163,
            163,
            0.10
        );
}


.tpp-confirmation-message-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--tpp-teal);

    color: var(--tpp-white);
}


.tpp-confirmation-message strong {
    display: block;

    margin-bottom: 4px;

    color: var(--tpp-dark);

    font-size: 0.78rem;
}


.tpp-confirmation-message p {
    margin: 0;

    color: var(--tpp-gray-600);

    font-size: 0.69rem;

    line-height: 1.6;
}


/* =========================================================
   CARDS
========================================================= */

.tpp-confirmation-card {
    padding: 27px;

    border-radius: 20px;

    background: var(--tpp-white);

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.05
        );

    box-shadow:
        var(--tpp-shadow-sm);
}


.tpp-confirmation-card-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    padding-bottom: 17px;

    border-bottom:
        1px solid
        var(--tpp-gray-200);
}


.tpp-confirmation-card-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(
            0,
            163,
            163,
            0.08
        );

    color: var(--tpp-teal);

    font-size: 1rem;
}


.tpp-confirmation-card-title span {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-teal);

    font-size: 0.58rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.tpp-confirmation-card-title h2 {
    margin: 0;

    color: var(--tpp-dark);

    font-size: 1.15rem;
}


/* =========================================================
   CUSTOMER DATA
========================================================= */

.tpp-confirmation-customer {
    display: grid;

    gap: 17px;
}


.tpp-confirmation-data {
    padding-bottom: 14px;

    border-bottom:
        1px solid
        var(--tpp-gray-100);
}


.tpp-confirmation-data:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


.tpp-confirmation-data span {
    display: block;

    margin-bottom: 4px;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;
}


.tpp-confirmation-data strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.76rem;

    font-weight: 700;

    word-break: break-word;
}


/* =========================================================
   ITEMS
========================================================= */

.tpp-confirmation-items {
    display: grid;

    gap: 17px;
}


.tpp-confirmation-item {
    display: grid;

    grid-template-columns:
        82px
        minmax(
            0,
            1fr
        );

    gap: 14px;

    align-items: center;

    padding-bottom: 17px;

    border-bottom:
        1px solid
        var(--tpp-gray-100);
}


.tpp-confirmation-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


/* IMAGE */

.tpp-confirmation-item-image {
    position: relative;

    width: 82px;
    height: 82px;
}


.tpp-confirmation-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 13px;
}


.tpp-confirmation-item-image span {
    position: absolute;

    top: -7px;
    right: -7px;

    min-width: 23px;
    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0 5px;

    border-radius: 50px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 0.61rem;

    font-weight: 800;

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


/* ITEM INFO */

.tpp-confirmation-item-info {
    min-width: 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.tpp-confirmation-item-main {
    min-width: 0;
}


.tpp-confirmation-type {
    display: block;

    margin-bottom: 3px;

    color: var(--tpp-teal);

    font-size: 0.56rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


.tpp-confirmation-item h3 {
    margin: 0 0 7px;

    color: var(--tpp-dark);

    font-size: 0.84rem;

    line-height: 1.4;
}


.tpp-confirmation-item-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}


.tpp-confirmation-item-meta span {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: var(--tpp-gray-500);

    font-size: 0.6rem;
}


.tpp-confirmation-item-meta i {
    color: var(--tpp-teal);
}


/* PRICE */

.tpp-confirmation-item-price {
    flex: 0 0 auto;

    text-align: right;
}


.tpp-confirmation-item-price span {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.57rem;
}


.tpp-confirmation-item-price strong {
    color: var(--tpp-dark);

    font-size: 0.86rem;
}


/* =========================================================
   TOTAL
========================================================= */

.tpp-confirmation-total {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;

    padding-top: 20px;

    border-top:
        1px solid
        var(--tpp-gray-200);
}


.tpp-confirmation-total span {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.78rem;

    font-weight: 800;
}


.tpp-confirmation-total small {
    display: block;

    margin-top: 3px;

    color: var(--tpp-gray-500);

    font-size: 0.58rem;
}


.tpp-confirmation-total > strong {
    color: var(--tpp-dark);

    font-size: 1.45rem;
}


/* =========================================================
   OBSERVATIONS
========================================================= */

.tpp-confirmation-observations {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-top: 24px;

    padding: 20px 22px;

    border-radius: 16px;

    background: #fff9ed;

    border:
        1px solid
        rgba(
            245,
            160,
            0,
            0.15
        );
}


.tpp-confirmation-observations > div:first-child {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(
            245,
            160,
            0,
            0.15
        );

    color: var(--tpp-orange);
}


.tpp-confirmation-observations span {
    display: block;

    margin-bottom: 4px;

    color: var(--tpp-dark);

    font-size: 0.69rem;

    font-weight: 800;
}


.tpp-confirmation-observations p {
    margin: 0;

    color: var(--tpp-gray-600);

    font-size: 0.68rem;

    line-height: 1.6;
}


/* =========================================================
   ACTIONS
========================================================= */

.tpp-confirmation-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.tpp-confirmation-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 22px;

    border:
        1px solid
        var(--tpp-gray-300);

    border-radius: 50px;

    background: var(--tpp-white);

    color: var(--tpp-dark);

    font-size: 0.72rem;

    font-weight: 700;

    transition:
        var(--tpp-transition);
}


.tpp-confirmation-secondary:hover {
    border-color: var(--tpp-teal);

    color: var(--tpp-teal);

    transform:
        translateY(-2px);
}


/* =========================================================
   FOOTER NOTE
========================================================= */

.tpp-confirmation-footer-note {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 8px;

    max-width: 720px;

    margin: 27px auto 0;

    text-align: center;

    color: var(--tpp-gray-500);
}


.tpp-confirmation-footer-note i {
    flex: 0 0 auto;

    margin-top: 1px;

    color: var(--tpp-teal);
}


.tpp-confirmation-footer-note p {
    margin: 0;

    font-size: 0.62rem;

    line-height: 1.6;
}


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

@media (
    max-width: 767.98px
) {

    .tpp-confirmation-hero {
        padding:
            115px
            0
            55px;
    }


    .tpp-confirmation-card {
        padding: 22px;
    }


    .tpp-confirmation-item-info {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .tpp-confirmation-item-price {
        text-align: left;
    }

}


@media (
    max-width: 575.98px
) {

    .tpp-confirmation-icon {
        width: 64px;
        height: 64px;

        font-size: 1.7rem;
    }


    .tpp-confirmation-hero h1 {
        font-size: 2.25rem;
    }


    .tpp-confirmation-item {
        grid-template-columns:
            70px
            minmax(
                0,
                1fr
            );
    }


    .tpp-confirmation-item-image {
        width: 70px;
        height: 70px;
    }


    .tpp-confirmation-total {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .tpp-confirmation-actions {
        flex-direction: column;
    }


    .tpp-confirmation-actions .btn {
        width: 100%;
    }

}


/* =========================================================
   CONFIRMATION - PDF BUTTON
========================================================= */

.tpp-confirmation-pdf {
    min-height: 46px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border:
        1px solid rgba(220, 53, 69, 0.18);

    border-radius: 50px;

    background:
        rgba(220, 53, 69, 0.07);

    color: #c93b49;

    font-size: 0.72rem;

    font-weight: 700;

    transition:
        var(--tpp-transition);
}


.tpp-confirmation-pdf i {
    font-size: 0.95rem;
}


.tpp-confirmation-pdf:hover {
    border-color: #c93b49;

    background: #c93b49;

    color: var(--tpp-white);

    transform: translateY(-2px);
}


.tpp-confirmation-pdf:focus {
    border-color: #c93b49;

    background: #c93b49;

    color: var(--tpp-white);

    box-shadow:
        0 0 0 3px rgba(201, 59, 73, 0.12);
}


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

@media (max-width: 575.98px) {

    .tpp-confirmation-pdf {
        width: 100%;
    }

}



/* =========================================================
   TOURS LIST - CART
   Agregar al final del CSS de tours_list_tppjungle
========================================================= */


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

.tpp-tour-card-actions {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 9px;

    margin-top: 16px;

    padding-top: 15px;

    border-top:
        1px solid var(--tpp-gray-200);
}


.tpp-tour-card-detail,
.tpp-tour-card-cart {
    min-height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    border-radius: 50px;

    font-size: 0.7rem;

    font-weight: 700;

    transition:
        var(--tpp-transition);
}


.tpp-tour-card-detail {
    border:
        1px solid var(--tpp-gray-200);

    background: var(--tpp-white);

    color: var(--tpp-dark);
}


.tpp-tour-card-detail:hover {
    border-color: var(--tpp-teal);

    background:
        rgba(0, 163, 163, 0.05);

    color: var(--tpp-teal);
}


.tpp-tour-card-cart {
    border:
        1px solid var(--tpp-dark);

    background: var(--tpp-dark);

    color: var(--tpp-white);
}


.tpp-tour-card-cart:hover {
    border-color:
        var(--tpp-orange);

    background:
        var(--tpp-orange);

    color:
        var(--tpp-dark);

    transform:
        translateY(-1px);
}


/* =========================================================
   MODAL
========================================================= */

.tpp-cart-modal
.modal-content {
    overflow: hidden;

    border: 0;

    border-radius: 22px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.22);
}


.tpp-cart-modal
.modal-header {
    align-items: flex-start;

    padding: 22px 24px 18px;

    border-bottom:
        1px solid
        var(--tpp-gray-200);
}


.tpp-cart-modal-subtitle {
    display: block;

    margin-bottom: 4px;

    color:
        var(--tpp-teal);

    font-size: 0.62rem;

    font-weight: 800;

    text-transform:
        uppercase;

    letter-spacing: 0.8px;
}


.tpp-cart-modal
.modal-title {
    color:
        var(--tpp-dark);

    font-size: 1.2rem;

    font-weight: 800;
}


.tpp-cart-modal
.modal-body {
    padding: 22px 24px;
}


.tpp-cart-modal
.modal-footer {
    gap: 8px;

    padding: 16px 24px 22px;

    border-top:
        1px solid
        var(--tpp-gray-200);
}


/* =========================================================
   SELECTED TOUR
========================================================= */

.tpp-cart-modal-tour {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 20px;

    padding: 13px;

    border-radius: 13px;

    background:
        rgba(
            0,
            163,
            163,
            0.07
        );
}


.tpp-cart-modal-tour-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        var(--tpp-teal);

    color:
        var(--tpp-white);
}


.tpp-cart-modal-tour small {
    display: block;

    margin-bottom: 2px;

    color:
        var(--tpp-gray-500);

    font-size: 0.61rem;
}


.tpp-cart-modal-tour strong {
    display: block;

    color:
        var(--tpp-dark);

    font-size: 0.8rem;
}


/* =========================================================
   FIELDS
========================================================= */

.tpp-cart-modal-label {
    display: block;

    margin-bottom: 6px;

    color:
        var(--tpp-dark);

    font-size: 0.7rem;

    font-weight: 700;
}


.tpp-cart-modal-label span {
    color: #dc3545;
}


.tpp-cart-modal-control {
    min-height: 44px;

    border:
        1px solid
        var(--tpp-gray-200);

    border-radius: 10px;

    color:
        var(--tpp-dark);

    font-size: 0.74rem;

    box-shadow: none !important;
}


.tpp-cart-modal-control:focus {
    border-color:
        var(--tpp-teal);

    box-shadow:
        0 0 0 3px
        rgba(
            0,
            163,
            163,
            0.07
        ) !important;
}


/* =========================================================
   TOTAL
========================================================= */

.tpp-cart-modal-total {
    display: flex;

    align-items: flex-end;
    justify-content:
        space-between;

    gap: 15px;

    margin-top: 18px;

    padding: 15px;

    border-radius: 13px;

    background:
        var(--tpp-gray-100);

    border:
        1px solid
        var(--tpp-gray-200);
}


.tpp-cart-modal-total span {
    display: block;

    color:
        var(--tpp-dark);

    font-size: 0.7rem;

    font-weight: 800;
}


.tpp-cart-modal-total small {
    display: block;

    margin-top: 2px;

    color:
        var(--tpp-gray-500);

    font-size: 0.58rem;
}


.tpp-cart-modal-total > strong {
    color:
        var(--tpp-dark);

    font-size: 1.25rem;
}


/* =========================================================
   FEEDBACK
========================================================= */

.tpp-cart-modal-feedback {
    display: none;

    margin-top: 12px;

    padding: 10px 12px;

    border-radius: 10px;

    font-size: 0.66rem;

    line-height: 1.5;
}


.tpp-cart-modal-feedback.is-visible {
    display: block;
}


.tpp-cart-modal-feedback-success {
    background:
        rgba(
            25,
            135,
            84,
            0.09
        );

    border:
        1px solid
        rgba(
            25,
            135,
            84,
            0.15
        );

    color: #146c43;
}


.tpp-cart-modal-feedback-error {
    background:
        rgba(
            220,
            53,
            69,
            0.08
        );

    border:
        1px solid
        rgba(
            220,
            53,
            69,
            0.14
        );

    color: #b02a37;
}


/* =========================================================
   NOTE
========================================================= */

.tpp-cart-modal-note {
    display: flex;

    align-items: flex-start;

    gap: 6px;

    margin:
        12px
        0
        0;

    color:
        var(--tpp-gray-500);

    font-size: 0.61rem;

    line-height: 1.5;
}


.tpp-cart-modal-note i {
    margin-top: 1px;

    color:
        var(--tpp-orange);
}


/* =========================================================
   MODAL BUTTONS
========================================================= */

.tpp-cart-modal-cancel {
    min-height: 43px;

    padding: 8px 18px;

    border:
        1px solid
        var(--tpp-gray-200);

    border-radius: 50px;

    background:
        var(--tpp-white);

    color:
        var(--tpp-gray-700);

    font-size: 0.7rem;

    font-weight: 700;
}


.tpp-cart-modal-cancel:hover {
    border-color:
        var(--tpp-gray-400);

    color:
        var(--tpp-dark);
}


.tpp-cart-modal-submit {
    min-height: 43px;

    padding-left: 18px;

    padding-right: 18px;
}


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

@media (
    max-width: 575.98px
) {

    .tpp-tour-card-actions {
        grid-template-columns:
            1fr;
    }


    .tpp-cart-modal
    .modal-footer {
        display: grid;

        grid-template-columns:
            1fr;
    }


    .tpp-cart-modal
    .modal-footer
    .btn {
        width: 100%;

        margin: 0;
    }


    .tpp-cart-modal-total {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}


/* =========================================================
   PACKAGE DETAIL - CART
   Agregar al final del CSS del detalle de paquetes
========================================================= */


/* =========================================================
   MIN PAX
========================================================= */

.tpp-package-min-pax-note {
    display: flex;

    align-items: flex-start;

    gap: 6px;

    margin-top: 7px;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;

    line-height: 1.5;
}


.tpp-package-min-pax-note i {
    margin-top: 1px;

    color: var(--tpp-orange);
}


.tpp-package-min-pax-note strong {
    color: var(--tpp-dark);
}


/* =========================================================
   TOTAL ESTIMADO
========================================================= */

.tpp-package-cart-total {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin: 18px 0 14px;

    padding: 15px;

    border-radius: 14px;

    background: var(--tpp-gray-100);

    border:
        1px solid var(--tpp-gray-200);
}


.tpp-package-cart-total > div > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-dark);

    font-size: 0.74rem;

    font-weight: 800;
}


.tpp-package-cart-total > div > small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.59rem;
}


.tpp-package-cart-total > strong {
    flex: 0 0 auto;

    color: var(--tpp-dark);

    font-size: 1.25rem;

    font-weight: 800;
}


/* =========================================================
   CART BUTTON
========================================================= */

.btn-tpp-cart {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--tpp-dark);

    border-radius: 50px;

    background: var(--tpp-dark);

    color: var(--tpp-white);

    font-size: 0.76rem;

    font-weight: 800;

    transition: var(--tpp-transition);
}


.btn-tpp-cart:hover,
.btn-tpp-cart:focus {
    border-color: var(--tpp-orange);

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    transform: translateY(-1px);
}


.btn-tpp-cart:disabled {
    opacity: 0.72;

    cursor: wait;

    transform: none;
}


/* =========================================================
   FEEDBACK
========================================================= */

.tpp-package-cart-feedback {
    display: none;

    margin-top: 10px;

    padding: 10px 12px;

    border-radius: 10px;

    font-size: 0.67rem;

    line-height: 1.5;
}


.tpp-package-cart-feedback.is-visible {
    display: block;
}


.tpp-package-cart-feedback-success {
    background:
        rgba(25, 135, 84, 0.09);

    border:
        1px solid rgba(25, 135, 84, 0.15);

    color: #146c43;
}


.tpp-package-cart-feedback-error {
    background:
        rgba(220, 53, 69, 0.08);

    border:
        1px solid rgba(220, 53, 69, 0.14);

    color: #b02a37;
}


/* =========================================================
   INVALID PAX
========================================================= */

#package_passengers.is-invalid {
    border-color: #dc3545;

    box-shadow:
        0 0 0 3px rgba(220, 53, 69, 0.08);
}


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

@media (max-width: 575.98px) {

    .tpp-package-cart-total {
        align-items: flex-start;

        flex-direction: column;
    }


    .tpp-package-cart-total > strong {
        font-size: 1.35rem;
    }

}


/* =========================================================
   CART - SOPORTE PAQUETES
   Agregar al final del CSS actual de cart_tppjungle
========================================================= */


/* =========================================================
   PACKAGE HOTEL
========================================================= */

.tpp-cart-package-hotel {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 14px;

    padding: 11px 12px;

    border-radius: 12px;

    background:
        rgba(0, 163, 163, 0.06);

    border:
        1px solid rgba(0, 163, 163, 0.09);
}


.tpp-cart-package-hotel-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal);
}


.tpp-cart-package-hotel small {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.59rem;
}


.tpp-cart-package-hotel strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.7rem;

    line-height: 1.45;
}


/* =========================================================
   MIN PAX
========================================================= */

.tpp-cart-min-pax-info {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 10px;

    padding: 7px 9px;

    border-radius: 9px;

    background:
        rgba(245, 160, 0, 0.08);

    color: #8a5a00;

    font-size: 0.61rem;

    line-height: 1.4;
}


.tpp-cart-min-pax-info i {
    color: var(--tpp-orange);
}


.tpp-cart-quantity-note {
    display: block;

    margin-top: 6px;

    color: var(--tpp-gray-500);

    font-size: 0.58rem;

    line-height: 1.4;
}


.tpp-cart-quantity button:disabled {
    opacity: 0.42;

    cursor: not-allowed;

    background: var(--tpp-gray-100);

    color: var(--tpp-gray-500);
}


/* =========================================================
   CONTINUE LINKS
========================================================= */

.tpp-cart-continue-links {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;
}


@media (max-width: 575.98px) {

    .tpp-cart-continue-links {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .tpp-cart-package-hotel {
        align-items: flex-start;
    }

}



/* =========================================================
   CHECKOUT - SOPORTE PAQUETES
   Agregar al final del CSS actual de checkout_tppjungle
========================================================= */


/* =========================================================
   ITEM META
========================================================= */

.tpp-checkout-summary-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 5px 10px;
}


.tpp-checkout-summary-meta small {
    display: inline-flex;

    align-items: center;

    gap: 4px;
}


/* =========================================================
   PACKAGE HOTEL
========================================================= */

.tpp-checkout-package-hotel {
    display: inline-flex;

    align-items: flex-start;

    gap: 5px;

    max-width: 100%;

    margin-top: 7px;

    padding: 6px 8px;

    border-radius: 8px;

    background:
        rgba(0, 163, 163, 0.06);

    color: var(--tpp-gray-700);

    font-size: 0.58rem;

    line-height: 1.45;
}


.tpp-checkout-package-hotel i {
    flex: 0 0 auto;

    margin-top: 1px;

    color: var(--tpp-teal);
}


.tpp-checkout-package-hotel span {
    min-width: 0;
}


/* =========================================================
   MIN PAX
========================================================= */

.tpp-checkout-min-pax {
    display: flex;

    align-items: flex-start;

    gap: 5px;

    margin-top: 6px;

    color: #8a5a00;

    font-size: 0.56rem;

    line-height: 1.4;
}


.tpp-checkout-min-pax i {
    flex: 0 0 auto;

    margin-top: 1px;

    color: var(--tpp-orange);
}


/* =========================================================
   ITEM PRICE
========================================================= */

.tpp-checkout-summary-price {
    flex: 0 0 auto;

    text-align: right;
}


.tpp-checkout-summary-price small {
    display: block;

    margin-bottom: 3px;

    color: var(--tpp-gray-500);

    font-size: 0.56rem;
}


.tpp-checkout-summary-price strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.8rem;
}


@media (max-width: 575.98px) {

    .tpp-checkout-summary-price {
        width: 100%;

        text-align: left;
    }

}


/* =========================================================
   CONFIRMATION - SOPORTE PAQUETES
   Agregar al final del CSS actual de checkout_confirmation
========================================================= */


/* =========================================================
   PACKAGE HOTEL
========================================================= */

.tpp-confirmation-package-hotel {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-top: 9px;

    padding: 8px 10px;

    border-radius: 10px;

    background:
        rgba(0, 163, 163, 0.06);

    border:
        1px solid rgba(0, 163, 163, 0.09);
}


.tpp-confirmation-package-hotel > i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: var(--tpp-teal);
}


.tpp-confirmation-package-hotel small {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-gray-500);

    font-size: 0.56rem;
}


.tpp-confirmation-package-hotel strong {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.66rem;

    line-height: 1.45;
}


/* =========================================================
   MIN PAX
========================================================= */

.tpp-confirmation-min-pax {
    display: flex;

    align-items: flex-start;

    gap: 5px;

    margin-top: 6px;

    color: #8a5a00;

    font-size: 0.56rem;

    line-height: 1.4;
}


.tpp-confirmation-min-pax i {
    flex: 0 0 auto;

    margin-top: 1px;

    color: var(--tpp-orange);
}


/* =========================================================
   UNIT PRICE
========================================================= */

.tpp-confirmation-unit-price {
    display: block;

    margin-bottom: 8px;

    color: var(--tpp-gray-700);

    font-size: 0.66rem;

    font-weight: 700;
}


@media (max-width: 575.98px) {

    .tpp-confirmation-package-hotel {
        align-items: flex-start;
    }

}


/* =========================================================
   OFFER DETAIL - CART
   Agregar al final del CSS de offers_detail_tppjungle
========================================================= */


/* =========================================================
   MIN PAX
========================================================= */

.tpp-offer-min-pax-note {
    display: flex;

    align-items: flex-start;

    gap: 6px;

    margin-top: 7px;

    color: var(--tpp-gray-500);

    font-size: 0.62rem;

    line-height: 1.5;
}


.tpp-offer-min-pax-note i {
    margin-top: 1px;

    color: var(--tpp-orange);
}


.tpp-offer-min-pax-note strong {
    color: var(--tpp-dark);
}


/* =========================================================
   TOTAL ESTIMADO
========================================================= */

.tpp-offer-cart-total {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin: 18px 0 14px;

    padding: 15px;

    border-radius: 14px;

    background:
        rgba(245, 160, 0, 0.07);

    border:
        1px solid rgba(245, 160, 0, 0.13);
}


.tpp-offer-cart-total > div > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-dark);

    font-size: 0.74rem;

    font-weight: 800;
}


.tpp-offer-cart-total > div > small {
    display: block;

    color: var(--tpp-gray-500);

    font-size: 0.59rem;
}


.tpp-offer-cart-total > strong {
    flex: 0 0 auto;

    color: var(--tpp-dark);

    font-size: 1.25rem;

    font-weight: 800;
}


/* =========================================================
   CART BUTTON
========================================================= */

.btn-tpp-offer-cart {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--tpp-orange);

    border-radius: 50px;

    background: var(--tpp-orange);

    color: var(--tpp-dark);

    font-size: 0.76rem;

    font-weight: 800;

    transition:
        var(--tpp-transition);
}


.btn-tpp-offer-cart:hover,
.btn-tpp-offer-cart:focus {
    border-color: var(--tpp-dark);

    background: var(--tpp-dark);

    color: var(--tpp-white);

    transform: translateY(-1px);
}


.btn-tpp-offer-cart:disabled {
    opacity: 0.72;

    cursor: wait;

    transform: none;
}


/* =========================================================
   FEEDBACK
========================================================= */

.tpp-offer-cart-feedback {
    display: none;

    margin-top: 10px;

    padding: 10px 12px;

    border-radius: 10px;

    font-size: 0.67rem;

    line-height: 1.5;
}


.tpp-offer-cart-feedback.is-visible {
    display: block;
}


.tpp-offer-cart-feedback-success {
    background:
        rgba(25, 135, 84, 0.09);

    border:
        1px solid rgba(25, 135, 84, 0.15);

    color: #146c43;
}


.tpp-offer-cart-feedback-error {
    background:
        rgba(220, 53, 69, 0.08);

    border:
        1px solid rgba(220, 53, 69, 0.14);

    color: #b02a37;
}


#offer_passengers.is-invalid {
    border-color: #dc3545;

    box-shadow:
        0 0 0 3px rgba(220, 53, 69, 0.08);
}


@media (max-width: 575.98px) {

    .tpp-offer-cart-total {
        align-items: flex-start;

        flex-direction: column;
    }


    .tpp-offer-cart-total > strong {
        font-size: 1.35rem;
    }

}


/* =========================================================
   OFFERS LIST - MODALIDAD DE PRECIO
   Agregar al final del CSS actual de offers_list_tppjungle
========================================================= */

.tpp-offer-package-price-note {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: var(--tpp-gray-500);

    font-size: 0.58rem;

    font-weight: 600;

    line-height: 1.4;
}


.tpp-offer-package-price-note i {
    color: var(--tpp-orange);

    font-size: 0.67rem;
}


/* =========================================================
   OFFER DETAIL - PRECIO GRUPAL
   Agregar al final del CSS actual de offers_detail_tppjungle
========================================================= */


/* =========================================================
   PRICE BAR
========================================================= */

.tpp-offer-group-price-note {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 5px;

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.58rem;

    font-weight: 600;

    line-height: 1.4;
}


.tpp-offer-group-price-note i {
    color: var(--tpp-orange);
}


/* =========================================================
   BOOKING GROUP PRICE
========================================================= */

.tpp-offer-booking-group-note {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: var(--tpp-gray-500);

    font-size: 0.6rem;

    font-weight: 600;

    line-height: 1.45;
}


.tpp-offer-booking-group-note i {
    color: var(--tpp-orange);
}


/* =========================================================
   RELATED GROUP PRICE
========================================================= */

.tpp-offer-related-price-note {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 4px;

    color: var(--tpp-gray-500);

    font-size: 0.56rem;

    font-weight: 600;

    line-height: 1.4;
}


.tpp-offer-related-price-note i {
    color: var(--tpp-orange);
}


@media (max-width: 767.98px) {

    .tpp-offer-group-price-note {
        justify-content: flex-start;
    }

}


/* =========================================================
   OFFER DETAIL - AJUSTES PRECIO GRUPAL
   Agregar al final del CSS actual
========================================================= */


/* =========================================================
   PASSENGERS LOCKED
========================================================= */

.tpp-input-locked {
    background: #eef2f3 !important;

    border-color: #d8dfe2 !important;

    color: #263238 !important;

    cursor: not-allowed;

    font-weight: 700;
}


.tpp-input-locked:focus {
    border-color: #d8dfe2 !important;

    box-shadow: none !important;
}


.tpp-offer-min-pax-note .bi-lock-fill {
    color: var(--tpp-orange);
}


/* =========================================================
   TOTAL ESTIMADO
========================================================= */

.tpp-offer-cart-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

    padding: 16px 18px;

    border:
        1px solid rgba(245, 160, 0, 0.35);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08);
}


.tpp-offer-cart-total-copy {
    min-width: 0;
}


.tpp-offer-cart-total-copy > span {
    display: block;

    margin-bottom: 3px;

    color: #1d2529;

    font-size: 0.78rem;

    font-weight: 800;
}


.tpp-offer-cart-total-copy > small {
    display: block;

    color: #778187;

    font-size: 0.62rem;

    font-weight: 500;

    line-height: 1.4;
}


.tpp-offer-cart-total-price {
    flex: 0 0 auto;

    color: #11181c;

    font-size: 1.35rem;

    font-weight: 800;

    white-space: nowrap;
}


.tpp-offer-cart-total-price #offer_cart_total {
    color: inherit;

    font-size: inherit;

    font-weight: inherit;
}


@media (max-width: 575.98px) {

    .tpp-offer-cart-total {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .tpp-offer-cart-total-price {
        font-size: 1.4rem;
    }

}


/* =========================================================
   CART - PRECIO GRUPAL
   Agregar al final del CSS actual de cart_tppjungle
========================================================= */

.tpp-cart-group-quantity {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 150px;
    padding: 9px 11px;
    border-radius: 11px;
    background: rgba(245, 160, 0, 0.08);
    border: 1px solid rgba(245, 160, 0, 0.16);
}

.tpp-cart-group-quantity-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(245, 160, 0, 0.14);
    color: var(--tpp-orange);
}

.tpp-cart-group-quantity small {
    display: block;
    margin-bottom: 1px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
}

.tpp-cart-group-quantity strong {
    display: block;
    color: var(--tpp-dark);
    font-size: 0.68rem;
    line-height: 1.3;
}

.tpp-cart-group-price-note {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.35;
}

.tpp-cart-group-price-note i {
    color: var(--tpp-orange);
}

.tpp-cart-min-pax-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 7px 9px;
    border-radius: 9px;
    background: rgba(245, 160, 0, 0.08);
    color: #8a5a00;
    font-size: 0.61rem;
    line-height: 1.4;
}

.tpp-cart-min-pax-info i {
    color: var(--tpp-orange);
}

@media (max-width: 575.98px) {
    .tpp-cart-group-price-note {
        justify-content: flex-start;
    }

    .tpp-cart-group-quantity {
        width: 100%;
    }
}



/* =========================================================
   CHECKOUT - PRECIO GRUPAL
   Agregar al final del CSS actual de checkout_tppjungle
========================================================= */

.tpp-checkout-group-price-note {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.35;
}

.tpp-checkout-group-price-note i {
    color: var(--tpp-orange);
}

.tpp-checkout-group-info {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 6px;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(245, 160, 0, 0.08);
    color: #8a5a00;
    font-size: 0.56rem;
    line-height: 1.4;
}

.tpp-checkout-group-info i {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--tpp-orange);
}

@media (max-width: 575.98px) {
    .tpp-checkout-group-price-note {
        justify-content: flex-start;
    }
}


/* =========================================================
   CART - CANTIDAD DE PAQUETES GRUPALES
   Agregar al final del CSS actual de cart_tppjungle
========================================================= */

.tpp-cart-group-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 230px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(245, 160, 0, 0.06);
    border: 1px solid rgba(245, 160, 0, 0.14);
}

.tpp-cart-group-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tpp-cart-group-label {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tpp-cart-group-quantity-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(245, 160, 0, 0.14);
    color: var(--tpp-orange);
}

.tpp-cart-group-label small {
    display: block;
    margin-bottom: 2px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
}

.tpp-cart-group-label strong {
    display: block;
    color: var(--tpp-dark);
    font-size: 0.68rem;
    line-height: 1.3;
}

.tpp-cart-group-total-pax {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px dashed rgba(245, 160, 0, 0.22);
    color: var(--tpp-gray-600);
    font-size: 0.6rem;
}

.tpp-cart-group-total-pax i {
    color: var(--tpp-teal);
}

.tpp-cart-group-total-pax strong {
    color: var(--tpp-dark);
}

.tpp-cart-group-price-note {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.35;
}

.tpp-cart-group-price-note i {
    color: var(--tpp-orange);
}

@media (max-width: 575.98px) {

    .tpp-cart-group-box {
        width: 100%;
        min-width: 0;
    }

    .tpp-cart-group-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .tpp-cart-group-price-note {
        justify-content: flex-start;
    }
}


/* =========================================================
   CHECKOUT - CANTIDAD DE PAQUETES GRUPALES
   Agregar al final del CSS actual de checkout_tppjungle
========================================================= */

.tpp-checkout-group-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 7px;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(245, 160, 0, 0.08);
    color: #8a5a00;
    line-height: 1.4;
}

.tpp-checkout-group-info > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--tpp-orange);
}

.tpp-checkout-group-info span {
    display: block;
    color: var(--tpp-dark);
    font-size: 0.6rem;
    font-weight: 700;
}

.tpp-checkout-group-info small {
    display: block;
    margin-top: 2px;
    color: var(--tpp-gray-500);
    font-size: 0.55rem;
}

.tpp-checkout-group-price-note {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 5px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
    font-weight: 600;
    line-height: 1.35;
}

.tpp-checkout-group-price-note i {
    color: var(--tpp-orange);
}

@media (max-width: 575.98px) {
    .tpp-checkout-group-price-note {
        justify-content: flex-start;
    }
}


/* =========================================================
   CONFIRMATION - CANTIDAD DE PAQUETES GRUPALES
   Agregar al final del CSS actual
========================================================= */

.tpp-confirmation-group-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(245, 160, 0, 0.08);
    border: 1px solid rgba(245, 160, 0, 0.14);
}

.tpp-confirmation-group-info > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--tpp-orange);
}

.tpp-confirmation-group-info small {
    display: block;
    margin-bottom: 2px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
}

.tpp-confirmation-group-info strong {
    display: block;
    color: var(--tpp-dark);
    font-size: 0.66rem;
    line-height: 1.4;
}

.tpp-confirmation-group-info span {
    display: block;
    margin-top: 2px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
}

.tpp-confirmation-group-price-note {
    display: block;
    margin-top: 4px;
    color: var(--tpp-gray-500);
    font-size: 0.56rem;
    font-weight: 600;
}


/* =========================================================
   PACKAGES LIST - PRECIO GRUPAL
   Agregar al final del CSS actual de packagestours_list_tppjungle
========================================================= */


/* =========================================================
   GROUP BADGE
========================================================= */

.tpp-package-image {
    position: relative;
}


.tpp-package-group-badge {
    position: absolute;

    top: 16px;
    right: 16px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 7px 10px;

    border-radius: 50px;

    background:
        rgba(16, 24, 32, 0.88);

    color: #ffffff;

    font-size: 0.6rem;

    font-weight: 700;

    line-height: 1;

    backdrop-filter: blur(4px);

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.14);
}


.tpp-package-group-badge i {
    color: var(--tpp-orange);

    font-size: 0.7rem;
}


/* =========================================================
   GROUP PRICE NOTE
========================================================= */

.tpp-package-group-price-note {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 5px;

    color: var(--tpp-gray-500);

    font-size: 0.58rem;

    font-weight: 600;

    line-height: 1.4;
}


.tpp-package-group-price-note i {
    color: var(--tpp-orange);

    font-size: 0.67rem;
}


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

@media (max-width: 575.98px) {

    .tpp-package-group-badge {
        top: 12px;
        right: 12px;
    }

}


/* =========================================================
   PACKAGE DETAIL - PRECIO GRUPAL
   Agregar al final del CSS actual
========================================================= */


/* =========================================================
   HERO BADGE
========================================================= */

.tpp-package-group-detail-badge {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-left: 8px;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(245, 160, 0, 0.92);

    color: #101820;

    font-size: 0.64rem;

    font-weight: 800;

    line-height: 1;
}


.tpp-package-group-detail-badge i {
    font-size: 0.72rem;
}


/* =========================================================
   LOCKED PASSENGERS
========================================================= */

.tpp-input-locked {
    background: #eef2f3 !important;

    border-color: #d8dfe2 !important;

    color: #263238 !important;

    cursor: not-allowed;

    font-weight: 700;
}


.tpp-input-locked:focus {
    border-color: #d8dfe2 !important;

    box-shadow: none !important;
}


.tpp-package-min-pax-note .bi-lock-fill {
    color: var(--tpp-orange);
}


/* =========================================================
   TOTAL
========================================================= */

.tpp-package-cart-total {
    background: #ffffff;

    border: 1px solid rgba(245, 160, 0, 0.28);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   RELATED
========================================================= */

.tpp-package-related-group-note {
    display: flex;

    align-items: center;

    gap: 4px;

    margin-top: 4px;

    color: var(--tpp-gray-500);

    font-size: 0.55rem;

    font-weight: 600;

    line-height: 1.35;
}


.tpp-package-related-group-note i {
    color: var(--tpp-orange);
}


@media (max-width: 575.98px) {

    .tpp-package-group-detail-badge {
        margin-top: 8px;
        margin-left: 0;
    }

}

/* =========================================================
   FLOATING CART
========================================================= */

.tpp-floating-cart {
    position: fixed;

    right: 28px;
    bottom: 92px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #101820;

    color: #ffffff;

    text-decoration: none;

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(12px)
        scale(0.92);

    pointer-events: none;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.20);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}


.tpp-floating-cart.is-visible {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;
}


.tpp-floating-cart:hover {
    color: #ffffff;

    background:
        var(--tpp-teal);

    transform:
        translateY(-3px);
}


.tpp-floating-cart > i {
    font-size: 1.2rem;
}


/* =========================================================
   COUNT
========================================================= */

.tpp-floating-cart-count {
    position: absolute;

    top: -5px;
    right: -5px;

    min-width: 22px;
    height: 22px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;

    background: #f5a000;

    color: #101820;

    border: 2px solid #ffffff;

    font-size: 0.65rem;
    font-weight: 800;
}


/* =========================================================
   ANIMATION WHEN UPDATED
========================================================= */

.tpp-floating-cart.is-updated {
    animation:
        tppCartPulse 0.45s ease;
}


@keyframes tppCartPulse {

    0% {
        transform:
            scale(1);
    }

    45% {
        transform:
            scale(1.14);
    }

    100% {
        transform:
            scale(1);
    }

}


@media (max-width: 575.98px) {

    .tpp-floating-cart {
        right: 18px;
        bottom: 84px;

        width: 48px;
        height: 48px;
    }

}


/* =========================================================
   RECOGNITIONS
========================================================= */

.tpp-recognition-section {
    padding: 50px 0;
    background: #ffffff;
}


.tpp-recognition-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 35px;
}


.tpp-recognition-header > div {
    max-width: 560px;
}


.tpp-recognition-header > p {
    max-width: 460px;
    margin: 0;
    color: var(--tpp-gray-500);
    font-size: 0.88rem;
    line-height: 1.7;
}


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

.tpp-recognition-slider-wrapper {
    position: relative;
}


.tpp-recognition-slider {
    display: flex;
    gap: 18px;

    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;

    padding: 8px 2px;
}


.tpp-recognition-slider::-webkit-scrollbar {
    display: none;
}


.tpp-recognition-item {
    flex: 0 0 calc(25% - 14px);

    min-height: 185px;

    padding: 22px 18px;

    border: 1px solid #e8ecee;
    border-radius: 18px;

    background: #ffffff;

    text-align: center;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.tpp-recognition-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0, 163, 163, 0.28);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.08);
}


.tpp-recognition-logo {
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
}


.tpp-recognition-logo img {
    max-width: 145px;
    max-height: 80px;

    object-fit: contain;
}


.tpp-recognition-item > span {
    display: block;

    margin-bottom: 6px;

    color: var(--tpp-dark);

    font-size: 0.75rem;
    font-weight: 700;
}


.tpp-recognition-item > small {
    color: var(--tpp-teal);

    font-size: 0.6rem;
    font-weight: 700;
}


.tpp-recognition-item > small i {
    margin-left: 3px;
}


/* =========================================================
   ARROWS
========================================================= */

.tpp-recognition-arrow {
    position: absolute;
    top: 50%;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #101820;
    color: #ffffff;

    z-index: 3;

    transform: translateY(-50%);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.tpp-recognition-arrow:hover {
    background: var(--tpp-teal);

    transform:
        translateY(-50%)
        scale(1.05);
}


.tpp-recognition-prev {
    left: -20px;
}


.tpp-recognition-next {
    right: -20px;
}


/* =========================================================
   MODAL
========================================================= */

.tpp-recognition-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
}


.tpp-recognition-modal .modal-header {
    padding: 20px 24px;

    border-bottom: 1px solid #edf0f1;
}


.tpp-recognition-modal .modal-body {
    padding: 20px;

    background: #f5f7f7;
}


.tpp-recognition-modal-image {
    display: block;

    width: 100%;
    max-height: 72vh;

    object-fit: contain;

    border-radius: 12px;

    background: #ffffff;
}


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

@media (max-width: 991.98px) {

    .tpp-recognition-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }


    .tpp-recognition-item {
        flex: 0 0 calc(50% - 9px);
    }


    .tpp-recognition-prev {
        left: -10px;
    }


    .tpp-recognition-next {
        right: -10px;
    }

}


@media (max-width: 575.98px) {

    .tpp-recognition-section {
        padding: 50px 0;
    }


    .tpp-recognition-item {
        flex: 0 0 82%;
    }


    .tpp-recognition-arrow {
        width: 38px;
        height: 38px;
    }

}


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

.tpp-recognition-item {
    flex: 0 0 calc(25% - 14px);

    min-height: 180px;

    padding: 18px 20px 16px;

    border: 1px solid #e3e8ea;
    border-radius: 18px;

    background: #ffffff;

    text-align: center;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.tpp-recognition-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0, 163, 163, 0.30);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   IMAGE
========================================================= */

.tpp-recognition-logo {
    height: 115px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}


.tpp-recognition-logo img {
    width: auto;
    height: auto;

    max-width: 190px;
    max-height: 105px;

    object-fit: contain;

    transition:
        transform 0.25s ease;
}


.tpp-recognition-item:hover
.tpp-recognition-logo img {
    transform: scale(1.04);
}


/* =========================================================
   TITLE
========================================================= */

.tpp-recognition-item > span {
    display: block;

    color: var(--tpp-dark);

    font-size: 0.72rem;
    font-weight: 700;

    line-height: 1.35;
}



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

.tpp-claims-hero {
    position: relative;

    padding: 125px 0 75px;

    background:
        linear-gradient(
            90deg,
            rgba(10, 22, 29, 0.96),
            rgba(10, 22, 29, 0.82)
        ),
        url('../images/backgrounds/bg-claims.jpg')
        center / cover no-repeat;

    color: #ffffff;
}


.tpp-claims-hero-content {
    max-width: 700px;
}


.tpp-claims-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #f5a000;

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.tpp-claims-hero h1 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;

    letter-spacing: -0.04em;
}


.tpp-claims-hero p {
    max-width: 590px;

    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.95rem;
    line-height: 1.75;
}



/* =========================================================
   SECTION
========================================================= */

.tpp-claims-section {
    padding: 70px 0 90px;

    background: #f5f7f7;
}



/* =========================================================
   COMPANY
========================================================= */

.tpp-claims-company {
    display: flex;

    gap: 20px;

    margin-bottom: 24px;
    padding: 26px 28px;

    border: 1px solid #e3e8ea;
    border-radius: 20px;

    background: #ffffff;
}


.tpp-claims-company-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal);

    font-size: 1.3rem;
}


.tpp-claims-company-content {
    flex: 1;
}


.tpp-claims-company-content > span {
    display: block;

    margin-bottom: 4px;

    color: var(--tpp-teal);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.tpp-claims-company-content h2 {
    margin: 0 0 14px;

    color: #101820;

    font-size: 1.2rem;
    font-weight: 800;
}


.tpp-claims-company-data {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 28px;

    color: #69757c;

    font-size: 0.72rem;
}


.tpp-claims-company-data strong {
    margin-right: 5px;

    color: #101820;
}



/* =========================================================
   CARDS
========================================================= */

.tpp-claims-card {
    margin-bottom: 22px;

    overflow: hidden;

    border: 1px solid #e3e8ea;
    border-radius: 20px;

    background: #ffffff;
}


.tpp-claims-card-header {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 22px 26px;

    border-bottom: 1px solid #edf0f1;
}


.tpp-claims-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #101820;

    color: #ffffff;

    font-size: 0.68rem;
    font-weight: 800;
}


.tpp-claims-card-header span {
    display: block;

    margin-bottom: 2px;

    color: var(--tpp-teal);

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.tpp-claims-card-header h3 {
    margin: 0;

    color: #101820;

    font-size: 1rem;
    font-weight: 800;
}


.tpp-claims-card-body {
    padding: 28px 26px 30px;
}



/* =========================================================
   FORM
========================================================= */

.tpp-claims-label {
    display: block;

    margin-bottom: 8px;

    color: #263238;

    font-size: 0.72rem;
    font-weight: 700;
}


.tpp-claims-label > span {
    color: #e34850;
}


.tpp-claims-control {
    min-height: 50px;

    padding: 12px 15px;

    border: 1px solid #dde3e5;
    border-radius: 11px;

    background: #ffffff;

    color: #101820;

    font-size: 0.78rem;

    box-shadow: none !important;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.tpp-claims-control::placeholder {
    color: #a2aaae;
}


.tpp-claims-control:focus {
    border-color: var(--tpp-teal);

    box-shadow:
        0 0 0 3px
        rgba(0, 163, 163, 0.08)
        !important;
}


.tpp-claims-textarea {
    min-height: 125px;

    resize: vertical;
}



/* =========================================================
   MONEY
========================================================= */

.tpp-claims-money {
    position: relative;
}


.tpp-claims-money > span {
    position: absolute;

    top: 50%;
    left: 15px;

    z-index: 2;

    transform: translateY(-50%);

    color: #101820;

    font-size: 0.75rem;
    font-weight: 800;
}


.tpp-claims-money input {
    padding-left: 42px;
}



/* =========================================================
   TYPE
========================================================= */

.tpp-claims-type-grid {
    display: grid;

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

    gap: 14px;
}


.tpp-claims-type {
    cursor: pointer;
}


.tpp-claims-type > input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


.tpp-claims-type-card {
    min-height: 95px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    border: 1px solid #dde3e5;
    border-radius: 14px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.tpp-claims-type-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #f2f5f5;

    color: #69757c;

    font-size: 1rem;
}


.tpp-claims-type-card strong {
    display: block;

    margin-bottom: 3px;

    color: #101820;

    font-size: 0.76rem;
}


.tpp-claims-type-card small {
    display: block;

    color: #788389;

    font-size: 0.64rem;
    line-height: 1.45;
}


.tpp-claims-type
input:checked
+
.tpp-claims-type-card {
    border-color: var(--tpp-teal);

    background:
        rgba(0, 163, 163, 0.05);

    box-shadow:
        0 0 0 3px
        rgba(0, 163, 163, 0.07);
}


.tpp-claims-type
input:checked
+
.tpp-claims-type-card
.tpp-claims-type-icon {
    background: var(--tpp-teal);

    color: #ffffff;
}



/* =========================================================
   CONSENT
========================================================= */

.tpp-claims-consent {
    margin-top: 4px;
    margin-bottom: 22px;

    padding: 20px 22px;

    border: 1px solid #e3e8ea;
    border-radius: 15px;

    background: #ffffff;
}


.tpp-claims-consent .form-check {
    margin: 0;
}


.tpp-claims-consent .form-check-input {
    margin-top: 3px;

    border-color: #cbd3d6;
}


.tpp-claims-consent
.form-check-input:checked {
    border-color: var(--tpp-teal);

    background-color: var(--tpp-teal);
}


.tpp-claims-consent label {
    padding-left: 5px;

    color: #68747a;

    font-size: 0.7rem;
    line-height: 1.65;
}


.tpp-claims-consent label strong {
    color: #364249;

    font-weight: 600;
}



/* =========================================================
   SUBMIT
========================================================= */

.tpp-claims-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 6px;
}


.tpp-claims-submit-note {
    max-width: 480px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #7a858a;

    font-size: 0.65rem;
    line-height: 1.5;
}


.tpp-claims-submit-note i {
    color: var(--tpp-teal);

    font-size: 1rem;
}


.tpp-claims-submit-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 26px;

    border: 0;
    border-radius: 50px;

    background: #f5a000;

    color: #101820;

    font-size: 0.74rem;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.tpp-claims-submit-btn:hover {
    background: #f5a000;

    color: #101820;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(245, 160, 0, 0.25);
}



/* =========================================================
   ALERT
========================================================= */

.tpp-claims-alert {
    display: flex;
    align-items: center;

    gap: 10px;

    max-width: 1100px;

    margin: 0 auto 24px;

    border: 0;
    border-radius: 14px;
}



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

@media (max-width: 767.98px) {

    .tpp-claims-hero {
        padding: 105px 0 55px;
    }


    .tpp-claims-section {
        padding: 45px 0 65px;
    }


    .tpp-claims-company {
        padding: 20px;

        flex-direction: column;
    }


    .tpp-claims-company-data {
        flex-direction: column;

        gap: 6px;
    }


    .tpp-claims-card-header {
        padding: 18px;
    }


    .tpp-claims-card-body {
        padding: 22px 18px;
    }


    .tpp-claims-type-grid {
        grid-template-columns: 1fr;
    }


    .tpp-claims-submit {
        align-items: stretch;
        flex-direction: column;
    }


    .tpp-claims-submit-btn {
        width: 100%;
    }

}


/* =========================================================
   BOOK CONFIRMATION
========================================================= */

.tpp-book-confirmation {
    min-height: 78vh;

    display: flex;
    align-items: center;

    padding: 120px 0 80px;

    background:
        linear-gradient(
            180deg,
            #f4f7f7 0%,
            #ffffff 100%
        );
}


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

.tpp-book-confirmation-card {
    position: relative;

    padding: 55px 55px 42px;

    border: 1px solid #e4e9ea;
    border-radius: 24px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 20px 55px
        rgba(16, 24, 32, 0.08);
}


/* =========================================================
   ICON
========================================================= */

.tpp-book-confirmation-icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    background:
        rgba(0, 163, 163, 0.10);

    color: var(--tpp-teal);

    font-size: 2rem;
}


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

.tpp-book-confirmation-header {
    max-width: 620px;

    margin: 0 auto;
}


.tpp-book-confirmation-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--tpp-teal);

    font-size: 0.63rem;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.tpp-book-confirmation-header h1 {
    margin: 0 0 14px;

    color: #101820;

    font-size: clamp(
        1.7rem,
        4vw,
        2.35rem
    );

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.035em;
}


.tpp-book-confirmation-header p {
    max-width: 540px;

    margin: 0 auto;

    color: #748086;

    font-size: 0.82rem;

    line-height: 1.7;
}


/* =========================================================
   SUCCESS ALERT
========================================================= */

.tpp-book-confirmation-alert {
    max-width: 580px;

    display: flex;
    align-items: center;

    gap: 9px;

    margin: 25px auto 0;
    padding: 13px 17px;

    border: 1px solid
        rgba(0, 163, 163, 0.18);

    border-radius: 11px;

    background:
        rgba(0, 163, 163, 0.06);

    color: #28635f;

    text-align: left;

    font-size: 0.7rem;
    font-weight: 600;
}


.tpp-book-confirmation-alert i {
    flex-shrink: 0;

    color: var(--tpp-teal);

    font-size: 0.9rem;
}


/* =========================================================
   INFORMATION
========================================================= */

.tpp-book-confirmation-info {
    max-width: 580px;

    display: flex;
    align-items: center;

    gap: 14px;

    margin: 25px auto 0;
    padding: 17px 19px;

    border-radius: 14px;

    background: #f6f8f8;

    text-align: left;
}


.tpp-book-confirmation-info-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #ffffff;

    color: var(--tpp-teal);

    font-size: 1rem;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.05);
}


.tpp-book-confirmation-info strong {
    display: block;

    margin-bottom: 3px;

    color: #263238;

    font-size: 0.72rem;
}


.tpp-book-confirmation-info p {
    margin: 0;

    color: #7a858a;

    font-size: 0.64rem;

    line-height: 1.5;
}


/* =========================================================
   COMPANY
========================================================= */

.tpp-book-confirmation-company {
    margin-top: 24px;
}


.tpp-book-confirmation-company > span {
    display: block;

    margin-bottom: 4px;

    color: #929b9f;

    font-size: 0.6rem;
}


.tpp-book-confirmation-company > strong {
    display: block;

    color: #263238;

    font-size: 0.78rem;
}


.tpp-book-confirmation-company > small {
    display: block;

    margin-top: 2px;

    color: #879196;

    font-size: 0.62rem;
}


/* =========================================================
   ACTIONS
========================================================= */

.tpp-book-confirmation-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.tpp-book-confirmation-primary,
.tpp-book-confirmation-secondary {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border-radius: 50px;

    font-size: 0.7rem;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* PRIMARY */

.tpp-book-confirmation-primary {
    border: 1px solid #f5a000;

    background: #f5a000;

    color: #101820;
}


.tpp-book-confirmation-primary:hover {
    background: #f5a000;

    color: #101820;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(245, 160, 0, 0.24);
}


/* SECONDARY */

.tpp-book-confirmation-secondary {
    border: 1px solid #dce2e4;

    background: #ffffff;

    color: #263238;
}


.tpp-book-confirmation-secondary:hover {
    border-color: var(--tpp-teal);

    background:
        rgba(0, 163, 163, 0.05);

    color: var(--tpp-teal);

    transform: translateY(-2px);
}


/* =========================================================
   BACK
========================================================= */

.tpp-book-confirmation-back {
    margin-top: 28px;
    padding-top: 22px;

    border-top: 1px solid #edf0f1;
}


.tpp-book-confirmation-back a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #7b868b;

    text-decoration: none;

    font-size: 0.65rem;
    font-weight: 700;

    transition:
        color 0.2s ease;
}


.tpp-book-confirmation-back a:hover {
    color: var(--tpp-teal);
}


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

@media (max-width: 767.98px) {

    .tpp-book-confirmation {
        min-height: auto;

        padding: 100px 0 60px;
    }


    .tpp-book-confirmation-card {
        padding: 40px 22px 30px;

        border-radius: 19px;
    }


    .tpp-book-confirmation-icon {
        width: 66px;
        height: 66px;

        margin-bottom: 20px;

        font-size: 1.7rem;
    }


    .tpp-book-confirmation-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .tpp-book-confirmation-primary,
    .tpp-book-confirmation-secondary {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .tpp-book-confirmation-info {
        align-items: flex-start;
    }

}