/* ================================
   BEST TOUR PUNTA CANA - Estilos Corporativos
   ================================ */

:root {
    /* Colores Corporativos (verde → marrón → blanco) */
    --primary: #1D6A3D;          /* Verde bosque - títulos y destaque */
    --primary-dark: #124228;
    --primary-light: #3C8E53;
    --secondary: #6A4026;        /* Marrón Tierra - acentos secundarios */
    --accent: #A76B3D;           /* Marrón cálido - botones activos */
    --accent-hover: #8C5A2D;
    
    /* Neutros */
    --white: #ffffff;
    --black: #1c2130;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    
    /* Otros */
    --success: #22c55e;
    --whatsapp: #25D366;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Container responsive para móviles - Se maneja en las media queries completas más abajo */

/* ================================
   BOTONES - Naranja Vivo
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(167, 107, 61, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: #5b3922;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ================================
   HEADER - Logo Grande
   ================================ */
/* ============================================
   HEADER MEJORADO - DISEÑO MODERNO Y ELEGANTE
   ============================================ */
.header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.98), rgba(20, 72, 40, 0.98)) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.99), rgba(20, 72, 40, 0.99)) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
}

.header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px;
    padding: 16px 0 !important;
    min-height: 80px;
}

.logo,
.logo-brand {
    display: flex !important;
    align-items: center !important;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover,
.logo-brand:hover {
    transform: scale(1.05);
}

.logo-badge {
    width: 76px !important;
    height: 76px !important;
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 
                0 0 0 4px rgba(255, 255, 255, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.8) !important;
    border: 3px solid rgba(29, 106, 61, 0.3) !important;
    background-clip: padding-box !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.logo:hover .logo-badge,
.logo-brand:hover .logo-badge {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 
                0 0 0 4px rgba(255, 255, 255, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.9) !important;
}

.logo img,
.logo-badge img {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain !important;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover .logo-badge img,
.logo-brand:hover .logo-badge img {
    transform: scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 1.3;
}

.brand-text span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover .brand-text span,
.logo-brand:hover .brand-text span {
    background: linear-gradient(135deg, #f4b400, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
    position: relative;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    display: block;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4b400, transparent);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(244, 180, 0, 0.4);
}

.main-nav a:hover::before {
    opacity: 1;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.main-nav a.active {
    color: #f4b400 !important;
    background: rgba(244, 180, 0, 0.15) !important;
}

.main-nav a.active::before {
    opacity: 1;
}

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

/* Cart Button */
/* Botón WhatsApp mejorado */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4),
                0 2px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none !important;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5),
                0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.btn-whatsapp span {
    position: relative;
    z-index: 1;
}

/* Cart Button mejorado */
.btn-cart {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) rotate(5deg);
    color: #f4b400 !important;
}

.cart-badge {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
    color: #fff !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 12px !important;
    min-width: 20px !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Menu mejorado */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 10px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px !important;
    height: 44px !important;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.mobile-menu-toggle span {
    width: 24px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================
   HERO - Overlay más claro
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Overlay más suave para ver mejor la imagen */
    background: linear-gradient(
        135deg,
        rgba(10, 73, 123, 0.6) 0%,
        rgba(10, 73, 123, 0.3) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--accent);
}

.hero-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================
   SECCIÓN: Inicia tu Aventura (3 pasos)
   ================================ */
.steps-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.steps-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.steps-section .section-title span {
    color: var(--accent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-number {
    position: relative;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 15px;
}

.step-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ================================
   FLIP BOX - Por qué viajar con nosotros
   ================================ */
.flipbox-section {
    padding: 100px 0;
    background: var(--white);
}

.flipbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flipbox {
    height: 280px;
    perspective: 1000px;
}

.flipbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flipbox:hover .flipbox-inner {
    transform: rotateY(180deg);
}

.flipbox-front,
.flipbox-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.flipbox-front {
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.flipbox-front .flipbox-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8c52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.flipbox-front .flipbox-icon i {
    font-size: 28px;
    color: var(--white);
}

.flipbox-front h4 {
    font-size: 16px;
    color: var(--primary);
}

.flipbox-back {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.flipbox-back h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
}

.flipbox-back p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ================================
   TARJETAS DE EXCURSIONES - Diseño Mejorado
   ================================ */
.excursions-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 5%, var(--gray-50) 100%);
    position: relative;
}

/* Tours Filters - Diseño Mejorado */
.tours-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 24px 28px;
    background: linear-gradient(135deg, 
        rgba(29, 106, 61, 0.05) 0%, 
        rgba(167, 107, 61, 0.03) 50%,
        rgba(29, 106, 61, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 2px rgba(29, 106, 61, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(29, 106, 61, 0.15);
}

.tours-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent) 0%, 
        var(--primary) 50%, 
        var(--accent) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    background: rgba(29, 106, 61, 0.08);
    border: 2px solid rgba(29, 106, 61, 0.2);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 106, 61, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 106, 61, 0.2), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::after {
    left: 100%;
}

.filter-btn i {
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.filter-btn span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--primary);
    background: rgba(29, 106, 61, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(29, 106, 61, 0.25),
        0 0 0 3px rgba(29, 106, 61, 0.15);
}

.filter-btn:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--accent);
}

.filter-btn:hover span {
    letter-spacing: 0.5px;
}

.filter-btn-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    border-color: var(--primary);
    box-shadow: 
        0 6px 20px rgba(29, 106, 61, 0.35),
        0 0 0 3px rgba(29, 106, 61, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradient-shift 3s ease infinite;
    position: relative;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.filter-btn-active::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.filter-btn-active i {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.filter-btn-active span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.filter-btn-active:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(29, 106, 61, 0.45),
        0 0 0 4px rgba(29, 106, 61, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: gradient-shift 2s ease infinite, pulse-active 2s ease infinite;
}

@keyframes pulse-active {
    0%, 100% { box-shadow: 
        0 10px 30px rgba(29, 106, 61, 0.45),
        0 0 0 4px rgba(29, 106, 61, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { box-shadow: 
        0 10px 30px rgba(29, 106, 61, 0.55),
        0 0 0 5px rgba(29, 106, 61, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.filter-btn-active:hover i {
    transform: scale(1.2) rotate(10deg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: clamp(28px, 4vw, 40px);
}

.section-header .section-title span {
    color: var(--accent);
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

/* Tarjeta de Excursión Mejorada con Efectos Dinámicos */
.excursion-card {
    background: var(--white);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    animation: cardFadeIn 0.6s ease-out backwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
    isolation: isolate;
}

.excursion-card > * {
    position: relative;
    z-index: 1;
}

.excursion-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    z-index: 0;
    transition: all 0.5s ease;
    animation: gradient-border 3s ease infinite;
    opacity: 0.7;
}

@keyframes gradient-border {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.excursion-card:hover::before {
    background-size: 200% 200%;
    animation: gradient-border 1.5s ease infinite;
    opacity: 1;
    box-shadow: 
        0 0 20px rgba(29, 106, 61, 0.4),
        0 0 40px rgba(167, 107, 61, 0.3);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.excursion-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 106, 61, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.excursion-card:hover::after {
    opacity: 1;
}

.excursion-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(29, 106, 61, 0.1),
        0 0 40px rgba(29, 106, 61, 0.1);
    border-color: rgba(29, 106, 61, 0.3);
}

/* Card Header */
.excursion-card .card-header {
    padding: 24px 24px 16px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 0.5) 100%);
    transition: background 0.4s ease;
}

.excursion-card:hover .card-header {
    background: linear-gradient(180deg, rgba(29, 106, 61, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.excursion-card .card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px 0;
    line-height: 1.3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
}

.excursion-card .card-header h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.excursion-card:hover .card-header h3 {
    color: var(--accent);
    transform: scale(1.05);
}

.excursion-card:hover .card-header h3::after {
    transform: translateX(-50%) scaleX(1);
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.12) 0%, rgba(74, 185, 122, 0.08) 100%);
    border: 1px solid rgba(29, 106, 61, 0.2);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 106, 61, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.excursion-card:hover .card-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 106, 61, 0.3);
}

.excursion-card:hover .card-badge::before {
    width: 200px;
    height: 200px;
}

/* Card Image */
.card-image-wrapper {
    position: relative;
    margin: 0 20px 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.excursion-card:hover .card-image-wrapper {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.excursion-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: var(--gray-100);
}

.excursion-card .card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(29, 106, 61, 0.1) 0%, 
        transparent 50%, 
        rgba(74, 185, 122, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.excursion-card:hover .card-image::before {
    opacity: 1;
    animation: gradient-shift 3s ease infinite;
}

.excursion-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) saturate(1);
    will-change: transform;
}

.excursion-card:hover .card-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) saturate(1.2);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--white);
    gap: 12px;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.excursion-card:hover .card-image-overlay {
    opacity: 1;
}

.card-image-overlay i {
    font-size: 40px;
    margin-bottom: 8px;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.excursion-card:hover .card-image-overlay i {
    transform: translateY(0) scale(1.1);
    animation: icon-bounce 1s ease-in-out infinite;
}

.card-image-overlay span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.excursion-card:hover .card-image-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Card Body */
.excursion-card .card-body {
    padding: 0 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    position: relative;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(29, 106, 61, 0.04);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 106, 61, 0.1), transparent);
    transition: left 0.5s ease;
}

.excursion-card:hover .card-meta-item::before {
    left: 100%;
}

.card-meta-item i {
    color: var(--accent);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.excursion-card:hover .card-meta-item {
    background: rgba(29, 106, 61, 0.08);
    transform: translateX(4px);
    color: var(--primary);
}

.excursion-card:hover .card-meta-item i {
    color: var(--primary);
    transform: scale(1.2);
}

.card-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer */
.excursion-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.card-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-price-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.excursion-card .card-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    animation: price-shimmer 3s ease-in-out infinite;
}

@keyframes price-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.excursion-card:hover .card-price {
    font-size: 26px;
    animation: price-shimmer 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(29, 106, 61, 0.2));
}

.card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-actions .btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card-actions .btn i {
    font-size: 14px;
}

.card-actions .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.card-actions .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 106, 61, 0.3);
}

.card-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
}

