/*
Theme Name: Viajes Machu Picchu Peru
Theme URI: https://viajesmachupicchuperu.com
Author: Elite International Agency
Author URI: https://viajesmachupicchuperu.com
Description: Premium International Tourism Theme - Machu Picchu Peru
Version: 1.0.0
License: Private
Text Domain: vmpp
*/

/* ============================================
   VARIABLES PREMIUM
   ============================================ */
:root {
    /* Colores Oficiales */
    --gold-primary: #8a6a11;
    --gold-bright: #e8ad0c;
    --gold-warm: #c9a227;
    --gold-light: #f4d03f;
    
    /* Premium Dark */
    --black-premium: #0a0a0a;
    --black-soft: #111111;
    --black-card: #1a1a1a;
    --brown-dark: #1c1410;
    --brown-medium: #2d1f14;
    
    /* Neutros */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-bright) 50%, var(--gold-warm) 100%);
    --gradient-dark: linear-gradient(180deg, var(--black-premium) 0%, var(--brown-dark) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
    
    /* Tipografía */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-display: 'Manrope', sans-serif;
    
    /* Espaciado */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Bordes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Sombras Premium */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.3);
    --shadow-gold: 0 4px 20px rgba(232,173,12,0.3);
    --shadow-gold-lg: 0 8px 30px rgba(232,173,12,0.4);
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
    --z-loader: 500;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black-premium);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

ul, ol {
    list-style: none;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.2vw, 1.25rem); }

p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.text-gold { color: var(--gold-bright); }
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 1000px;
}

.section-padding {
    padding: var(--space-5xl) 0;
}

.section-padding-sm {
    padding: var(--space-3xl) 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   BOTONES PREMIUM
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black-premium);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

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

.btn-outline:hover {
    background: var(--gold-bright);
    color: var(--black-premium);
}

.btn-dark {
    background: var(--black-card);
    color: var(--white);
    border: 1px solid var(--gray-700);
}

.btn-dark:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.85rem;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

/* ============================================
   HEADER PREMIUM
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 106, 17, 0.15);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-top-bar {
    background: var(--black-soft);
    border-bottom: 1px solid rgba(138, 106, 17, 0.1);
    padding: var(--space-xs) 0;
}

.header-top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-xl);
}

.header-top-link {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-base);
}

.header-top-link:hover {
    color: var(--gold-bright);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(138, 106, 17, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-switcher a {
    color: var(--gray-500);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--gold-bright);
    background: rgba(232, 173, 12, 0.15);
}

.header-main {
    padding: var(--space-md) 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.site-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(232, 173, 12, 0.3));
}

.site-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.site-logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-top: 2px;
}

/* ============================================
   MEGA MENÚ PREMIUM
   ============================================ */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-bright);
    background: rgba(138, 106, 17, 0.1);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-base);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 800px;
    max-width: 90vw;
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-sm);
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.mega-dropdown-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(138, 106, 17, 0.2);
}

.mega-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mega-dropdown-list a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gray-300);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.mega-dropdown-list a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    transition: var(--transition-base);
}

.mega-dropdown-list a:hover {
    background: rgba(138, 106, 17, 0.1);
    color: var(--white);
    padding-left: var(--space-md);
}

.mega-dropdown-list a:hover::before {
    background: var(--gold-bright);
    transform: scale(1.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: calc(var(--z-sticky) + 10);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-bright);
    transition: var(--transition-base);
    transform-origin: center;
}

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

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

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

/* ============================================
   HERO CINEMATOGRÁFICO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Search Box Hero */
.hero-search {
    position: relative;
    z-index: 2;
    margin-top: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-lg);
}

.search-box {
    display: flex;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 106, 17, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-sm);
    gap: var(--space-sm);
    box-shadow: var(--shadow-xl);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: var(--space-md) var(--space-lg);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.search-box input::placeholder {
    color: var(--gray-500);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    padding: var(--space-md) var(--space-xl);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--gold-bright);
}

/* ============================================
   SECTIONS GENERALES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-400);
}

/* ============================================
   CARDS PREMIUM
   ============================================ */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.tour-card {
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 106, 17, 0.3);
    box-shadow: var(--shadow-xl);
}

.tour-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gradient-gold);
    color: var(--black-premium);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.tour-card-favorite {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
    z-index: 2;
}

.tour-card-favorite:hover {
    background: var(--gold-bright);
    color: var(--black-premium);
}

.tour-card-content {
    padding: var(--space-lg);
}

.tour-card-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.8rem;
    color: var(--gray-500);
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.tour-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.tour-card-title a:hover {
    color: var(--gold-bright);
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.tour-card-stars {
    display: flex;
    gap: 2px;
    color: var(--gold-bright);
}

.tour-card-reviews {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(138, 106, 17, 0.1);
}

.tour-card-price {
    display: flex;
    flex-direction: column;
}

.tour-card-price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.tour-card-price-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-bright);
}

/* ============================================
   CATEGORÍAS VISUALES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    transition: var(--transition-base);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%);
}

.category-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.category-card-count {
    font-size: 0.85rem;
    color: var(--gold-bright);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: rgba(138, 106, 17, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--black-premium);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: var(--transition-smooth);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-xl));
    min-width: 350px;
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold-bright);
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author-location {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   ESTADÍSTICAS
   ============================================ */
