/* Ethereal Color Palette */
:root {
    --bg-light: #FDFBF9;
    --bg-sand: #efe7de;
    --bg-dark: #433429;
    --bg-darker: #2b211a;
    
    --text-dark: #433429;
    --text-light: #FDFBF9;
    --text-sand: #C6B497;
    --text-medium: #5c5148;
    --text-muted: #8c7a6b;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Colors & Backgrounds */
.bg-light { background-color: var(--bg-light); }
.bg-sand { background-color: var(--bg-sand); }
.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-green-500 { background-color: #22c55e; }
.bg-red-400 { background-color: #f87171; }

.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-sand { color: var(--text-sand); }
.text-medium { color: var(--text-medium); }
.text-muted { color: var(--text-muted); }
.text-white { color: #ffffff; }

/* Typography */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-bold { font-weight: 600; }
.font-light { font-weight: 300; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.3em; }

a { text-decoration: none; color: inherit; }

/* Spacing Utilities */
.py-40 { padding-top: 160px; padding-bottom: 160px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.px-16 { padding-left: 64px; padding-right: 64px; }
.pt-12 { padding-top: 48px; }
.p-8 { padding: 32px; }
.p-12 { padding: 48px; }
.mb-24 { margin-bottom: 96px; }
.mb-16 { margin-bottom: 64px; }
.mb-12 { margin-bottom: 48px; }
.mb-8 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 8px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-20 { width: 5rem; }
.w-full { width: 100%; }
.h-80 { height: 20rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.block { display: block; }
.inline-block { display: inline-block; }
.opacity-40 { opacity: 0.4; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.invert { filter: invert(1); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.5)); }
.drop-shadow-lg { filter: drop-shadow(0 10px 15px rgb(0 0 0 / 0.3)); }
.drop-shadow-md { filter: drop-shadow(0 4px 6px rgb(0 0 0 / 0.2)); }
.leading-relaxed { line-height: 1.625; }

/* Flex & Grid */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.items-center { align-items: center; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }

/* Borders & Shadows */
.rounded-full { border-radius: 9999px; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[3rem\] { border-radius: 3rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-white\/40 { border: 1px solid rgba(255,255,255,0.4); }
.object-cover { object-fit: cover; }

/* Animations */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.transition-transform { transition-property: transform; }
.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:bg-black:hover { background-color: #000000; }
.hover\:text-white:hover { color: #ffffff; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:mt-12 { margin-top: 3rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-8xl { font-size: 6rem; }
    .md\:text-9xl { font-size: 8rem; }
    .md\:p-16 { padding: 4rem; }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 40px;
    z-index: 1000;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(67, 52, 41, 0.4);
    backdrop-filter: blur(5px);
}

.floating-cta:hover {
    background: var(--text-sand);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 180, 151, 0.5);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.logo-img {
    height: 50px;
    filter: invert(1);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-light);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-logo {
    width: 120px;
    margin: 0 auto 30px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 5px;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 20px;
    letter-spacing: 0.25em;
}

.hero-btn {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: 40px;
    padding: 18px 40px;
}

.hero-btn:hover {
    background-color: var(--text-sand);
    color: var(--bg-light);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}
.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}
.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Map Itinerary Container */
.map-container {
    position: relative;
    padding: 60px 0;
}

.map-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--text-sand), var(--text-sand), transparent);
    z-index: 0;
}

.day-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.day-row.reverse {
    flex-direction: row-reverse;
}

/* Day Dot Timeline indicator */
.day-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--bg-light);
    border: 4px solid var(--text-sand);
    border-radius: 50%;
    z-index: 20;
    box-shadow: 0 0 20px rgba(198, 180, 151, 0.6);
}

/* Day Cards */
.day-card {
    flex: 1;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.day-row .day-card {
    margin-right: 60px;
    border-radius: 4rem 0 0 4rem;
}

.day-row.reverse .day-card {
    margin-right: 0;
    margin-left: 60px;
    border-radius: 0 4rem 4rem 0;
}

.glass {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
}

.color-light { background-color: rgba(253, 251, 249, 0.85); }
.color-sand { background-color: rgba(239, 231, 222, 0.9); }
.color-dark { background-color: rgba(67, 52, 41, 0.95); border: none; }

.day-watermark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-serif);
    font-size: 15rem;
    font-style: italic;
    color: var(--text-sand);
    opacity: 0.15;
    z-index: -1;
    line-height: 1;
    pointer-events: none;
}

.day-row.reverse .day-watermark {
    right: auto;
    left: 20px;
}

.day-image {
    flex: 1;
    height: 500px;
    position: relative;
}

.day-row .day-image {
    border-radius: 0 4rem 4rem 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.day-row.reverse .day-image {
    border-radius: 4rem 0 0 4rem;
}

.day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.day-row:hover .day-image img {
    transform: scale(1.08);
}

/* Animations */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.reveal.slide-up { transform: translateY(60px); }
.delay-1 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 900px) {
    .day-row, .day-row.reverse {
        flex-direction: column;
        margin-bottom: 60px;
    }
    .map-line, .day-dot {
        display: none;
    }
    .day-row .day-card, .day-row.reverse .day-card {
        margin: 0;
        border-radius: 3rem 3rem 0 0;
        padding: 40px 30px;
    }
    .day-row .day-image, .day-row.reverse .day-image {
        border-radius: 0 0 3rem 3rem;
        height: 300px;
        width: 100%;
    }
    .day-watermark {
        font-size: 10rem;
    }
}

# Ajustes Mobile para tu Web (Copiar en style.css al final del todo)

```css
/* =========================
   MOBILE VERSION FIXES
========================= */

@media (max-width: 768px) {

    /* HERO MUCHO MAS COMPACTO */

    /* HERO */
    .hero-content h1 {
        font-size: 3.6rem !important;
        line-height: 0.95;
        margin-bottom: 0.5rem !important;
        padding: 0 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem !important;
        letter-spacing: 0.22em;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 0.9rem !important;
        padding: 0 2.2rem;
        line-height: 1.6;
        margin-top: 1rem !important;
    }

    .hero-logo {
        width: 80px;
        margin-bottom: 1rem;
    }

    /* BOTONES */
    .cta-btn {
        padding: 1rem 2rem !important;
        font-size: 0.8rem !important;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 10px;
    }

    /* SECCIONES */
    .itinerary-section,
    .workshops,
    .booking {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    /* TITULOS */
    h2 {
        font-size: 2.7rem !important;
        line-height: 1.1;
    }

    /* CARDS DIAS */
    .day-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 4rem !important;
    }

    .day-card {
        padding: 1.4rem !important;
        border-radius: 1.5rem;
        order: 2;
    }

    .day-card h3 {
        font-size: 1.25rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important;
        padding-bottom: 0.6rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .day-card p {
        font-size: 0.82rem !important;
        line-height: 1.55;
        margin-bottom: 0 !important;
    }

    /* IMAGENES DIAS */
    .day-image {
        order: 1;
    }

    .day-image img {
        height: 180px !important;
        width: 100%;
        object-fit: cover;
        border-radius: 1.5rem;
    }

    /* ACTIVIDADES */
    .workshops img {
        height: 140px !important;
        object-fit: cover;
        border-radius: 1.2rem;
    }

    /* PRECIO */
    .price-ticket {
        padding: 2.5rem 1.5rem !important;
        border-radius: 2rem;
    }

    .price-ticket span {
        font-size: 4.5rem !important;
    }

    /* LISTAS */
    ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* FOOTER */
    footer p {
        font-size: 0.65rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

}
/* =========================
   MOBILE VERSION FIXES
========================= */

@media (max-width: 768px) {

    /* HERO MUCHO MAS COMPACTO */

    /* HERO */
    .hero-content h1 {
        font-size: 3.6rem !important;
        line-height: 0.95;
        margin-bottom: 0.5rem !important;
        padding: 0 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem !important;
        letter-spacing: 0.22em;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 0.9rem !important;
        padding: 0 2.2rem;
        line-height: 1.6;
        margin-top: 1rem !important;
    }
     .hero-logo {
        width: 80px;
        margin-bottom: 1rem;
    }

    /* BOTONES */
    .cta-btn {
        padding: 1rem 2rem !important;
        font-size: 0.8rem !important;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 10px;
    }
/* SECCIONES */
    .itinerary-section,
    .workshops,
    .booking {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    /* TITULOS */
    h2 {
        font-size: 2.7rem !important;
        line-height: 1.1;
    }
     /* CARDS DIAS */
    .day-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 4rem !important;
    }

    .day-card {
        padding: 1.4rem !important;
        border-radius: 1.5rem;
        order: 2;
    }

    .day-card h3 {
        font-size: 1.25rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important;
        padding-bottom: 0.6rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
.day-card p {
        font-size: 0.82rem !important;
        line-height: 1.55;
        margin-bottom: 0 !important;
    }

    /* IMAGENES DIAS */
    .day-image {
        order: 1;
    }

    .day-image img {
        height: 180px !important;
        width: 100%;
        object-fit: cover;
        border-radius: 1.5rem;
    }
 /* ACTIVIDADES */
    .workshops img {
        height: 140px !important;
        object-fit: cover;
        border-radius: 1.2rem;
    }

    /* PRECIO */
    .price-ticket {
        padding: 2.5rem 1.5rem !important;
        border-radius: 2rem;
    }

    .price-ticket span {
        font-size: 4.5rem !important;
    }
     /* LISTAS */
    ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* FOOTER */
    footer p {
        font-size: 0.65rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

}
@media (max-width: 768px) {

    /* HERO */

    .hero .hero-content h1 {
        font-size: 3.6rem !important;
        line-height: 0.95 !important;
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }

    .hero .hero-content h2 {
        font-size: 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero .subtitle {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    /* ITINERARIO */

    .day-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-bottom: 4rem !important;
    }

    .day-image {
        order: 1 !important;
        width: 100% !important;
    }

    .day-image img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 1.5rem !important;
    }

    .day-card {
        order: 2 !important;
        width: 100% !important;
        padding: 1.4rem !important;
        border-radius: 1.5rem !important;
    }

    .day-card h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .day-card p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

}
.day-watermark {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    font-size: 3.5rem !important;
    font-weight: 600 !important;
    z-index: 5 !important;
    opacity: 0.15 !important;
    color: #000 !important;
    pointer-events: none !important;
}
.color-dark .day-watermark {
    color: #fff !important;
    opacity: 0.18 !important;
}