.card-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(29, 106, 61, 0.4);
}

/* Tours Empty State */
.tours-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.tours-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.1), rgba(74, 185, 122, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tours-empty-icon i {
    font-size: 48px;
    color: var(--accent);
}

.tours-empty h3 {
    font-size: 24px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.tours-empty p {
    font-size: 16px;
    color: var(--gray-600);
}

.tours-empty a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tours-empty a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ================================
   SECCIÓN TRANSPORTE
   ================================ */
.transport-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transport-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 20px;
}

.transport-content h2 span {
    color: var(--gray-500);
    font-weight: 400;
}

.transport-content > p {
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.transport-features {
    margin-bottom: 30px;
}

.transport-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
}

.transport-features li i {
    color: var(--accent);
    font-size: 18px;
}

.transport-image {
    position: relative;
}

.transport-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.transport-image .btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/* ================================
   BANNER DE OFERTAS (Editable desde Admin)
   ================================ */
.offers-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    margin: 60px auto;
    max-width: 1200px;
    overflow: hidden;
}

.offers-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
}

.offers-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 40px;
}

.offers-banner h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--accent);
    margin-bottom: 20px;
}

.offers-banner-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.offers-banner-features p {
    font-size: 16px;
    color: var(--gray-700);
}

.offers-banner-features span {
    color: var(--gray-500);
}

