:root {
    --vl-navy: #0d1b2a;
    --vl-navy-light: #1b2838;
    --vl-gold: #d4a84b;
    --vl-gold-light: #e8c36a;
    --vl-cream: #f8f6f2;
    --vl-white: #fff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    background: var(--vl-cream);
    color: var(--vl-navy);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}
.navbar-vl {
    background: linear-gradient(180deg, var(--vl-navy) 0%, transparent 100%);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s;
}
.navbar-vl.scrolled {
    background: var(--vl-navy);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}


.navbar-brand-vl {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}
.logo-icon {
    width: 55px;
    height: 55px;
}
.brand-text {
    color: var(--vl-white);
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.brand-text span {
    color: var(--vl-gold);
}
.nav-link-vl {
    color: var(--vl-white) !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s;
    border-radius: 4px;
}
.nav-link-vl:hover {
    color: var(--vl-gold) !important;
}
.navbar-toggler-vl {
    width: 50px;
    height: 50px;
    border: 2px solid var(--vl-gold);
    border-radius: 8px;
    background: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-toggler-vl i {
    color: var(--vl-gold);
    font-size: 1.5rem;
}


.navbar-logo-vl{
    width: 260px
}
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--vl-navy);
        margin-top: 1rem;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid rgba(212, 168, 75, 0.2);
    }
    .nav-link-vl {
        text-align: center;
        padding: 1rem !important;
        margin: 0.25rem 0;
    }
}
.btn-reservar {
    background: var(--vl-gold);
    color: var(--vl-navy);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 2px solid var(--vl-gold);
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-reservar:hover {
    background: 0 0;
    color: var(--vl-gold);
    transform: translateY(-2px);
}
.hero-section {
    min-height: 100vh;
    background: var(--vl-navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-floating-balloon {
    position: absolute;
    opacity: 0.08;
    animation: floatBalloon 20s ease-in-out infinite;
    color: var(--vl-gold);
}
.balloon-1 {
    top: 10%;
    left: 5%;
    font-size: 8rem;
}
.balloon-2 {
    top: 60%;
    right: 8%;
    font-size: 6rem;
    animation-delay: -5s;
}
.balloon-3 {
    bottom: 15%;
    left: 12%;
    font-size: 4rem;
    animation-delay: -10s;
}
@keyframes floatBalloon {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.4);
    color: var(--vl-gold);
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 50px;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: var(--vl-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-title .gold {
    color: var(--vl-gold);
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}
.btn-hero-outline {
    background: 0 0;
    border: 2px solid rgba(212, 168, 75, 0.5);
    color: var(--vl-gold);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-hero-outline:hover {
    background: var(--vl-gold);
    border-color: var(--vl-gold);
    color: var(--vl-navy);
}
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 168, 75, 0.15);
    animation: fadeInUp 1s ease 1s both;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    color: var(--vl-gold);
    font-weight: 600;
    line-height: 1;
    font-style: italic;
}
.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.75rem;
}
.hero-image-container {
    position: relative;
    animation: fadeInRight 1.2s ease 0.5s both;
}
.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 180px 180px 20px 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.hero-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(212, 168, 75, 0.4);
    border-radius: 180px 180px 20px 20px;
    z-index: -1;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-subtitle {
    color: var(--vl-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.section-heading {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--vl-navy);
}
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--vl-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}
.services-section {
    padding: 8rem 0;
    background: var(--vl-cream);
}
.service-card {
    background: var(--vl-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(13, 27, 42, 0.08);
    transition: all 0.5s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(13, 27, 42, 0.12);
}
.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}
.service-card:hover .service-image img {
    transform: scale(1.1);
}
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--vl-gold);
    color: var(--vl-navy);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.service-content {
    padding: 2rem;
}
.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--vl-navy);
}
.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.service-features li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-features li i {
    color: var(--vl-gold);
}
.service-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--vl-cream) 0%, rgba(212, 168, 75, 0.1) 100%);
    border-radius: 12px;
}
.price-amount {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--vl-navy);
}
.price-currency {
    font-size: 1rem;
    color: var(--vl-gold);
    font-weight: 600;
}
.btn-service {
    display: flex;
    width: 100%;
    background: var(--vl-navy);
    color: var(--vl-white);
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-service:hover {
    background: var(--vl-gold);
    color: var(--vl-navy);
}
.tours-section {
    padding: 8rem 0;
    background: var(--vl-navy);
}
.tours-section .section-heading {
    color: var(--vl-white);
}
.tour-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 75, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s;
}
.tour-card:hover {
    border-color: var(--vl-gold);
    transform: translateY(-8px);
}
.tour-icon {
    width: 75px;
    height: 75px;
    background: var(--vl-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.tour-icon i {
    font-size: 1.8rem;
    color: var(--vl-navy);
}
.tour-title {
    font-size: 1.4rem;
    color: var(--vl-white);
    margin-bottom: 1rem;
}
.tour-description {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.tour-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.tour-features li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.tour-features li i {
    color: var(--vl-gold);
}
.tour-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tour-option {
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.4);
    color: var(--vl-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}
.schedule-section {
    padding: 6rem 0;
    background: var(--vl-navy-light);
}
.schedule-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}
.schedule-icon {
    width: 90px;
    height: 90px;
    background: var(--vl-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.schedule-icon i {
    font-size: 2.2rem;
    color: var(--vl-navy);
}
.schedule-title {
    color: var(--vl-white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.schedule-time {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    color: var(--vl-gold);
    font-weight: 600;
    font-style: italic;
}
.schedule-description {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1rem;
    line-height: 1.8;
}
.schedule-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}
.schedule-features li {
    color: rgba(255, 255, 255, 0.65);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.schedule-features li i {
    color: var(--vl-gold);
}
.about-section {
    padding: 8rem 0;
    background: var(--vl-cream);
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--vl-navy);
    color: var(--vl-gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.about-badge i {
    font-size: 1.3rem;
}
.about-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--vl-navy);
    margin-bottom: 1.5rem;
}
.about-text {
    color: #555;
    line-height: 2;
    margin-bottom: 1.5rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--vl-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i {
    color: var(--vl-navy);
    font-size: 1.3rem;
}
.feature-text h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vl-navy);
    margin-bottom: 0.25rem;
}
.feature-text p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}
.about-image-wrapper {
    position: relative;
}
.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(13, 27, 42, 0.15);
}
.about-experience-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--vl-gold);
    color: var(--vl-navy);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}
