/* Variables & Reset */
:root {
    /* Logo Colors */
    --color-sand-light: #fdfbf7;
    --color-sand: #e6dac8;
    --color-sand-dark: #d2c4b0;

    --color-blue-light: #e0f7fa;
    --color-blue-river: #00a8e8;
    /* River Blue */
    --color-blue-dark: #004d40;

    --color-green-brand: #0e4d2d;
    /* Logo Dark Green */
    --color-green-light: #2e8b57;
    /* Logo Light Green */

    --color-text-main: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;

    --color-accent: #ff9100;
    /* Sun Orange */

    --font-main: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);

    --container-width: 1200px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-sand-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.center {
    text-align: center;
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--color-blue-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: #d86c00;
    border-color: #d86c00;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-blue-dark);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* Gradients for placeholders */
.gradient-sand {
    background: linear-gradient(135deg, #e6dac8 0%, #d2c4b0 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

/* Header */
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    /* Slightly reduced padding for tighter look */
    transition: 0.4s;
    background-color: rgba(255, 255, 255, 0.98);
    /* More opaque */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
    margin-right: auto;
    /* Ensure generous breathing room */
}

.logo-img {
    height: 42px;
    /* Reduced by 25% */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    /* Requested 32px gap */
    align-items: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    /* Requested Font */
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--color-green-brand);
}

/* CTA Design */
.btn-nav {
    padding: 12px 30px !important;
    /* Larger touch target */
    background-color: #004236 !important;
    /* Emerald Deep Green */
    color: white !important;
    border-radius: 50px !important;
    /* Requested rounded corners */
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 66, 54, 0.2);
    /* Green shadow */
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #002e25 !important;
    /* Darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 66, 54, 0.3);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-main);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    z-index: 999;
    padding: 80px 20px;
    transition: 0.4s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
}

/* Hero Section */
#hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    background: url('https://images.unsplash.com/photo-1598126768340-9f5b66d7ad5f?q=80&w=2666&auto=format&fit=crop');
    /* Fallback valid image for aesthetics (Unsplash) - strictly only for Hero if allowed, otherwise gradient */
    /* Since user said "no generate image", using a static placeholder CSS or URL is best. I will use a high quality open unsplash URL here for the "Hero" feel rather than just gray. */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

/* hero-overlay removed — images show original colors */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Sobre */
.sobre-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--color-text-main);
}

.sobre-features svg {
    color: var(--color-blue-green);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    background-color: #ddd;
}

/* Packages Swiper */
.swiper.packagesSwiper {
    width: 100%;
    padding-bottom: 50px;
}

.packagesSwiper .swiper-slide {
    height: auto;
}

/* Modalities Swiper */
.swiper.modalitiesSwiper {
    width: 100%;
    padding-bottom: 50px;
}

.modalitiesSwiper .swiper-slide {
    height: auto;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    /* Ensure height is consistent */
    min-height: 550px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pkg-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pkg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .pkg-img-wrapper img {
    transform: scale(1.05);
}

.pkg-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-blue-dark);
    line-height: 1.3;
}

.pkg-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

/* Transfer Section */
.transfer-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 15px;
}

.transfer-image {
    flex: 0 0 150px;
    /* Fixed width for image */
}

.transfer-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 2/3;
    /* Vertical rectangular as requested/implied by admin cropper */
}

.transfer-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    white-space: pre-line;
    /* Handle line breaks from textarea */
}

@media (max-width: 768px) {
    .transfer-content {
        flex-direction: column;
    }

    .transfer-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
        /* Limit size on mobile */
    }
}

/* Mini Icons Horizontal */
.pkg-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.meta-item svg {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
}

/* Price */
.pkg-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pkg-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pkg-price-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-blue-dark);
}

.pkg-price-unit {
    font-size: 0.9rem;
    color: #666;
}

/* Buttons */
.pkg-actions {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Detalhes menor, Reservar maior */
    gap: 12px;
}