/* ================================
   FOOTER - Diseño Mejorado Moderno
   ================================ */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0a4d2e 0%, #1d6a3d 50%, #0a4d2e 100%);
    color: var(--white);
    padding: 100px 0 0;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 185, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.footer-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Footer Brand Section */
.footer-col-main {
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-logo-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(74, 185, 122, 0.2);
    transition: all 0.3s ease;
}

.footer-logo-wrapper:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(74, 185, 122, 0.4);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-logo-wrapper:hover .footer-logo {
    transform: scale(1.05) rotate(5deg);
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(74, 185, 122, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.footer-brand-text {
    flex: 1;
}

.footer-brand-title {
    margin: 0 0 6px 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 400;
    display: block;
}

.footer-tagline {
    margin: 0 0 28px 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-badge-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 185, 122, 0.2), rgba(10, 143, 88, 0.2));
    border-radius: 10px;
    flex-shrink: 0;
}

.footer-badge-icon i {
    font-size: 16px;
    color: #4ab97a;
}

.footer-badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Columns */
.footer-col {
    position: relative;
}

.footer-col-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.footer-col-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(8px);
    padding-left: 8px;
}

.footer-links a:hover::before {
    height: 60%;
}

.footer-link-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.footer-links a:hover .footer-link-icon {
    transform: scale(1.2);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    color: #25d366;
}

.footer-contact-email {
    background: linear-gradient(135deg, rgba(244, 180, 0, 0.2), rgba(244, 180, 0, 0.1));
    color: #f4b400;
}

.footer-contact-location {
    background: linear-gradient(135deg, rgba(74, 185, 122, 0.2), rgba(74, 185, 122, 0.1));
    color: #4ab97a;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-contact-link,
.footer-contact-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.footer-social-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

.footer-social-facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(24, 119, 242, 0.1));
}

.footer-social-facebook:hover {
    background: #1877f2;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.footer-social-tiktok {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
}

.footer-social-tiktok:hover {
    background: #000000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.footer-social-instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
}

.footer-social-instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.footer-social-icon:hover::before {
    opacity: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ================================
   SECCIÓN: Tu Aliado Perfecto
   ================================ */
.tagline-section {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.tagline-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-style: italic;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.tagline-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* ================================
   SECCIÓN CTA (Call to Action)
   ================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 73, 123, 0.85) 0%,
        rgba(10, 73, 123, 0.7) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-content .btn {
    margin: 0 auto;
}

/* ================================
   TRANSFERS PAGE
   ================================ */
.transfers-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.transfers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.transfer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    animation: cardFadeIn 0.6s ease-out backwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
    isolation: isolate;
}

.transfer-card > * {
    position: relative;
    z-index: 1;
}

.transfer-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    z-index: 0;
    transition: all 0.5s ease;
    animation: gradient-border 3s ease infinite;
    opacity: 0.7;
}

@keyframes gradient-border {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.transfer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 106, 61, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.transfer-card:hover::before {
    background-size: 200% 200%;
    animation: gradient-border 1.5s ease infinite;
    opacity: 1;
    box-shadow: 
        0 0 20px rgba(29, 106, 61, 0.4),
        0 0 40px rgba(167, 107, 61, 0.3);
}

.transfer-card:hover::after {
    opacity: 1;
}

.transfer-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(29, 106, 61, 0.1),
        0 0 40px rgba(29, 106, 61, 0.1);
    border-color: rgba(29, 106, 61, 0.3);
}

.transfer-card.featured {
    border: 2px solid var(--accent);
    position: relative;
    background: linear-gradient(to bottom, rgba(167, 107, 61, 0.02) 0%, rgba(255, 255, 255, 1) 15%);
}

.transfer-card.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(167, 107, 61, 0.3);
}

.transfer-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.05) 0%, rgba(167, 107, 61, 0.05) 100%);
}

.transfer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.transfer-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.transfer-card:hover .transfer-image::after {
    opacity: 1;
}

.transfer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) saturate(1);
    will-change: transform;
}

.transfer-card:hover .transfer-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) saturate(1.2);
}

.transfer-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(29, 106, 61, 0.15);
    border: 1px solid rgba(29, 106, 61, 0.1);
    transition: all 0.3s ease;
}

