/* =====================================================================
   TIMELINE TOUR - PEPE THE GUIDE
   Sistema de diseño profesional turístico
   Versión 1.0
   ===================================================================== */

/* =====================================================================
   1. VARIABLES Y RESET
   ===================================================================== */
:root {
    /* Paleta principal */
    --color-primary: #C75D3A;        /* Terracota Sucre */
    --color-primary-dark: #A04829;
    --color-primary-light: #E07F5A;
    
    --color-secondary: #F8F4ED;      /* Blanco Colonial */
    --color-secondary-dark: #EDE5D3;
    
    --color-accent: #D4A857;         /* Dorado Patrimonial */
    --color-accent-dark: #B58D40;
    
    --color-deep: #1E2A38;           /* Azul Noche Andino */
    --color-deep-light: #2D3E52;
    
    --color-nature: #5B7C6A;         /* Verde Natural (Geo) */
    --color-warm: #8B4513;           /* Tierra (Beer) */
    
    /* Neutros */
    --color-white: #FFFFFF;
    --color-bg: #FAFAF7;
    --color-light: #F5F5F0;
    --color-gray-100: #F0EFEA;
    --color-gray-200: #E5E3DC;
    --color-gray-300: #C9C5B8;
    --color-gray-500: #8A8579;
    --color-gray-700: #4A4742;
    --color-text: #2D2A24;
    --color-black: #0F0E0C;
    
    /* Categorías de tours */
    --color-history: #C75D3A;
    --color-food: #D4A857;
    --color-adventure: #5B7C6A;
    --color-social: #8B4513;
    
    /* Tipografía */
    --color-cream: #F8F4ED;          /* alias blanco colonial */
    --color-border: #E5E3DC;         /* alias borde suave */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(30, 42, 56, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 42, 56, 0.10);
    --shadow-lg: 0 16px 48px rgba(30, 42, 56, 0.14);
    --shadow-xl: 0 24px 64px rgba(30, 42, 56, 0.20);
    
    /* Bordes y radios */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    /* Espaciados */
    --container-max: 1280px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img, picture, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* =====================================================================
   2. TIPOGRAFÍA
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-deep);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.text-accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.25rem;
    height: 1px;
    background: var(--color-primary);
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-gray-700);
    font-style: italic;
    max-width: 640px;
}

/* =====================================================================
   3. CONTENEDOR Y SECCIONES
   ===================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-light { background: var(--color-secondary); }
.section-dark { background: var(--color-deep); color: var(--color-secondary); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-white); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-header.text-left .section-subtitle {
    margin-left: 0;
}

/* =====================================================================
   4. BOTONES
   ===================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn i { font-size: 1rem; }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-deep);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-deep-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-deep);
    border: 2px solid var(--color-deep);
}

.btn-outline:hover {
    background: var(--color-deep);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-deep);
    border-color: var(--color-white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-block { width: 100%; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.btn-link:hover { gap: 0.875rem; }

/* =====================================================================
   5. NAVBAR
   ===================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.625rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--color-gray-200);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-deep);
    flex-shrink: 0;
}

.navbar-brand-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.navbar-brand-text { line-height: 1.1; }
.navbar-brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--color-primary);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.lang-switcher a {
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.lang-switcher a.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.navbar-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-deep);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =====================================================================
   6. HERO
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(135deg, #1E2A38 0%, #2D3E52 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-sucre.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    mix-blend-mode: luminosity;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,42,56,0.4) 0%, rgba(30,42,56,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 4rem 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.hero-eyebrow i {
    color: var(--color-accent);
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: var(--color-accent);
    font-style: italic;
    font-family: var(--font-accent);
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll i {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* =====================================================================
   7. TOUR CARDS
   ===================================================================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tour-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-gray-200);
}

.tour-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.tour-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-deep);
}

.tour-card-badge.history { color: var(--color-history); }
.tour-card-badge.food { color: var(--color-accent-dark); }
.tour-card-badge.adventure { color: var(--color-nature); }
.tour-card-badge.social { color: var(--color-warm); }

.tour-card-icon {
    position: absolute;
    bottom: -22px;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.tour-card.history .tour-card-icon { color: var(--color-history); }
.tour-card.food .tour-card-icon { color: var(--color-accent-dark); }
.tour-card.adventure .tour-card-icon { color: var(--color-nature); }
.tour-card.social .tour-card-icon { color: var(--color-warm); }

.tour-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-deep);
    margin-bottom: 0.5rem;
}

.tour-card-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.tour-card-text {
    color: var(--color-gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tour-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-gray-200);
}

.tour-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--color-gray-700);
}

.tour-card-meta-item i {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tour-card-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-deep);
}

.tour-card-price-from {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.tour-card-price-amount { font-size: 1.5rem; }
.tour-card-price-currency { font-size: 0.875rem; color: var(--color-gray-500); margin-left: 0.25rem; }

/* =====================================================================
   8. WHY US
   ===================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.why-card-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(199, 93, 58, 0.25);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-deep);
}

.why-card-text {
    color: var(--color-gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* =====================================================================
   9. SECCIÓN ABOUT (PEPE)
   ===================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    background: var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-tag-stars {
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.about-tag-text {
    font-size: 0.75rem;
    color: var(--color-gray-700);
    line-height: 1.3;
}

.about-tag-text strong {
    color: var(--color-deep);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content > p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-gray-700);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.about-feature i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.about-feature-text {
    font-weight: 600;
    color: var(--color-deep);
    font-size: 0.9375rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
}

.about-signature-name {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-deep);
    line-height: 1.1;
}

.about-signature-role {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

/* =====================================================================
   10. TESTIMONIOS
   ===================================================================== */