.btn-card-outline {
    border: 1px solid #ddd;
    background: transparent;
    color: #666;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: 0.3s;
}

.btn-card-outline:hover {
    border-color: var(--color-blue-dark);
    color: var(--color-blue-dark);
    background: #f9f9f9;
}

.btn-card-primary {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 145, 0, 0.3);
    transition: 0.3s;
}

.btn-card-primary:hover {
    background: #e68200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 0, 0.4);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .pkg-img-wrapper {
        height: 250px;
    }

    .pkg-actions {
        grid-template-columns: 1fr;
        /* Stack buttons on mobile */
    }
}

/* Recommendations */
.recommendations-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.rec-box {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.rec-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.rec-box.bring h3 {
    color: var(--color-blue-green);
}

.rec-box.dont-bring h3 {
    color: #d32f2f;
}

.rec-box ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.rec-box.bring ul li::before {
    content: "•";
    color: var(--color-blue-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.rec-box.dont-bring ul li::before {
    content: "✕";
    color: #d32f2f;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 3px;
}

/* Modalities */
/* .modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
} */
/* Moved to Swiper */

.modality-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.modality-card:hover {
    transform: translateY(-5px);
}

.modality-img {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    background-color: #eee;
}

.modality-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-sand-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.author {
    font-weight: 700;
    color: var(--color-blue-dark);
}

/* CTA */
.section-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1540206351-d6465b3ac5c1?q=80&w=2670&auto=format&fit=crop');
    /* Placeholder unset URL */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aeaeae;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    /* Make logo white for footer if it's colored */
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.floating-wa img {
    width: 35px;
    height: 35px;
}

/* ... existing styles ... */

/* =========================================
   PACKAGE DETAIL PAGE REDESIGN
   ========================================= */

/* New Header (Title & Subtitle) */
.pkg-header-section {
    text-align: left;
    padding-top: 120px;
    /* Space for fixed header */
    padding-bottom: 30px;
}

.hero-tag-dark {
    display: inline-block;
    background: var(--color-blue-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.pkg-header-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 10px;
    line-height: 1.1;
}

.pkg-header-section p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
}

/* Gallery Hero Grid (Top) */
.gallery-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    /* Fixed height rows */
    gap: 10px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-hero-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-hero-grid img:hover {
    transform: scale(1.02);
}

/* First image takes 2 rows (large left) */
.gallery-hero-grid img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

/* If only 1 image */
.gallery-hero-grid.single-image {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
}

.gallery-hero-grid.single-image img:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

/* Layout */
.pkg-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Main Content (2) | Sidebar (1) */
    gap: 50px;
    padding-bottom: 100px;
    position: relative;
}

.pkg-main {
    min-width: 0;
    /* Prevent grid overflow */
}

/* Quick Info Bar */
.pkg-quick-info {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 1rem;
}

.info-item svg {
    color: var(--color-blue-river);
    stroke-width: 1.5px;
}

/* Content Sections */
.pkg-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--color-blue-dark);
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.text-content p {
    margin-bottom: 20px;
}

/* Check List (Includes) */
.check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-sand-light);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-green-light);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.gallery-grid img:first-child {
    grid-column: span 2;
    height: 400px;
}

/* Sidebar (Sticky) */
.pkg-sidebar {
    position: relative;
}

.booking-card {
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 100px;
    /* Header height + gap */
}

.price-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    color: var(--color-blue-dark);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-value span:nth-child(2) {
    /* price amount */
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.per-person {
    font-size: 0.9rem;
    color: #666;
}

/* Sidebar Buttons */
.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background: #25D366;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin-bottom: 10px;
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-bottom: 30px;
}

.secure-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
}

.badge-item svg {
    color: var(--color-blue-river);
}

/* Floating CTA (Mobile) */
.floating-cta {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 990;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

.cta-info {
    display: flex;
    flex-direction: column;
}

.cta-label {
    font-size: 0.8rem;
    color: #888;
}

.cta-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blue-dark);
}