.transfer-card:hover .transfer-badge {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.transfer-card:hover .transfer-badge i {
    color: var(--gold);
}

.transfer-badge i {
    color: var(--accent);
    transition: color 0.3s ease;
}

.transfer-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.transfer-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(29, 106, 61, 0.25);
    transition: all 0.4s ease;
}

.transfer-card:hover .transfer-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(167, 107, 61, 0.35);
}

.transfer-icon i {
    font-size: 26px;
    color: var(--white);
}

.transfer-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
}

.transfer-content h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.transfer-card:hover .transfer-content h3 {
    color: var(--accent);
    transform: scale(1.02);
}

.transfer-card:hover .transfer-content h3::after {
    width: 60%;
}

.transfer-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.transfer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.transfer-features li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.transfer-features li:hover {
    padding-left: 8px;
    color: var(--primary);
}

.transfer-features li i {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.1) 0%, rgba(74, 222, 128, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 10px;
    flex-shrink: 0;
}

.transfer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 22px;
    border-top: 2px solid rgba(29, 106, 61, 0.08);
    gap: 15px;
}

.transfer-price {
    display: flex;
    flex-direction: column;
}

.transfer-price .from {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.transfer-price .price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 4px 0;
    transition: all 0.4s ease;
    animation: price-shimmer 3s ease-in-out infinite;
}

.transfer-card:hover .transfer-price .price {
    font-size: 36px;
    animation: price-shimmer 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(29, 106, 61, 0.2));
}

.transfer-price .per {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

.transfer-footer .btn {
    flex-shrink: 0;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(29, 106, 61, 0.25);
    transition: all 0.3s ease;
}

.transfer-footer .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(167, 107, 61, 0.35);
}

.transfer-price .per {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

.transfer-footer .btn {
    flex-shrink: 0;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(29, 106, 61, 0.25);
    transition: all 0.3s ease;
}

.transfer-footer .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(167, 107, 61, 0.35);
}

/* Responsive adjustments for transfers */
@media (max-width: 768px) {
    .transfer-image {
        height: 200px;
    }
    
    .transfer-content {
        padding: 20px;
    }
    
    .transfer-content h3 {
        font-size: 19px;
    }
    
    .transfer-price .price {
        font-size: 26px;
    }
    
    .transfer-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .transfer-footer .btn {
        width: 100%;
        text-align: center;
    }
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.destination-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.destination-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.destination-item i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 15px;
    transition: var(--transition);
}

.destination-item:hover i {
    color: var(--white);
}

.destination-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.destination-item:hover h4 {
    color: var(--white);
}

.destination-item p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    transition: var(--transition);
}

.destination-item:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Quick CTA Section */
.quick-cta {
    padding: 60px 0;
    background: var(--gray-50);
}

.quick-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 40px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    gap: 30px;
}

.quick-cta-text h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.quick-cta-text p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* ================================
   DETAIL PAGES LAYOUT
   ================================ */
/* ================================
   TRANSFER DETAIL PAGE - Tipografía Mejorada
   ================================ */
.transfer-detail-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(249, 250, 251, 0.5) 50%,
        rgba(255, 255, 255, 1) 100%);
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(29, 106, 61, 0.08);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.detail-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0.3;
    animation: gradient-border 3s ease infinite;
}

/* Detail Gallery */
.detail-gallery {
    margin-bottom: 40px;
}

.detail-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
}

.detail-section-title i {
    color: var(--accent);
    font-size: 22px;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.detail-gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1;
}

.detail-gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.detail-gallery-item:hover img {
    transform: scale(1.1);
}

.detail-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.detail-gallery-item:hover .detail-gallery-overlay {
    opacity: 1;
}

.detail-gallery-overlay i {
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Detail Description */
.detail-description {
    margin-bottom: 40px;
}

.detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 16px;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.9;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

/* Detail Features */
.detail-features {
    margin-bottom: 40px;
}

.detail-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
}

.detail-subtitle i {
    color: var(--accent);
    font-size: 24px;
}

.detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.9) 100%);
    border-radius: 14px;
    border: 2px solid rgba(29, 106, 61, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.detail-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 106, 61, 0.08), transparent);
    transition: left 0.5s ease;
}

.detail-feature-item:hover::before {
    left: 100%;
}

.detail-feature-item:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.05) 0%, rgba(167, 107, 61, 0.05) 100%);
    box-shadow: 0 4px 16px rgba(29, 106, 61, 0.1);
}

.detail-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.1), rgba(167, 107, 61, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.detail-feature-item:hover .detail-feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.detail-feature-icon i {
    color: var(--accent);
    font-size: 18px;
    transition: color 0.3s ease;
}

.detail-feature-item:hover .detail-feature-icon i {
    color: var(--white);
}

.detail-feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.detail-feature-item:hover .detail-feature-text {
    color: var(--primary);
    font-weight: 600;
}

/* Detail Service Info */
.detail-service-info {
    margin-bottom: 40px;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid rgba(29, 106, 61, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.detail-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 106, 61, 0.05), transparent);
    transition: left 0.6s ease;
}

.detail-info-card:hover::before {
    left: 100%;
}

.detail-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 
        0 8px 24px rgba(29, 106, 61, 0.15),
        0 0 0 3px rgba(29, 106, 61, 0.1);
}