.stats-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(138, 106, 17, 0.1);
    border-bottom: 1px solid rgba(138, 106, 17, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: var(--space-lg);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card-title a:hover {
    color: var(--gold-bright);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.site-footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(138, 106, 17, 0.15);
}

.footer-main {
    padding: var(--space-5xl) 0 var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(138, 106, 17, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--black-premium);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold-bright);
    padding-left: var(--space-sm);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-contact-item svg {
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(138, 106, 17, 0.1);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-payment {
    display: flex;
    gap: var(--space-sm);
}

.footer-payment img {
    height: 30px;
    opacity: 0.6;
    transition: var(--transition-base);
}

.footer-payment img:hover {
    opacity: 1;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: #25D366;
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   SINGLE TOUR PAGE
   ============================================ */
.tour-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-4xl);
}

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

.tour-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

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

.breadcrumbs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.breadcrumbs a:hover {
    color: var(--gold-bright);
}

.breadcrumbs .current {
    color: var(--gold-bright);
}

.tour-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.tour-hero-meta {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.tour-hero-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--gray-300);
}

.tour-hero-meta-item svg {
    color: var(--gold-bright);
}

/* Tour Content Layout */
.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
}

.tour-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.tour-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Tour Sections */
.tour-section {
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.tour-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold-primary);
    display: inline-block;
}

.tour-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-300);
}

.tour-description p {
    margin-bottom: var(--space-md);
}

/* Itinerary */
.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.itinerary-item {
    display: flex;
    gap: var(--space-lg);
    position: relative;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: -24px;
    width: 2px;
    background: rgba(138, 106, 17, 0.2);
}

.itinerary-item:last-child::before {
    display: none;
}

.itinerary-day {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--gradient-gold);
    color: var(--black-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 1;
}

.itinerary-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.itinerary-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
}

/* Inclusiones/Exclusiones */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.inclusion-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.inclusion-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--gray-300);
}

.inclusion-list.included li svg {
    color: #22c55e;
}

.inclusion-list.excluded li svg {
    color: #ef4444;
}

/* Gallery */
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.tour-gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.tour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--black-soft);
    border: 1px solid rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--gold-bright);
}

.faq-question svg {
    transition: var(--transition-base);
    color: var(--gold-bright);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* Booking Widget */
.booking-widget {
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.booking-widget-price {
    text-align: center;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(138, 106, 17, 0.1);
    margin-bottom: var(--space-xl);
}

.booking-widget-price-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.booking-widget-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
    margin: var(--space-sm) 0;
}

.booking-widget-price-per {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.booking-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.booking-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-300);
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    background: var(--black-soft);
    border: 1px solid rgba(138, 106, 17, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(232, 173, 12, 0.1);
}

.booking-form-group input::placeholder,
.booking-form-group textarea::placeholder {
    color: var(--gray-600);
}

.booking-form-group button[type="submit"] {
    width: 100%;
    margin-top: var(--space-sm);
}

.booking-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(138, 106, 17, 0.1);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.trust-badge svg {
    color: var(--gold-bright);
}

/* Related Tours */
.related-tours {
    background: var(--black-soft);
}

/* ============================================
   BLOG PAGES
   ============================================ */
.blog-hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    background: var(--gradient-dark);
}

.blog-content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.sidebar-widget {
    background: var(--black-card);
    border: 1px solid rgba(138, 106, 17, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold-primary);
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(138, 106, 17, 0.05);
}

.sidebar-categories a:hover {
    color: var(--gold-bright);
}

.sidebar-categories a span {
    background: rgba(138, 106, 17, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

/* Single Blog */
.blog-single-header {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
}

.blog-single-meta {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--gray-500);
}

.blog-single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
}

.blog-single-content h2 {
    margin: var(--space-2xl) 0 var(--space-md);
    font-size: 1.8rem;
}

.blog-single-content h3 {
    margin: var(--space-xl) 0 var(--space-md);
    font-size: 1.4rem;
}

.blog-single-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.blog-single-content ul li {
    list-style: disc;
    margin-bottom: var(--space-sm);
    color: var(--gray-300);
}

.blog-single-content ol li {
    list-style: decimal;
    margin-bottom: var(--space-sm);
    color: var(--gray-300);
}

.blog-single-content img {
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
}

.blog-single-content blockquote {
    border-left: 4px solid var(--gold-bright);
    padding-left: var(--space-xl);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--gray-300);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    background: var(--gradient-dark);
}

.about-content {
    padding: var(--space-3xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-lg);
    border: 3px solid var(--gold-primary);
}

.team-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.team-card-role {
    font-size: 0.85rem;
    color: var(--gold-bright);
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section {
    background: var(--black-soft);
    padding: var(--space-xl) 0;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    opacity: 0.5;
}

.trust-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    transition: var(--transition-base);
}

.trust-logos img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

/* ============================================
   LOADING STATES
   ============================================ */
.loading-shimmer {
    background: linear-gradient(90deg, var(--black-card) 25%, var(--black-soft) 50%, var(--black-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .tour-content {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar {
        position: static;
    }
    
    .blog-content-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 992px) {
    .mega-dropdown {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        background: var(--black-soft);
        margin-top: 0;
    }
    
    .nav-item.active .mega-dropdown {
        display: block;
    }
    
    .mega-dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-xl));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--black-card);
        flex-direction: column;
        padding: calc(80px + var(--space-xl)) var(--space-xl);
        gap: 0;
        transition: var(--transition-smooth);
        z-index: var(--z-sticky);
        border-left: 1px solid rgba(138, 106, 17, 0.2);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(138, 106, 17, 0.1);
    }
    
    .nav-link {
        padding: var(--space-md) 0;
        font-size: 1rem;
    }
    
    .header-top-bar .container {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: var(--radius-xl);
    }
    
    .search-box button {
        width: 100%;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8rem;
    }
    
    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold-bright);
    color: var(--black-premium);
    padding: var(--space-sm) var(--space-md);
    z-index: calc(var(--z-loader) + 10);
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .scroll-indicator,
    .hero-search {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    body {
        background: white;
        color: black;
    }
}