/* TraslaSurya - Estilos principales */
:root {
    --navy: #102A44;
    --navy-light: #1a3d5c;
    --navy-dark: #0a1e30;
    --gold: #C0944F;
    --gold-light: #d4ad6a;
    --gold-dark: #a67c3d;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --shadow: 0 4px 24px rgba(16, 42, 68, 0.12);
    --shadow-lg: 0 12px 48px rgba(16, 42, 68, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--navy);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 42, 68, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img {
    height: 56px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--gold); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(192, 148, 79, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 148, 79, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(192, 148, 79, 0.15) 0%, transparent 60%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.hero-content h1 span { color: var(--gold); }

.hero-content .tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .number {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-item .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-card img { max-width: 320px; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ========== CUPONES BANNER ========== */
.cupones-banner {
    position: relative;
    background: linear-gradient(90deg, #b71c1c, #e53935, #ff5252, #e53935, #b71c1c);
    background-size: 200% 100%;
    animation: bannerGlow 4s ease infinite;
    padding: 0;
    overflow: hidden;
    border-bottom: 3px solid #ffeb3b;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.45);
    z-index: 999;
}

.cupones-banner::before {
    content: '🔥 OFERTA';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(90deg, #b71c1c 80%, transparent);
    font-family: var(--font);
    font-weight: 800;
    font-size: 13px;
    color: #ffeb3b;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cupones-banner::after {
    content: '%';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(-90deg, #b71c1c 80%, transparent);
    font-family: var(--font);
    font-weight: 800;
    font-size: 22px;
    color: #ffeb3b;
}

@keyframes bannerGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cupones-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 18px 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.cupones-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    animation: marqueeScroll 40s linear infinite;
    min-width: max-content;
}

.cupones-marquee:hover .cupones-track {
    animation-play-state: paused;
}

.cupon-item {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 17px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cupon-item .codigo {
    background: #ffeb3b;
    color: #b71c1c;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    animation: pulseCodigo 2s ease infinite;
}

.cupon-item .separador {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

@keyframes pulseCodigo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Etiqueta de descuento en sección destinos */
.descuento-destinos-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    margin: 0 auto 32px;
    max-width: 700px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 24px rgba(229, 57, 53, 0.35);
    animation: badgePulse 2.5s ease infinite;
}

.descuento-destinos-badge .badge-icon {
    font-size: 22px;
    animation: shake 1.5s ease infinite;
}

.descuento-destinos-badge .badge-codigos {
    background: #ffeb3b;
    color: #b71c1c;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(229, 57, 53, 0.35); }
    50% { box-shadow: 0 8px 32px rgba(229, 57, 53, 0.55); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

/* ========== SECTIONS ========== */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(192, 148, 79, 0.15);
    color: var(--gold-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 17px;
}

.section-header .precio-nota {
    margin-top: 16px;
    display: inline-block;
    background: rgba(16, 42, 68, 0.06);
    border-left: 4px solid var(--gold);
    padding: 12px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 15px;
    color: var(--navy);
}

.section-header .precio-nota strong {
    color: var(--gold-dark);
}

/* ========== DESTINOS / MAPA ========== */
.destinos-section { background: var(--off-white); }

.destinos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

#map {
    height: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    z-index: 1;
}

.destinos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 8px;
}

.destinos-list::-webkit-scrollbar { width: 6px; }
.destinos-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.destino-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(16, 42, 68, 0.06);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.destino-card:hover,
.destino-card.active {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.destino-card.active {
    border-color: #25D366;
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

.destino-card .destino-solicitar-btn {
    display: none;
    width: 100%;
    margin-top: 4px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.destino-card.active .destino-solicitar-btn {
    display: block;
    animation: slideDown 0.3s ease;
}

.destino-card .destino-solicitar-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== PAGOS ========== */
.pagos-section {
    background: linear-gradient(135deg, #f0faf8 0%, var(--off-white) 100%);
    padding: 80px 0;
}

.pagos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pagos-info .badge {
    display: inline-block;
    background: rgba(37, 170, 170, 0.15);
    color: #1a8a8a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pagos-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}

.pagos-info > p {
    color: var(--gray-600);
    font-size: 17px;
    margin-bottom: 24px;
}

.pagos-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pagos-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.pagos-lista li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.pagos-imagen {
    text-align: center;
}

.pagos-imagen img {
    max-width: 100%;
    max-height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.destino-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.destino-info .route {
    font-size: 13px;
    color: var(--gray-600);
}

.destino-info .route::before {
    content: '📍 Antigua Guatemala → ';
}

.destino-precio {
    text-align: right;
}

.destino-precio .precio {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.destino-precio .precio-original {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.destino-precio .promo-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}

.piloto-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.piloto-card h3 { color: var(--gold); font-size: 18px; }
.piloto-card p { font-size: 14px; opacity: 0.8; }
.piloto-card .precio { font-size: 28px; font-weight: 800; color: var(--gold); }

/* ========== SERVICIOS ========== */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.servicio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.servicio-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(16, 42, 68, 0.08), rgba(192, 148, 79, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.servicio-card h3 { font-size: 20px; margin-bottom: 12px; }
.servicio-card p { color: var(--gray-600); font-size: 15px; }

/* ========== RESEÑAS ========== */
.resenas-section { background: var(--navy); color: var(--white); }
.resenas-section .section-header h2 { color: var(--white); }
.resenas-section .section-header p { color: rgba(255,255,255,0.7); }
.resenas-section .badge { background: rgba(192,148,79,0.2); color: var(--gold); }

.resenas-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.rating-big {
    text-align: center;
}

.rating-big .score {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rating-big .stars { font-size: 24px; color: var(--gold); margin: 8px 0; }
.rating-big .total { font-size: 14px; opacity: 0.7; }

.resenas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resena-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.resena-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.resena-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.resena-text { font-size: 15px; line-height: 1.7; margin-bottom: 16px; font-style: italic; opacity: 0.9; }
.resena-author { font-weight: 700; font-size: 14px; }
.resena-date { font-size: 12px; opacity: 0.5; }

/* ========== CONTACTO ========== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contacto-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contacto-info p { color: var(--gray-600); margin-bottom: 32px; font-size: 17px; }

.contacto-items { display: flex; flex-direction: column; gap: 20px; }

.contacto-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--radius);
}

.contacto-item .icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    transition: var(--transition);
}

.social-facebook {
    background: #1877F2;
}

.social-facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(188, 24, 136, 0.4);
    filter: brightness(1.05);
}

.social-links-footer {
    margin-top: 20px;
}

.social-links-footer .social-btn {
    padding: 10px 16px;
    font-size: 12px;
}

.contacto-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(192, 148, 79, 0.2);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img { height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.8; }

.footer h4 {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

/* ========== CALIFICAR PAGE ========== */
.calificar-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 40px 20px;
}

.calificar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.calificar-card img { height: 80px; margin-bottom: 24px; }

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.star-rating button {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: var(--gray-200);
    transition: var(--transition);
    padding: 4px;
}

.star-rating button:hover,
.star-rating button.active { color: var(--gold); transform: scale(1.15); }

.calificar-card .form-group { text-align: left; }

.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }
.alert-info { background: #d1ecf1; color: #0c5460; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-card { padding: 24px; }
    .hero-logo-card img { max-width: 200px; }
    .destinos-grid { grid-template-columns: 1fr; }
    #map { height: 400px; }
    .destinos-list { max-height: none; }
    .servicios-grid { grid-template-columns: 1fr; }
    .resenas-grid { grid-template-columns: 1fr; }
    .contacto-grid { grid-template-columns: 1fr; }
    .pagos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: block; }
    .hero-stats { grid-template-columns: 1fr; }
    .resenas-summary { flex-direction: column; gap: 24px; }
    section { padding: 60px 0; }

    .cupones-banner::before { font-size: 11px; padding: 0 10px; }
    .cupones-banner::after { font-size: 16px; padding: 0 10px; }
    .cupon-item { font-size: 14px; }
    .cupon-item .codigo { font-size: 12px; padding: 6px 12px; }
    .descuento-destinos-badge { font-size: 13px; padding: 14px 20px; border-radius: 16px; }
    .pagos-grid { grid-template-columns: 1fr; gap: 32px; }
    .pagos-imagen { order: -1; }
    .pagos-imagen img { max-height: 280px; }
}

/* Leaflet custom */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius) !important;
    font-family: var(--font-body) !important;
}

.leaflet-popup-content b { color: var(--navy); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: var(--gray-400);
    font-style: italic;
}