.detail-info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.1), rgba(167, 107, 61, 0.1));
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.detail-info-card:hover .detail-info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 4px 16px rgba(29, 106, 61, 0.3);
}

.detail-info-icon i {
    color: var(--primary);
    font-size: 26px;
    transition: all 0.3s ease;
}

.detail-info-card:hover .detail-info-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.detail-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 1;
}

.detail-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.detail-info-card:hover .detail-info-text {
    color: var(--gray-700);
    font-weight: 600;
}

.detail-sidebar {
    position: sticky;
    top: 120px;
}

.booking-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(29, 106, 61, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0.4;
    animation: gradient-border 3s ease infinite;
}

.booking-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.booking-price {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.05) 0%, rgba(167, 107, 61, 0.05) 100%);
    border-radius: 18px;
    margin-bottom: 28px;
    border: 2px solid rgba(29, 106, 61, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.booking-price:hover::before {
    left: 100%;
}

.booking-price .from {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.booking-price .amount {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin: 8px 0;
    letter-spacing: -1px;
}

.booking-price .per {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    display: block;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Booking Total */
.booking-total {
    margin-bottom: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.08) 0%, rgba(167, 107, 61, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(29, 106, 61, 0.15);
}

.booking-total-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.2px;
}

.booking-total-price {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Tour Detail Specific Styles */
.tour-detail-section {
    padding: 60px 0;
}

.tour-info {
    position: relative;
}

/* Price display in booking card */
.booking-price .amount {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    letter-spacing: -1px;
}

/* Related Tours Section */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tour-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 20px;
}

.tour-meta {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.tour-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.tour-price .price {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Booking Buttons */
.btn-booking {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.btn-booking i {
    font-size: 18px;
}

.booking-whatsapp {
    margin-top: 24px;
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid rgba(29, 106, 61, 0.1);
}

.booking-whatsapp-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(29, 106, 61, 0.15);
    border-radius: 12px;
    background: var(--white);
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 106, 61, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.booking-info {
    margin-bottom: 25px;
}

.booking-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.booking-info-item:last-child {
    border-bottom: none;
}

.booking-info-item strong {
    color: var(--gray-700);
    font-weight: 600;
}

.booking-info-item span {
    color: var(--gray-600);
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive para Transfer Detail */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-content {
        padding: 32px;
    }
    
    .detail-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .detail-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transfer-detail-section {
        padding: 60px 0;
    }
    
    .detail-content {
        padding: 24px;
    }
    
    .detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-subtitle {
        font-size: 20px;
    }
    
    .detail-text {
        font-size: 16px;
    }
    
    .booking-card {
        padding: 24px;
    }
    
    .booking-price .amount {
        font-size: 40px;
    }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .flipbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .excursions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .tours-filters {
        padding: 16px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Ajuste de CTA en tablets */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 30px;
    }
    
    /* Transfers en tablets */
    .transfers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-cta-content {
        padding: 35px 40px;
    }
}

/* Responsive mejorado para header */
@media (max-width: 991px) {
    .header-inner {
        gap: 16px !important;
        padding: 12px 0 !important;
        min-height: 70px !important;
    }
    
    .logo-badge {
        width: 64px !important;
        height: 64px !important;
    }
    
    .logo-badge img {
        width: 48px !important;
        height: 48px !important;
    }
    
    .brand-text span {
        font-size: 1.1rem !important;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(29, 106, 61, 0.99), rgba(20, 72, 40, 0.99)) !important;
        backdrop-filter: blur(20px);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        gap: 4px !important;
        width: 100%;
    }
    
    .main-nav a {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        border-radius: 10px !important;
    }
    
    .btn-whatsapp {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
    }
    
    .btn-whatsapp span {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(29, 106, 61, 0.99), rgba(20, 72, 40, 0.99)) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        padding: 20px;
    }
    
    .main-nav.active ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav.active ul li {
        border-bottom: 1px solid var(--gray-200);
    }
    
    .main-nav.active ul a {
        display: block;
        padding: 15px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Secciones con padding reducido en móvil */
    .steps-section,
    .flipbox-section,
    .excursions-section,
    .transport-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-content .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .flipbox-grid {
        grid-template-columns: 1fr;
    }
    
    .flipbox {
        height: auto;
        min-height: 280px;
    }
    
    .flipbox-inner {
        transform: none !important;
    }
    
    .flipbox-front,
    .flipbox-back {
        position: relative;
        backface-visibility: visible;
        transform: none;
    }
    
    .flipbox-back {
        display: none;
    }
    
    .flipbox:hover .flipbox-back {
        display: flex;
    }
    
    .flipbox:hover .flipbox-front {
        display: none;
    }
    
    .excursions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tours-filters {
        padding: 12px;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .filter-btn span {
        display: none;
    }
    
    .filter-btn i {
        margin: 0;
    }
    
    .excursion-card .card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .card-price-wrapper {
        text-align: center;
    }
    
    .excursion-card .card-price {
        font-size: 28px;
    }
    
    .card-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .card-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Ajustes de tarjetas de excursiones en móvil */
    .excursion-card .card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .excursion-card .card-price {
        text-align: center;
        font-size: 24px;
    }
    
    .excursion-card .card-footer .btn {
        width: 100%;
    }
    
    /* Transfers en móvil */
    .transfers-section {
        padding: 60px 0;
    }
    
    .transfers-grid {
        grid-template-columns: 1fr;
    }
    
    .transfer-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .transfer-price {
        text-align: center;
    }
    
    .transfer-footer .btn {
        width: 100%;
    }
    
    /* Destinations en móvil */
    .destinations-section {
        padding: 60px 0;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-item {
        padding: 25px 15px;
    }
    
    .destination-item i {
        font-size: 28px;
    }
    
    .destination-item h4 {
        font-size: 14px;
    }
    
    .destination-item p {
        font-size: 12px;
    }
    
    /* Quick CTA en móvil */
    .quick-cta {
        padding: 40px 0;
    }
    
    .quick-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }
    
    .quick-cta-text h3 {
        font-size: 20px;
    }
    
    .quick-cta-text p {
        font-size: 14px;
    }
    
    .quick-cta-content .btn {
        width: 100%;
    }
    
    /* Detail pages en móvil */
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-sidebar {
        position: static;
        order: -1;
    }
    
    .booking-card {
        padding: 25px;
    }
    
    .booking-price {
        padding: 20px;
    }
    
    .booking-price .amount {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-wrapper {
        margin: 0 auto;
    }
    
    .footer-badges {
        align-items: center;
    }
    
    .footer-badge {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-col-title {
        justify-content: center;
    }
    
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================
   PAGE HEADER
   ================================ */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    margin-top: 89px;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 73, 123, 0.85) 0%,
        rgba(10, 73, 123, 0.6) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* ================================
   SOBRE NOSOTROS
   ================================ */
.about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, 
        rgba(29, 106, 61, 0.02) 0%, 
        rgba(255, 255, 255, 0.95) 40%,
        rgba(167, 107, 61, 0.02) 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(29, 106, 61, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 107, 61, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 80px;
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(167, 107, 61, 0.12) 0%, rgba(29, 106, 61, 0.12) 100%);
    border-radius: 30px;
    border: 2px solid rgba(167, 107, 61, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-subtitle:hover::before {
    left: 100%;
}

.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.25;
    letter-spacing: -0.8px;
    position: relative;
    padding-bottom: 20px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: expand-line 1s ease-out 0.5s backwards;
}

@keyframes expand-line {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.85;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.about-pill-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    margin: 32px 0 40px;
    padding: 0;
}

.about-pill-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border-radius: 18px;
    border: 2px solid rgba(29, 106, 61, 0.15);
    padding: 18px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(29, 106, 61, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    line-height: 1.5;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out backwards;
}

.about-pill-list li:nth-child(1) { animation-delay: 0.1s; }
.about-pill-list li:nth-child(2) { animation-delay: 0.2s; }
.about-pill-list li:nth-child(3) { animation-delay: 0.3s; }

.about-pill-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 106, 61, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-pill-list li:hover::before {
    left: 100%;
}

.about-pill-list li:hover {
    transform: translateX(8px) translateY(-2px);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.05) 0%, rgba(167, 107, 61, 0.05) 100%);
    box-shadow: 
        0 8px 24px rgba(29, 106, 61, 0.15),
        0 0 0 3px rgba(29, 106, 61, 0.1);
    color: var(--primary);
}

.about-pill-list i {
    color: var(--accent);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 107, 61, 0.12), rgba(29, 106, 61, 0.12));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-pill-list li:hover i {
    color: var(--primary);
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.2), rgba(167, 107, 61, 0.2));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    padding: 28px 20px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(29, 106, 61, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    isolation: isolate;
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat:nth-child(1) { animation-delay: 0.4s; }
.stat:nth-child(2) { animation-delay: 0.5s; }
.stat:nth-child(3) { animation-delay: 0.6s; }
.stat:nth-child(4) { animation-delay: 0.7s; }

.stat::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-border 3s ease infinite;
}

.stat:hover::before {
    opacity: 0.6;
    animation: gradient-border 1.5s ease infinite;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 0 0 3px rgba(29, 106, 61, 0.15),
        0 0 20px rgba(29, 106, 61, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    font-size: 46px;
    filter: drop-shadow(0 2px 4px rgba(29, 106, 61, 0.2));
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.stat:hover .stat-label {
    color: var(--primary);
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(29, 106, 61, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0.5;
    animation: gradient-border 3s ease infinite;
}

.about-image-frame:hover::before {
    opacity: 0.8;
    animation: gradient-border 1.5s ease infinite;
    box-shadow: 0 0 30px rgba(29, 106, 61, 0.3);
}

.about-image-frame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(29, 106, 61, 0.15);
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(29, 106, 61, 0.2) 0%, 
        rgba(167, 107, 61, 0.1) 50%,
        rgba(29, 106, 61, 0.05) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image-frame:hover::after {
    opacity: 0.6;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1) saturate(1);
}

.about-image-frame:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.about-image-badge {
    position: absolute;
    left: 32px;
    bottom: -40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    border-radius: 20px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(29, 106, 61, 0.1);
    border: 2px solid rgba(29, 106, 61, 0.15);
    padding: 24px 28px;
    max-width: 340px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.about-image-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 16px 50px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(29, 106, 61, 0.2);
    border-color: var(--primary);
}

.badge-title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.about-image-badge:hover .badge-title {
    color: var(--accent);
}

.badge-title i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(29, 106, 61, 0.3);
    transition: all 0.3s ease;
}

.about-image-badge:hover .badge-title i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(29, 106, 61, 0.4);
}

.about-image-badge p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.about-image-badge:hover p {
    color: var(--gray-700);
}

/* ================================
   VALORES Y MISIÓN
   ================================ */
.values-section {
    position: relative;
    padding: 110px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(167, 107, 61, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(18, 66, 40, 0.12) 0%, transparent 40%);
    opacity: 0.7;
}

.values-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid rgba(29, 106, 61, 0.08);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 18px 30px rgba(29, 106, 61, 0.25);
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--primary);
}

.value-card p {
    color: var(--gray-600);
}

.mission-section {
    padding: 110px 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.mission-card {
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(29, 106, 61, 0.1);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.18) 0%, rgba(167, 107, 61, 0.08) 70%);
    opacity: 0;
    transition: var(--transition);
}