.btn-whatsapp-sm {
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .pkg-layout {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .pkg-header-section {
        padding-top: 100px;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .pkg-header-section h1 {
        font-size: 2.2rem;
    }

    /* Stack gallery on mobile */
    .gallery-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        margin-left: 20px;
        margin-right: 20px;
    }

    .gallery-hero-grid img {
        height: 250px;
    }

    .gallery-hero-grid img:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }

    /* Hide extra images on mobile if needed, or show as scroll */
    .gallery-hero-grid img:nth-child(n+4) {
        display: none;
    }

    .pkg-sidebar {
        display: none;
        /* Hiding sidebar on mobile to avoid duplication with floating CTA */
    }

    .floating-cta {
        display: flex;
        /* Show on mobile */
    }

    footer {
        padding-bottom: 80px;
    }
}

/* =========================================
   Lightbox Gallery
   ========================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 10px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-next {
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* =========================================
   GALLERY HERO GRID (Restored)
   ========================================= */
.gallery-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-hero-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-hero-grid img:hover {
    transform: scale(1.02);
}

.gallery-hero-grid img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.gallery-hero-grid.single-image {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
}



.gallery-hero-grid.single-image img:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

/* =========================================
   EXPERIENCES PAGE STYLES
   ========================================= */

/* Hero Cinematic */
.hero-cinematic {
    height: 60vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: url('https://images.unsplash.com/photo-1667676753063-4ee3a9187313?q=80&w=2670&auto=format&fit=crop');
    /* Placeholder high quality */
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Search Bar */
.search-bar-container {
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    flex: 1;
}

.search-group svg {
    color: var(--color-blue-dark);
    flex-shrink: 0;
}

.search-group input,
.search-group select {
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--color-text-main);
    width: 100%;
    background: transparent;
    font-family: var(--font-main);
}

/* Modalidades (Added styles) */
.modality-card {
    background: white;
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    height: 100%;
    /* Ensure full height in swiper */
}

.modality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.modality-img {
    width: 100%;
    height: 300px;
    /* Rectangular and taller/bigger as requested */
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    background-color: #eee;
    /* Fallback */
    overflow: hidden;
    position: relative;
}

.modality-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.modality-card:hover .modality-img img {
    transform: scale(1.05);
}

.modality-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-green-brand);
}

.modality-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}


.search-divider {
    width: 1px;
    height: 30px;
    background: #eee;
}

.search-btn {
    padding: 12px 30px;
    border-radius: 50px;
    margin-left: 10px;
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-bar-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .search-group {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .search-divider {
        display: none;
    }

    .search-btn {
        width: 100%;
        margin-left: 0;
    }
}

/* Sticky Filters */
.sticky-filters {
    position: sticky;
    top: 80px;
    /* Header height */
    z-index: 900;
    background: white;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f0f0f0;
}

.filters-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.filters-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

.filter-chip {
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
}

.filter-chip:hover {
    background: #eee;
    color: var(--color-blue-dark);
}

.filter-chip.active {
    background: var(--color-blue-dark);
    color: white;
    border-color: var(--color-blue-dark);
}

/* Experiences Grid */
.experiences-desktop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .experiences-desktop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .experiences-desktop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .experiences-desktop-grid {
        grid-template-columns: 1fr;
    }
}

/* Experience Card Specifics */
.exp-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.exp-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.exp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.exp-card:hover .exp-img-wrapper img {
    transform: scale(1.05);
}

.exp-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.exp-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.exp-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.exp-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.exp-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.exp-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.exp-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.exp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.exp-price {
    display: flex;
    flex-direction: column;
}

.exp-price span:first-child {
    font-size: 0.75rem;
    color: #999;
}

.exp-price span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-blue-dark);
}

.exp-actions {
    display: flex;
    gap: 8px;
}

.btn-exp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    color: var(--color-blue-dark);
    transition: 0.3s;
    background: transparent;
}