.testimonials-section {
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 5%;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: var(--color-primary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-gray-200);
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-author-info { flex: 1; }
.testimonial-author-name {
    font-weight: 600;
    color: var(--color-deep);
    font-size: 0.9375rem;
}

.testimonial-author-meta {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    margin-top: 0.125rem;
}

/* =====================================================================
   11. STORIES / BLOG CARDS
   ===================================================================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.story-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-gray-200);
}

.story-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-card:hover .story-card-media img {
    transform: scale(1.05);
}

.story-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    margin-bottom: 0.875rem;
}

.story-card-category {
    color: var(--color-primary);
    font-weight: 600;
}

.story-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--color-deep);
    margin-bottom: 0.75rem;
}

.story-card-excerpt {
    color: var(--color-gray-700);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* =====================================================================
   12. FORMULARIOS
   ===================================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-row-3 { grid-template-columns: repeat(3, 1fr); }

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-deep);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(199, 93, 58, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    cursor: pointer;
}

.form-checkbox input { margin-top: 0.25rem; }

.form-help {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    margin-top: 0.375rem;
}

.form-error {
    font-size: 0.8125rem;
    color: var(--color-primary);
    margin-top: 0.375rem;
    display: none;
}

.form-error.show { display: block; }

.form-control.error {
    border-color: var(--color-primary);
    background: rgba(199, 93, 58, 0.03);
}

/* =====================================================================
   13. FOOTER
   ===================================================================== */
.footer {
    background: var(--color-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-brand-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-about {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-list li { margin-bottom: 0.625rem; }

.footer-list a {
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-list a:hover { color: var(--color-accent); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
}

.footer-contact-item i {
    color: var(--color-accent);
    margin-top: 0.25rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-bottom-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-credits a {
    color: var(--color-accent);
    font-weight: 600;
}

/* =====================================================================
   14. WHATSAPP FLOATING
   ===================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* =====================================================================
   15. PAGE HEADER (interno)
   ===================================================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-deep-light) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/pattern-sucre.svg');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.05;
}

.page-header-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.breadcrumb a {
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb i {
    font-size: 0.625rem;
}

/* =====================================================================
   16. UTILIDADES
   ===================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.flash {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    border-left: 4px solid transparent;
}

.flash-success {
    background: rgba(91, 124, 106, 0.12);
    color: #3F5849;
    border-left-color: var(--color-nature);
}

.flash-error {
    background: rgba(199, 93, 58, 0.1);
    color: var(--color-primary-dark);
    border-left-color: var(--color-primary);
}

/* =====================================================================
   17. ANIMACIONES
   ===================================================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.95); }

/* =====================================================================
   18. PÁGINAS INTERNAS - DETALLES, MAPA, BOOKING, BLOG
   ===================================================================== */

/* Page header secundario con lead */
.page-header-lead {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
}

.section-no-top { padding-top: 0 !important; }
.section-sm { padding: 2rem 0 !important; }
.container--narrow { max-width: 820px; }

/* Filtros (chips) */
.filters,
.map-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid var(--color-border, #e5dfd4);
    background: #fff;
    color: var(--color-deep, #1E2A38);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Tour hero (página detalle) */
.tour-hero {
    min-height: 460px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
}
.tour-hero-content { max-width: 820px; }
.tour-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}
.tour-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.tour-hero-lead {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 1.6rem;
}
.tour-hero-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.tour-hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}
.tour-hero-meta i { color: var(--color-accent); }

/* Layout detalle del tour */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
.tour-detail-main { min-width: 0; }

.tour-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border, #e5dfd4);
}
.tour-block:last-child { border-bottom: 0; }
.block-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    color: var(--color-deep);
}
.tour-content { line-height: 1.75; color: #444; }

.tour-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.tour-includes-col h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--color-deep);
}
.text-success { color: #2c8a4f; }
.text-muted { color: #999; }

/* Timeline (itinerario) */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}
.timeline-item { position: relative; padding-bottom: 1.8rem; }
.timeline-dot {
    position: absolute;
    left: -1.95rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--color-primary);
}
.timeline-time {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
    color: var(--color-deep);
}
.timeline-content p { color: #555; line-height: 1.6; margin: 0; }

/* FAQs */
.faqs { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
    border: 1px solid var(--color-border, #e5dfd4);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item[open] { border-color: var(--color-primary); }
.faq-item summary {
    cursor: pointer;
    padding: 1rem 1.3rem;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--color-deep);
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
    padding: 0 1.3rem 1.2rem;
    color: #555;
    line-height: 1.7;
}

/* Sidebar booking card */
.tour-detail-sidebar { position: sticky; top: 100px; }
.sticky-card {
    background: #fff;
    border: 1px solid var(--color-border, #e5dfd4);
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 8px 30px rgba(30, 42, 56, 0.06);
}
.booking-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 1.2rem;
    color: var(--color-deep);
}
.booking-card-meta { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.booking-card-meta li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--color-border, #e5dfd4);
    font-size: 0.95rem;
    color: #555;
}
.booking-card-meta li:last-child { border-bottom: 0; }
.booking-card-meta strong { color: var(--color-deep); margin-right: 0.4rem; }
.booking-price {
    display: flex !important;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0 !important;
}
.booking-price strong {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
}
.btn-block { display: flex; width: 100%; justify-content: center; margin-bottom: 0.7rem; }
.booking-card-note {
    font-size: 0.82rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}
.booking-card-note i { color: var(--color-accent); margin-right: 0.3rem; }

/* Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-grid--small { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.gallery-masonry { grid-auto-rows: 220px; grid-auto-flow: dense; }
.gallery-masonry .gallery-item:nth-child(7n) { grid-row: span 2; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    cursor: zoom-in;
    background: #f0eadf;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1rem 0.6rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* MAPA */
#full-map {
    height: 600px;
    border-radius: 14px;
    border: 1px solid var(--color-border, #e5dfd4);
    box-shadow: 0 8px 30px rgba(30, 42, 56, 0.08);
}
.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    justify-content: center;
    margin-top: 1.2rem;
    font-size: 0.92rem;
    color: #555;
}
.legend-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}
.legend-dot--history   { background: #C75D3A; }
.legend-dot--food      { background: #D4A857; }
.legend-dot--adventure { background: #5B7C6A; }
.legend-dot--beer      { background: #8B4513; }
.legend-dot--traveler  { background: #1E2A38; }

/* Marker personalizado */
.custom-map-marker { background: transparent !important; border: 0 !important; }
.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 3px solid #fff;
}
.marker-pin i {
    transform: rotate(45deg);
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
}

/* Popup mapa */
.map-popup { min-width: 220px; max-width: 260px; }
.map-popup-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.6rem;
}
.map-popup h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    color: var(--color-deep);
}
.map-popup small { color: #888; font-size: 0.78rem; }
.map-popup p { font-size: 0.88rem; line-height: 1.5; margin: 0.5rem 0; color: #555; }

/* Travelers Wall */
.travelers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.traveler-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(30, 42, 56, 0.07);
    transition: transform .3s, box-shadow .3s;
}
.traveler-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(30, 42, 56, 0.12); }
.traveler-image { height: 220px; overflow: hidden; }
.traveler-image img { width: 100%; height: 100%; object-fit: cover; }
.traveler-body { padding: 1.2rem 1.3rem 1.4rem; }
.traveler-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
    color: var(--color-deep);
}
.traveler-flag { font-weight: 400; color: var(--color-primary); font-size: 0.9rem; }
.traveler-date {
    display: block;
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 0.6rem;
}
.traveler-comment { color: #555; line-height: 1.6; font-style: italic; font-size: 0.95rem; }

/* Stories grid full */
.stories-grid--full,
.tours-grid--full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.story-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Article (blog detail) */
.article-hero {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 3rem 0;
}
.article-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 1rem 0;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-size: 0.92rem;
    opacity: 0.9;
}
.article-meta i { color: var(--color-accent); margin-right: 0.3rem; }
.breadcrumbs--light a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs--light span { color: rgba(255, 255, 255, 0.7); }

.article-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}
.article-content p { margin-bottom: 1.2rem; }
.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 2rem 0 1rem;
    color: var(--color-deep);
}
.article-cta {
    background: var(--color-cream, #F8F4ED);
    padding: 1.8rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    border-left: 4px solid var(--color-primary);
}
.article-cta h3 {
    font-family: var(--font-heading);
    color: var(--color-deep);
    margin: 0 0 0.4rem;
}
.article-share {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border, #e5dfd4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.article-share strong { color: var(--color-deep); }
.article-share a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-cream, #F8F4ED);
    color: var(--color-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.article-share a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.article-sidebar .sticky-card { position: sticky; top: 100px; }
.article-sidebar h4 {
    font-family: var(--font-heading);
    color: var(--color-deep);
    margin: 0 0 1rem;
}
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px dashed var(--color-border, #e5dfd4); }
.related-list li:last-child { border-bottom: 0; }
.related-list a { display: block; color: var(--color-deep); text-decoration: none; transition: color .2s; }
.related-list a:hover { color: var(--color-primary); }
.related-list strong { display: block; font-size: 0.94rem; line-height: 1.4; margin-bottom: 0.2rem; }
.related-list span { font-size: 0.8rem; color: #888; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 3rem;
}
.pag-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--color-border, #e5dfd4);
    background: #fff;
    color: var(--color-deep);
    text-decoration: none;
    transition: all .2s ease;
    font-weight: 500;
}
.pag-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pag-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Contact + Booking grids */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2 { font-family: var(--font-heading); margin-bottom: 0.5rem; color: var(--color-deep); }
.contact-info-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border, #e5dfd4);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-cream, #F8F4ED);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-list strong { display: block; color: var(--color-deep); margin-bottom: 0.2rem; }
.contact-info-list a { color: var(--color-primary); text-decoration: none; }
.contact-info-list a:hover { text-decoration: underline; }
.contact-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-cream, #F8F4ED);
    color: var(--color-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.contact-social a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

/* Booking grid */
.booking-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: start;
}
.booking-form h2,
.contact-form h2 {
    font-family: var(--font-heading);
    color: var(--color-deep);
    margin-bottom: 1.5rem;
}
.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-deep);
    margin: 1.8rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border, #e5dfd4);
}
.booking-side .sticky-card { position: sticky; top: 100px; }
.booking-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.booking-steps li {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-border, #e5dfd4);
}
.booking-steps li:last-child { border-bottom: 0; }
.booking-steps strong { color: var(--color-deep); display: block; margin-bottom: 0.2rem; }
.booking-steps p { color: #666; font-size: 0.92rem; line-height: 1.5; margin: 0; }
.booking-side-divider { height: 1px; background: var(--color-border, #e5dfd4); margin: 1.4rem 0; }
.booking-trust {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--color-cream, #F8F4ED);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--color-accent);
}
.booking-trust i { color: var(--color-accent); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.booking-trust p { font-size: 0.9rem; color: #555; line-height: 1.5; margin: 0; }

/* Personal message card */
.personal-message-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-cream, #F8F4ED);
    border-radius: 14px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    border-left: 4px solid var(--color-primary);
}
.personal-message-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.personal-message-card p {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-deep);
    margin-bottom: 1.2rem;
    font-style: italic;
}
.personal-message-card strong { color: var(--color-primary); font-weight: 600; }

/* Hero scroll arrow */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.4rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    text-decoration: none;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Map preview wrapper */
.map-preview-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 42, 56, 0.08);
}

/* About image badge */
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-deep);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-image-badge i { color: var(--color-accent); margin-right: 0.4rem; }

/* Testimonios stack (página detalle) */
.testimonials-stack { display: flex; flex-direction: column; gap: 1.2rem; }
.testimonial-card--inline { box-shadow: 0 4px 16px rgba(30, 42, 56, 0.06); }

/* Alert */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.alert-success { background: #e6f4ec; color: #1d6e3a; border-left: 4px solid #1d6e3a; }
.alert-error   { background: #fbe7e3; color: #8d2818; border-left: 4px solid #c75d3a; }

/* Badges/icons-tour por categoría — colores distintivos */
.tour-card--timeline .tour-card-badge { background: var(--color-primary); }
.tour-card--tasty    .tour-card-badge { background: var(--color-accent); color: var(--color-deep); }
.tour-card--geo      .tour-card-badge { background: #5B7C6A; }
.tour-card--beer     .tour-card-badge { background: #8B4513; }