.mission-card:hover::after {
    opacity: 1;
}

.mission-card > * {
    position: relative;
    z-index: 1;
}

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 1180px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        justify-content: flex-start;
    }

    .about-image-badge {
        position: relative;
        left: 0;
        bottom: auto;
        margin-top: 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 90px 0 100px;
    }

    .about-pill-list {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-image-frame::after {
        opacity: 0.2;
    }

    .values-section {
        padding: 90px 0;
    }

    .values-grid {
        gap: 20px;
    }
}

@media (max-width: 540px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CONTACTO
   ================================ */
.contact-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, var(--gray-50) 45%, rgba(29, 106, 61, 0.04) 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(167, 107, 61, 0.15) 0%, transparent 55%),
                radial-gradient(circle at 75% 80%, rgba(18, 66, 40, 0.12) 0%, transparent 50%);
    opacity: 0.8;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 255, 248, 0.95) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(29, 106, 61, 0.12);
    padding: 48px 42px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-info::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(29, 106, 61, 0.08);
    top: -80px;
    right: -80px;
}

.contact-intro h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 18px;
}

.contact-intro p {
    color: var(--gray-600);
    margin-bottom: 28px;
}

.contact-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(29, 106, 61, 0.18);
    box-shadow: var(--shadow);
}

.contact-pill i {
    color: var(--accent);
}

