/* ==================== VARIABLES ==================== */
:root {
    --primary: #03bfac;
    --secondary: #2a3c54;
    --accent: #066aab;
    --dark: #1a2332;
    --light: #f8f9fa;
    --bs-body-font-size: 15px;
    --bs-nav-link-font-size:15px;
}

/* ==================== GENERAL ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}


/* ==================== NAVBAR ==================== */
.navbar {
    background: var(--secondary);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(42, 60, 84, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .logo {
 
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.navbar.scrolled .logo {
    max-height: 100%;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Dropdown */
.dropdown-menu {
    background: var(--secondary);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem 0;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(3, 191, 172, 0.1);
    color: var(--primary) !important;
    padding-left: 2rem;
}

/* ==================== OFFCANVAS MOBILE ==================== */
.offcanvas {
    background: var(--secondary);
    width: 85% !important;
    max-width: 400px;
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(3, 191, 172, 0.1);
    padding-left: 2rem;
    color: var(--primary);
}

.offcanvas .nav-link i {
    transition: transform 0.3s ease;
}

.offcanvas .nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}


/* ==================== BOTÓN FREE TRIP PLANNING ==================== */
.btn-trip-planning {
    background: #C0392B;
    color: #fff !important;
    font-family: "Barlow", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(232, 87, 62, 0.3);
}

.btn-trip-planning:hover {
    background: #d14a33;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 87, 62, 0.5);
    color: #fff !important;
}

.btn-trip-planning:active {
    transform: translateY(0);
}

.btn-trip-planning i {
    font-size: 16px;
    transform: rotate(-15deg);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .btn-trip-planning {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}















/* ==================== HERO SLIDER ==================== */
.hero-slider {
    margin-top: 130px;
}

.heroSwiper {
    height: calc(100vh - 130px);
}

/* el margin top hace el efecto blanco en el navbar */
.slide-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
     margin-top: 25px; 
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(3, 191, 172, 0.3));
}

/* .slide-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
} */

.slide-content {
     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* centra en Y */
    align-items: center;       /* centra en X */
    color: white;
    padding: 0 20px;
    text-align: center;
    

}


.slide-content h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
    color:#fff !important;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}




.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.swiper-pagination {
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-height: 14px;
    --swiper-pagination-bullet-horizontal-gap: 8px;
     bottom: 20px !important;   /* ← Posición fija desde abajo */
}


/* Área táctil mínima de 44x44px sin cambiar el tamaño visual */
.swiper-pagination-bullet {
    position: relative;
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* El bullet visual dentro del área táctil */
.swiper-pagination-bullet::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #fff);
    display: block;
}

.swiper-pagination-bullet-active::after {
    background: var(--primary);
    width: 10px;
    border-radius: 5px;
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction

 {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}




/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary:hover {
    background: #02a697;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(3, 191, 172, 0.3);
}

/* ==================== DESTINATIONS ==================== */
.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.destination-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-body {
    padding: 1.5rem;
}

.destination-body h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* ==================== SERVICES ==================== */
.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(3, 191, 172, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
   background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
    /* background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>'); */
    opacity: 0.1;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: white;
}

.footer-logo {
    max-width: 210px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

.newsletter-form .form-control {
    border: none;
    padding: 12px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-slider {
        margin-top: 70px;
    }
    
    .heroSwiper {
        height: 70vh;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .destination-img {
        height: 200px;
    }
}





.navbar-nav{
  /* font-family: "Barlow", Sans-serif; */
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;}




    

@font-face {
  font-family: 'Barlow';
  src: url('https://cadejomarinotours.com/fonts/barlow-7chqv4kjgogqm7e3j-ws51os.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('https://cadejomarinotours.com/fonts/barlow-7chqv4kjgogqm7e3j-ws51os.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



h1

 {
    color: #FAFAFA;
    font-family: "Roboto", Sans-serif;
    src: url('https://cadejomarinotours.com/fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluamawcubgee.woff2') format('woff2');
    font-size: 4.1rem;
    font-weight: 600;
    text-transform: none;
    line-height: 1.16em;
}

    


/* 
parallax */






/* ==================== ABOUT SECTION ==================== */
.about-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('https://cadejomarinotours.com/wp-content/uploads/Zipline-Jungle.-019-1.jpeg'); /* Tu imagen de fondo */
}

.about-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-section .col-left,
.about-section .col-right {
    flex: 1;
}

.about-section .col-left h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.about-section .col-right p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1em;
}

.about-section .col-right h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 1.5em 0 0.5em;
}

.about-section .col-right p strong {
    color: #fff;
}

.about-section .btn-primary {
    display: inline-block;
    margin-top: 1.5em;
    padding: 12px 30px;
    background: var(--primary, #03bfac);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-section .btn-primary:hover {
    background: var(--primary-dark, #029e8e);
    transform: translateY(-2px);
}

/* ==================== ANIMACIONES ==================== */
.fade-up,
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up {
    transform: translateY(30px);
}

.fade-in {
    transform: translateY(0);
}

.fade-up.animated,
.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .about-section .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-section .col-left h3 {
        font-size: 2.2rem;
    }
}









/* ==================== TRANSPORT BANNER ==================== */
.transport-banner {
    position: relative;
    padding: 80px 20px;
    background: rgba(42, 60, 84, 0.95);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.transport-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:#2a3c54;
    z-index: 1;
}

.transport-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.transport-banner__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .transport-banner {
        padding: 60px 15px;
    }

    .transport-banner__title {
        font-size: 1.8rem;
    }
}






/* ==================== TRANSPORT SECTION ==================== */
.transport-section {
  
    background-image: url('https://cadejomarinotours.com/wp-content/uploads/Private-Transporation-service-costa-rica-002.jpg'); /* Tu imagen de fondo */
   position: relative;
    padding: 16% 0% 6% 0%;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.transport-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.transport-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.transport-section .col-left,
.transport-section .col-right {
    flex: 1;
}

.transport-section .col-left h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.transport-section .col-right p {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.transport-section .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary, #03bfac);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.transport-section .btn-primary:hover {
    background: var(--primary-dark, #029e8e);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .transport-section .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .transport-section .col-left h3 {
        font-size: 2rem;
    }
}





.btn-primary {
    
 background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);

    color: #fff!important;
    border-color: #b1e314 !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}


















/* ==================== CAR RENTAL SECTION ==================== */
.car-rental-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://cadejomarinotours.com/wp-content/uploads/drive-in-costa-rica.002jpg.jpg'); /* Tu imagen de fondo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.car-rental-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.car-rental-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.car-rental-section .car-rental-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.car-rental-section .col-left,
.car-rental-section .col-right {
    flex: 1;
}

/* Columna Izquierda */
.car-rental-section .col-left h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Columna Derecha */
.car-rental-section .col-right h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1em;
}

.car-rental-section .col-right p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1em;
}

.car-rental-section .col-right p b {
    color: #fff;
}

/* Botones */
.car-rental-section .btn-group {
    display: flex;
    gap: 15px;
    margin-top: 2em;
    flex-wrap: wrap;
    justify-content: center;
}

.car-rental-section .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary, #03bfac);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.car-rental-section .btn-primary:hover {
    background: var(--primary-dark, #029e8e);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .car-rental-section .car-rental-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .car-rental-section .col-left h4 {
        font-size: 2rem;
    }

    .car-rental-section .col-right h4 {
        font-size: 1.5rem;
    }

    .car-rental-section .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .car-rental-section .btn-primary {
        width: 100%;
        max-width: 280px;
    }
}




/* ==================== PURA VIDA SECTION ==================== */
.pura-vida-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://cadejomarinotours.com/puravida1.webp'); /* Tu imagen de fondo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pura-vida-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.pura-vida-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.pura-vida-section .pura-vida-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 60px 50px;
    text-align: center;
}

.pura-vida-section .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary, #03bfac);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5em;
}