.btn-exp-icon:hover {
    background: var(--color-blue-dark);
    color: white;
    border-color: var(--color-blue-dark);
}

/* Skeleton Loading */
.skeleton-card {
    height: 450px;
    background: #f0f0f0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {

    100% {
        transform: translateX(100%);
    }
}

/* =========================================
   PREMIUM ANIMATIONS & MICRO-INTERACTIONS
   ========================================= */

/* Reveal Animation (Fade + Slide Up) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Wrapper for Overflow Hiding (essential for reveal effects) */
.overflow-hidden {
    overflow: hidden;
}

/* Image Reveal Effects */
.image-reveal-wrapper {
    overflow: hidden;
    position: relative;
}

.image-reveal {
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active .image-reveal {
    transform: scale(1);
}

/* Button & Link Hover Effects - Subtle Lift */
.btn-primary,
.btn-outline,
.btn-card-primary,
.btn-card-outline {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-card-primary:hover,
.btn-card-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Package Card Hover Effect */
.package-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card .pkg-img-wrapper img {
    transition: transform 0.8s ease;
}

.package-card:hover .pkg-img-wrapper img {
    transform: scale(1.05);
    /* Subtle zoom */
}

/* Text Highlight Effect (Underline growth) */
.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0%;
    height: 8px;
    /* Thickness */
    background-color: rgba(255, 145, 0, 0.2);
    /* Accent color transparent */
    z-index: -1;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
    /* Delay start */
}

.reveal.active .highlight-text::after {
    width: 100%;
}

/* =========================================
   Transfer Section
   ========================================= */
.section-transfer {
    background-color: var(--color-sand-light);
    overflow: hidden;
}

.transfer-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.transfer-image-wrapper {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    /* height: 400px;  Removed fixed height to allow full image */
}

.transfer-image-wrapper img {
    width: 100%;
    height: auto;
    /* Natural height */
    display: block;
    /* Removes bottom space */
    object-fit: contain;
    /* Ensures full image visibility */
    transition: transform 0.5s ease;
}

.transfer-image-wrapper:hover img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.transfer-text {
    flex: 1;
}

.transfer-text h2 {
    font-size: 2.5rem;
    color: var(--color-green-brand);
    margin-bottom: 20px;
}

.transfer-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .transfer-content {
        flex-direction: column;
        gap: 30px;
    }

    .transfer-image-wrapper {
        width: 100%;
        height: auto;
        /* Allow natural height on mobile */
    }

    .transfer-text {
        text-align: center;
    }
}

/* =========================================
   ANIMATED DUNES DIVIDER (Added)
   ========================================= */
.dunes-divider {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    margin-top: -80px;
    /* Overlap previous section */
    z-index: 10;
    pointer-events: none;
}

.dunes-divider.bottom {
    margin-top: 0;
    margin-bottom: -1px;
    transform: rotate(180deg);
}

.dune-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 50% 100%;
    transform: translate3d(0, 0, 0);
    will-change: background-position;
}

/* Layer 1 (Back) - Slowest (#d2c4b0) */
.dune-layer.layer-1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23d2c4b0' fill-opacity='0.4' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: move-dune 25s linear infinite;
    z-index: 1;
}

/* Layer 2 (Middle) - Medium Speed (#e6dac8) */
.dune-layer.layer-2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23e6dac8' fill-opacity='0.6' d='M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: move-dune 18s linear infinite;
    z-index: 2;
}

/* Layer 3 (Front) - Transition Color (Default: #fdfbf7) */
.dune-layer.layer-3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23fdfbf7' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: move-dune 12s linear infinite;
    z-index: 3;
}

/* White transition variant */
.dunes-to-white .dune-layer.layer-3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

@keyframes move-dune {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: -200% bottom;
    }
}

@media (max-width: 768px) {
    .dunes-divider {
        height: 60px;
        margin-top: -40px;
    }
}