.contact-methods {
    display: grid;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(29, 106, 61, 0.08);
    padding: 22px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 16px 30px rgba(29, 106, 61, 0.25);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--accent);
}

.contact-link:hover {
    color: var(--accent-hover);
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-social p {
    color: var(--gray-600);
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 106, 61, 0.12);
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(29, 106, 61, 0.12);
    padding: 48px 44px;
    box-shadow: var(--shadow-xl);
}

.contact-form-header h2 {
    font-size: clamp(30px, 3.6vw, 40px);
    margin-bottom: 14px;
}

.contact-form-note {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid rgba(21, 87, 36, 0.2);
}

.contact-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid rgba(114, 28, 36, 0.2);
}

.contact-form .btn {
    width: 100%;
    margin-top: 6px;
}

.contact-form-disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 18px;
}

.contact-form-disclaimer i {
    color: var(--primary);
}

.quick-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.12) 0%, rgba(167, 107, 61, 0.08) 100%);
}

.quick-cta-content {
    position: relative;
    background: linear-gradient(135deg, rgba(29, 106, 61, 0.92) 0%, rgba(18, 66, 40, 0.88) 100%);
    padding: 48px 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    gap: 32px;
    overflow: hidden;
}

.quick-cta-content::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -70px;
    right: -70px;
}

.quick-cta-text h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.quick-cta-text p {
    color: rgba(255, 255, 255, 0.85);
}