.experience-number {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    font-style: italic;
}
.experience-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
.testimonials-section {
    padding: 8rem 0;
    background: var(--vl-white);
}
.testimonial-card {
    background: var(--vl-cream);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    height: 100%;
}
.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--vl-gold);
    opacity: 0.25;
    font-family: "Playfair Display", serif;
}
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}
.testimonial-rating i {
    color: var(--vl-gold);
    font-size: 1.1rem;
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--vl-navy);
    color: var(--vl-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 600;
}
.author-info h5 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vl-navy);
    margin-bottom: 0.2rem;
}
.author-info p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}
.gallery-section {
    padding: 8rem 0;
    background: var(--vl-cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: var(--vl-white);
    font-family: "Playfair Display", serif;
}
.policies-section {
    padding: 6rem 0;
    background: var(--vl-navy);
}
.policies-section .section-heading {
    color: var(--vl-white);
}
.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 168, 75, 0.15);
}
.policy-icon {
    width: 50px;
    height: 50px;
    background: var(--vl-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.policy-icon i {
    color: var(--vl-navy);
    font-size: 1.2rem;
}
.policy-content h4 {
    color: var(--vl-gold);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.policy-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}
.cta-section {
    padding: 8rem 0;
    background:
        linear-gradient(rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.95)),
        url("https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?w=1920") center/cover;
    text-align: center;
}
.cta-icon {
    font-size: 4rem;
    color: var(--vl-gold);
    margin-bottom: 2rem;
    animation: floatBalloon 3s ease-in-out infinite;
}
.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--vl-white);
    margin-bottom: 1.5rem;
}
.cta-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}
.cta-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--vl-white);
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border: 1px solid rgba(212, 168, 75, 0.25);
    border-radius: 12px;
}
.cta-contact-item i {
    font-size: 1.3rem;
    color: var(--vl-gold);
}
.cta-contact-item a {
    color: var(--vl-white);
    text-decoration: none;
}
.cta-contact-item a:hover {
    color: var(--vl-gold);
}
.footer {
    background: #0a1420;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 168, 75, 0.15);
}
.footer-brand .brand-text {
    font-size: 1.6rem;
}
.footer-description {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    max-width: 280px;
}
.footer-title {
    color: var(--vl-gold);
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: var(--vl-gold);
    padding-left: 5px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-contact-item i {
    color: var(--vl-gold);
    margin-top: 0.2rem;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.footer-contact-item a:hover {
    color: var(--vl-gold);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vl-gold);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--vl-gold);
    color: var(--vl-navy);
}
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 75, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-legal a:hover {
    color: var(--vl-gold);
}
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}
.phone-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 55px;
    height: 55px;
    background: var(--vl-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vl-navy);
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(212, 168, 75, 0.4);
    z-index: 999;
    text-decoration: none;
}
.phone-btn:hover {
    transform: scale(1.1);
    color: var(--vl-navy);
}
@media (max-width: 991px) {
    .hero-stats {
        gap: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper {
        margin-top: 3rem;
    }
    .about-experience-badge {
        bottom: -20px;
        left: auto;
        right: 20px;
        padding: 1.5rem;
    }
    .experience-number {
        font-size: 3rem;
    }
}
@media (max-width: 767px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    .gallery-item {
        height: 200px;
    }
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .phone-btn {
        bottom: 6rem;
        left: auto;
        right: 2rem;
        width: 50px;
        height: 50px;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Botón de reserva para tours */
.btn-tour {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-top: 1.25rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tour:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Tour card deshabilitada */
.tour-card-disabled {
    position: relative;
    opacity: 0.7;
}

.tour-badge-coming {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--vl-gold);
    color: var(--vl-navy);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.btn-tour-disabled {
    background: #666;
    cursor: not-allowed;
}

.btn-tour-disabled:hover {
    background: #666;
    transform: none;
    box-shadow: none;
}

/* ============================================
   NAVBAR RESPONSIVE FIX
   ============================================ */

/* Asegurar que el navbar tenga z-index alto */
.navbar-vl {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Agregar padding-top al body o al hero para compensar el navbar fijo */
.hero-section {
    padding-top: 100px; /* Altura del navbar */
}

/* ============================================
   HERO STATS - MOBILE FIX
   ============================================ */

.hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vl-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .hero-stats {
        flex-direction: row !important; /* Forzar fila en móvil */
        flex-wrap: nowrap;
        gap: 0.5rem;
                margin: 3px 0px 38px 0;
      }
    
    .stat-item {
        flex: 1;
        min-width: 0; /* Permite que se compriman */
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 400px) {
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
}

/* ============================================
   PRECIOS MÚLTIPLES EN SERVICE CARD
   ============================================ */

.service-price-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-option:not(:last-child) {
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding-bottom: 0.75rem;
}

.price-option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 500;
}

.price-option-label i {
    color: var(--vl-gold);
    font-size: 1rem;
}

.price-option-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-option-amount .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vl-gold);
}

.price-option-amount .price-currency {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 575.98px) {
    .price-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .price-option-amount .price-amount {
        font-size: 1.2rem;
    }
}