.pura-vida-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1em;
}

.pura-vida-section p {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1em;
    text-align: left;
}

.pura-vida-section p em {
    color: var(--primary, #03bfac);
    font-style: italic;
}

.pura-vida-section .btn-primary {
    display: inline-block;
    margin-top: 1.5em;
    padding: 12px 35px;
    background: var(--primary, #03bfac);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pura-vida-section .btn-primary:hover {
    background: var(--primary-dark, #029e8e);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .pura-vida-section .pura-vida-content {
        padding: 40px 25px;
    }

    .pura-vida-section .title {
        font-size: 1.8rem;
    }

    .pura-vida-section p {
        text-align: center;
    }
}





/* ==================== EXCLUSIVE PACKAGES SECTION ==================== */
.exclusive-packages-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-image: url(' https://cadejomarinotours.com/home-images/TrustedbyTravelers_11zon.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.exclusive-packages-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.exclusive-packages-section .container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Contenido principal */
.exclusive-packages-section .packages-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.exclusive-packages-section .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary, #03bfac);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1em;
}

.exclusive-packages-section .packages-content p {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
}

.exclusive-packages-section .packages-content p strong {
    color: #fff;
}

.exclusive-packages-section .secondary-text {
    margin-top: 2em;
    font-size: 0.95rem;
    color: #ccc;
}

/* Botón */
.exclusive-packages-section .btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background: var(--primary, #03bfac);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.exclusive-packages-section .btn-primary:hover {
    background: var(--primary-dark, #029e8e);
    transform: translateY(-2px);
}

/* Widget de Reviews */
.exclusive-packages-section .reviews-widget {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .exclusive-packages-section {
        min-height: auto;
        padding: 60px 0;
    }

    .exclusive-packages-section .packages-content {
        margin-bottom: 40px;
    }

    .exclusive-packages-section .subtitle {
        font-size: 1rem;
    }

    .exclusive-packages-section .packages-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    

    .slide-content {
    position: relative;
    z-index: 2;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

}


@media (max-width: 575px) {
    .hero-slider {
        margin-top: 160px;
    }


    .slide-content {
    position: relative;
    z-index: 2;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction

 {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

/* el margin top hace el efecto blanco en el navbar */
.slide-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
     margin-top: 0px; 
}
}



@media (max-width: 330px) {
.swiper-pagination {
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-height: 14px;
    --swiper-pagination-bullet-horizontal-gap: 8px;
     bottom: 0px !important;   /* ← Posición fija desde abajo */
}
/* Área táctil mínima de 44x44px sin cambiar el tamaño visual */
.swiper-pagination-bullet {
    position: relative;
    min-width: 14px;
    min-height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* El bullet visual dentro del área táctil */
.swiper-pagination-bullet::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #fff);
    display: block;
}
.navbar.scrolled .logo {
    max-height: 80%;
}

.navbar .logo {
    transition: all 0.3s ease;
    width: 80%;
    max-width: 80%;
}
}

/* .navbar.scrolled {
    backdrop-filter: blur(10px);
    padding: 0rem 0px !important;
    background: rgba(42, 60, 84, 0.95);
} */





@media screen and (min-width: 1280px) and (max-width: 1400px) {
/* el margin top hace el efecto blanco en el navbar */
.slide-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
     margin-top: 0px; 
}
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}


/* 
* {
    outline: 1px solid red !important;
} */










/* ---- Modern Gradient Button #0f94ac ---- */
.btn.btn-primary.btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #0f94ac 0%, #066aab 50%, #2a3c54 100%);
    background-size: 200% 200%;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(15, 148, 172, 0.35);
    z-index: 1;
}

/* Hover: shift gradient + lift */
.btn.btn-primary.btn-lg:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 148, 172, 0.5);
    color: #fff;
}

/* Active: press down */
.btn.btn-primary.btn-lg:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 148, 172, 0.4);
}

/* Shine sweep animation on hover */
.btn.btn-primary.btn-lg::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
    z-index: -1;
}

.btn.btn-primary.btn-lg:hover::after {
    left: 100%;
}














/* ---- Background Gradient #2a3c54 con brillo hover ---- */
.cm-gradient-bg {
    background: linear-gradient(135deg, #1a2332 0%, #2a3c54 50%, #1f3044 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Capa de brillo radial (invisible por defecto) */
.cm-gradient-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(29, 174, 185, 0.25) 0%,
        rgba(42, 60, 84, 0.1) 40%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    z-index: 1;
}

/* Línea de brillo sweep */
.cm-gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 70%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 1;
}

/* ---- Hover: activa ambos efectos ---- */
.cm-gradient-bg:hover {
    background: linear-gradient(135deg, #1a2332 0%, #344d6b 50%, #2a3c54 100%);
    box-shadow: 0 0 40px rgba(29, 174, 185, 0.15), inset 0 0 60px rgba(29, 174, 185, 0.05);
}

/* Brillo radial se expande */
.cm-gradient-bg:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

/* Línea de brillo sweep cruza */
.cm-gradient-bg:hover::after {
    left: 150%;
}