.quick-cta .btn-whatsapp {
    border: none;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.quick-cta .btn-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 1180px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 90px 0;
    }

    .contact-pill-group {
        flex-direction: column;
    }

    .contact-method {
        flex-direction: column;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .quick-cta {
        padding: 70px 0;
    }

    .quick-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .quick-cta .btn {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 34px 24px;
    }

    .contact-pill {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   FORMULARIOS
   ================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================
   MEJORAS RESPONSIVE PARA MÓVILES PEQUEÑOS
   ================================ */

/* Pantallas pequeñas (576px y menores) */
@media (max-width: 576px) {
    /* Container mejorado */
    .container {
        padding: 0 16px;
    }
    
    /* Hero section mejorado */
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(24px, 8vw, 32px) !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Botones mejorados - Tamaño mínimo táctil */
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-small {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    
    /* Secciones con padding optimizado */
    .steps-section,
    .flipbox-section,
    .excursions-section,
    .transport-section,
    .cta-section,
    .about-section,
    .contact-section {
        padding: 50px 0;
    }
    
    /* Títulos de sección */
    .section-title {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    /* Step cards */
    .step-card {
        padding: 30px 20px;
    }
    
    .step-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .step-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Flipbox cards */
    .flipbox {
        min-height: 250px;
    }
    
    .flipbox-front,
    .flipbox-back {
        padding: 25px 20px;
    }
    
    .flipbox-front h4,
    .flipbox-back h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .flipbox-back p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Excursion cards */
    .excursion-card {
        overflow: hidden;
    }
    
    .excursion-card .card-header h3 {
        font-size: 18px;
        padding: 16px;
    }
    
    .excursion-card .card-body {
        padding: 20px;
    }
    
    .excursion-card .card-body p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .excursion-card .card-price {
        font-size: 22px !important;
    }
    
    .excursion-card .card-footer {
        padding: 16px;
        gap: 12px;
    }
    
    /* Transport section */
    .transport-content {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .transport-content h2 {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 20px;
    }
    
    .transport-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .transport-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .transport-image {
        margin-top: 30px;
    }
    
    .transport-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    /* CTA section */
    .cta-content {
        padding: 0 16px;
    }
    
    .cta-content h2 {
        font-size: clamp(22px, 6vw, 28px) !important;
        margin-bottom: 16px;
    }
    
    .cta-content p {
        font-size: 15px !important;
        margin-bottom: 25px;
    }
    
    /* Page header */
    .page-header {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .page-header-content h1 {
        font-size: clamp(24px, 7vw, 32px) !important;
    }
    
    .page-header-content p {
        font-size: 16px;
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom en iOS */
        padding: 12px 16px;
        min-height: 44px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-col-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .footer-contact-item {
        font-size: 14px;
        padding: 10px 0;
    }
}

/* Pantallas muy pequeñas (480px y menores) */
@media (max-width: 480px) {
    /* Container aún más compacto */
    .container {
        padding: 0 12px;
    }
    
    /* Header mejorado */
    .header .header-inner {
        padding: 10px 0 !important;
        min-height: 65px !important;
    }
    
    .header .logo-badge {
        width: 52px !important;
        height: 52px !important;
    }
    
    .header .logo-badge img {
        width: 38px !important;
        height: 38px !important;
    }
    
    .header .brand-text span {
        font-size: 0.9rem !important;
    }
    
    .header .header-actions {
        gap: 6px !important;
    }
    
    .header .btn-cart {
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
    }
    
    .header .mobile-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
    }
    
    .header .mobile-menu-toggle span {
        width: 22px !important;
    }
    
    .header .main-nav {
        top: 65px !important;
        padding: 16px !important;
    }
    
    .header .main-nav a {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    
    /* Hero más compacto */
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(22px, 9vw, 28px) !important;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        padding: 5px 14px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    /* Secciones más compactas */
    .steps-section,
    .flipbox-section,
    .excursions-section,
    .transport-section,
    .cta-section,
    .about-section,
    .contact-section {
        padding: 40px 0;
    }
    
    /* Títulos más pequeños */
    .section-title {
        font-size: clamp(22px, 7vw, 28px);
        margin-bottom: 25px;
    }
    
    /* Step cards más compactos */
    .step-card {
        padding: 25px 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .step-icon img {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .step-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .step-card p {
        font-size: 13px;
    }
    
    /* Flipbox más compacto */
    .flipbox {
        min-height: 220px;
    }
    
    .flipbox-front,
    .flipbox-back {
        padding: 20px 16px;
    }
    
    .flipbox-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .flipbox-icon i {
        font-size: 24px;
    }
    
    .flipbox-front h4,
    .flipbox-back h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .flipbox-back p {
        font-size: 13px;
    }
    
    /* Excursion cards más compactos */
    .excursion-card .card-header h3 {
        font-size: 17px;
        padding: 14px;
    }
    
    .excursion-card .card-body {
        padding: 16px;
    }
    
    .excursion-card .card-body p {
        font-size: 13px;
    }
    
    .excursion-card .card-price {
        font-size: 20px !important;
    }
    
    .excursion-card .card-footer {
        padding: 14px;
    }
    
    /* Transport section */
    .transport-content h2 {
        font-size: clamp(20px, 7vw, 26px);
        margin-bottom: 16px;
    }
    
    .transport-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .transport-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .transport-features li i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    /* CTA section */
    .cta-content {
        padding: 0 12px;
    }
    
    .cta-content h2 {
        font-size: clamp(20px, 7vw, 26px) !important;
    }
    
    .cta-content p {
        font-size: 14px !important;
    }
    
    /* Page header */
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header-content h1 {
        font-size: clamp(22px, 8vw, 28px) !important;
    }
    
    .page-header-content p {
        font-size: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-col-title {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer-contact-item {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .footer-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Pantallas extra pequeñas (375px y menores) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: clamp(20px, 10vw, 26px) !important;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: clamp(20px, 8vw, 26px);
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .step-card,
    .flipbox-front,
    .flipbox-back,
    .excursion-card .card-body {
        padding: 20px 12px;
    }
    
    .cta-content {
        padding: 0 10px;
    }
}

/* Mejoras de accesibilidad táctil para todos los dispositivos móviles */
@media (hover: none) and (pointer: coarse) {
    /* Asegurar que todos los elementos interactivos tengan un tamaño mínimo táctil */
    a,
    button,
    .btn,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mejorar el espaciado entre elementos interactivos */
    .main-nav ul {
        gap: 8px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    /* Mejorar el área táctil de los enlaces */
    .main-nav a {
        padding: 14px 20px;
    }
    
    /* Asegurar que las imágenes no se desborden */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevenir desbordamiento horizontal */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Mejora de legibilidad en móviles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Mejorar contraste y legibilidad */
    p {
        line-height: 1.7;
    }
    
    /* Asegurar que los textos largos se ajusten */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }
}



