/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b111e;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

:root {
    --navy: #0b111e;
    --navy-2: #09192c;
    --navy-3: #07111d;
    --orange: #ff7b29;
    --orange-2: #ff9e2c;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    background-color: rgba(11, 17, 30, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 68px;
    transition: all 0.3s ease;
}

.brand-mark {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.brand-mark span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.btn-cotizar {
    background-color: var(--orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cotizar:hover {
    background-color: #e06000;
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1060;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO
   ============================================ */
.tour-hero {
    padding: 130px 0 60px;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    margin-bottom: 18px;
}

.breadcrumb-custom a {
    color: #999;
}

.breadcrumb-custom i {
    font-size: 9px;
}

.tour-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.tour-hero-title span {
    color: var(--orange);
    display: block;
}

.tour-hero-desc {
    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.hero-features span {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-hero-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0,0,0,0.4);
}

.tour-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-img-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(11,17,30,0.75);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   SECCIÓN DEL TOUR
   ============================================ */
.tour-section {
    padding: 60px 0 40px;
    background: var(--navy-2);
}

.tour-gallery {
    border-radius: 16px;
    overflow: hidden;
}

.tour-main-carousel .carousel-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.tour-main-carousel {
    border-radius: 16px;
    overflow: hidden;
}

.tour-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.tour-thumbs img {
    width: 25%;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.55;
    transition: 0.3s;
    border: 2px solid transparent;
}

.tour-thumbs img:hover,
.tour-thumbs img.active {
    opacity: 1;
    border-color: var(--orange);
}

.tour-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px;
}

.badge-popular {
    display: inline-block;
    background: rgba(255,123,41,0.15);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,123,41,0.3);
}

.tour-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #ccc;
}

.tour-meta i {
    color: var(--orange);
    margin-right: 5px;
}

.tour-desc {
    font-size: 14px;
    color: #d5d5d5;
    line-height: 1.7;
    margin-bottom: 18px;
}

.tour-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tour-chips span {
    background: rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-chips i {
    color: var(--orange);
}

.tour-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.price-label {
    font-size: 12px;
    color: #999;
    display: block;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #ffb703;
    margin: 2px 0;
}

.price-value small {
    font-size: 14px;
    font-weight: 600;
}

.price-note {
    font-size: 11px;
    color: #999;
}

.tour-price-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.btn-hotel {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hotel:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,123,41,0.35);
}

.ver-detalles-link {
    color: #ccc;
    font-size: 12px;
    text-decoration: underline;
}

.ver-detalles-link:hover {
    color: var(--orange);
}

/* Detalle: itinerario / incluye / info */
.detail-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 22px;
    height: 100%;
}

.detail-box h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: #d5d5d5;
    line-height: 1.4;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.detail-list i {
    color: var(--orange);
    margin-top: 3px;
    font-size: 11px;
}

.detail-list.timeline li {
    display: block;
}

.detail-list.timeline .time {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    min-width: 68px;
    font-size: 12px;
}

/* Sidebar */
.sidebar-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
}

.sidebar-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255,123,41,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 16px;
}

.sidebar-item h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar-item p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
}

.sidebar-group-card {
    background: linear-gradient(135deg, rgba(255,123,41,0.15), rgba(255,123,41,0.03));
    border: 1px solid rgba(255,123,41,0.25);
    border-radius: 16px;
    padding: 22px;
}

.sidebar-group-card h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sidebar-group-card p {
    font-size: 12px;
    color: #ddd;
    margin-bottom: 16px;
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--navy);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--navy-3);
    padding: 30px 0;
}

.cta-inner {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.cta-inner h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-inner h4 i {
    color: var(--orange);
}

.cta-inner p {
    font-size: 13px;
    color: #bbb;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

/* ============================================
   QUÉ INCLUYE
   ============================================ */
.incluye-section {
    background: linear-gradient(180deg, var(--navy-2), var(--navy-3));
    padding: 60px 0;
}

.incluye-section h3 {
    font-size: 26px;
    font-weight: 800;
}

.incluye-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.incluye-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,123,41,0.3);
    transform: translateY(-6px);
}

.incluye-card i {
    font-size: 26px;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.incluye-card h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.incluye-card p {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}

/* ============================================
   PARALLAX VIDEO
   ============================================ */
.video-parallax-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-parallax-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,17,29,0.75), rgba(7,17,29,0.9));
}

.video-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.section-mini {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin: 14px 0 16px;
}

.video-title span {
    color: var(--orange);
}

.video-desc {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.video-stats div span {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--orange);
}

.video-stats div small {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-parallax {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-parallax:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,123,41,0.4);
}

/* ============================================
   EXPLORA ISLA MUJERES
   ============================================ */
.explora-section {
    background: #ffffff;
    color: #0b111e;
    padding: 70px 0;
}

.section-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #0b111e;
}

.section-text-dark {
    font-size: 14px;
    color: #777;
}

.explora-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 230px;
}

.explora-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.explora-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: #fff;
}

.explora-overlay i {
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 6px;
}

.explora-overlay h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.explora-overlay p {
    font-size: 11px;
    color: #ddd;
    line-height: 1.4;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonios-section {
    background: linear-gradient(180deg, var(--navy-3), var(--navy-2));
    padding: 60px 0 70px;
    overflow: hidden;
}

.testimonios-wrapper {
    overflow: hidden;
    padding: 10px 0;
}

.testimonios-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTestimonios 28s linear infinite;
    padding: 0 20px;
}

.testimonios-track:hover {
    animation-play-state: paused;
}

.testimonio-card {
    flex: 0 0 270px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.3s;
}

.testimonio-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
}

.stars {
    color: #ffb703;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonio-card p {
    font-size: 13px;
    color: #ddd;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 14px;
    min-height: 75px;
}

.testimonio-card strong {
    display: block;
    font-size: 13px;
}

.testimonio-card span {
    font-size: 11px;
    color: #999;
}

@keyframes scrollTestimonios {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CONTACTOS
   ============================================ */
.contactos-section {
    background: var(--navy-2);
    padding: 70px 0;
}

.contactos-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    margin: 12px 0;
}

.contactos-sub {
    font-size: 14px;
    color: #bbb;
    max-width: 500px;
    margin: 0 auto 24px;
}

.contacto-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px 14px;
    transition: 0.3s;
}

.contacto-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
}

.contacto-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    background: rgba(255,123,41,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
}

.contacto-card h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contacto-card p {
    font-size: 13px;
    color: #bbb;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #050a14;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    margin-bottom: 6px;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    letter-spacing: 1px;
}

.footer-brand-tag {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #999;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.footer-contact-icon {
    color: var(--orange);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 34px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom-links a {
    color: #666;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(11,17,30,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 26px;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        border-left: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 15px;
    }
    .menu-toggle {
        display: flex;
    }
    .tour-price-actions {
        align-items: flex-start;
        width: 100%;
    }
    .tour-price-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .tour-hero {
        padding: 105px 0 40px;
    }
    .tour-hero-title {
        font-size: 30px;
    }
    .tour-hero-img {
        height: 260px;
    }
    .tour-main-carousel .carousel-item img {
        height: 220px;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
        width: 100%;
    }
    .video-title {
        font-size: 28px;
    }
    .video-stats {
        gap: 20px;
    }
    .video-stats div span {
        font-size: 22px;
    }
    .explora-card {
        height: 180px;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}