* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1B5E20;
    --primary-dark: #0F3D12;
    --primary-light: #E8F5E9;
    --primary-bg: rgba(27, 94, 32, 0.08);
    --accent: #C9A03D;
    --accent-dark: #B8902E;
    --white: #ffffff;
    --gray: #6c7a8e;
    --dark: #1e2a3a;
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --tripadvisor: #00AF87;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05);
    --shadow-md: 0 20px 35px -10px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 50px -15px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}
body { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--dark); background: #faf9f8; scroll-behavior: smooth; display: flex; flex-direction: column; min-height: 100vh; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.2rem; }
.navbar { padding: 0.8rem 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(27,94,32,0.15); transition: var(--transition); z-index: 2000; }
.navbar.scrolled { padding: 0.4rem 0; background: var(--white); box-shadow: var(--shadow-sm); }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--dark); text-decoration: none; }
.navbar-brand img { height: 40px; width: auto; border-radius: 12px; transition: transform 0.3s ease; }
.navbar-brand:hover img { transform: scale(1.05); }
.navbar-brand span { color: var(--primary); }
.nav-link { font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--dark) !important; margin: 0 0.3rem; cursor: pointer; }
.nav-link:hover { color: var(--primary) !important; }
.nav-link.active { color: var(--primary) !important; }
.btn-contact { background: var(--primary); color: var(--white) !important; padding: 0.4rem 1.2rem !important; border-radius: 200px; font-weight: 700; font-size: 0.75rem; text-decoration: none; display: inline-block; }
.btn-contact:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-lang { background: transparent; border: 1px solid var(--primary); color: var(--primary) !important; padding: 0.3rem 1rem !important; border-radius: 200px; font-weight: 600; font-size: 0.7rem; text-decoration: none; display: inline-block; margin-left: 0.5rem; cursor: pointer; transition: var(--transition); }
.btn-lang:hover { background: var(--primary); color: white !important; }
.btn-lang.active { background: var(--primary); color: white !important; }
.hero { height: 70vh; min-height: 500px; background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1549944850-84e00be4203b?q=80&w=2070') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative; }
.hero-content { max-width: 800px; padding: 0 1.5rem; }
.hero-badge { background: rgba(27,94,32,0.9); display: inline-block; padding: 0.3rem 1rem; border-radius: 200px; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; margin-bottom: 1rem; }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 0.8rem; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80px; background: linear-gradient(to top, #faf9f8, transparent); }
.section-padding { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-tag { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 3px; font-size: 0.7rem; background: var(--primary-light); padding: 0.3rem 1rem; border-radius: 200px; display: inline-block; margin-bottom: 0.8rem; }
.card-luxe { background: var(--white); border-radius: 16px; overflow: hidden; transition: var(--transition); height: 100%; cursor: pointer; box-shadow: var(--shadow-sm); position: relative; }
.card-luxe:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-slider { height: 160px; overflow: hidden; position: relative; }
.card-slider img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card-luxe:hover .card-slider img { transform: scale(1.05); }
.card-body { padding: 1rem; text-align: center; }
.card-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.card-body p { font-size: 0.75rem; margin-bottom: 0.3rem; }
.btn-primary-custom { background: var(--primary); color: white; border: none; border-radius: 200px; padding: 0.5rem 1rem; font-weight: 600; font-size: 0.8rem; width: 100%; transition: var(--transition); }
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-reserve-table { background: var(--primary); color: white; border: none; border-radius: 200px; padding: 0.5rem 1rem; font-weight: 600; font-size: 0.75rem; width: 100%; transition: var(--transition); margin-top: 0.5rem; }
.free-badge { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white; padding: 0.3rem 0.8rem; border-radius: 200px; font-weight: 800; font-size: 0.7rem; z-index: 10; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.detail-page { background: #faf9f8; min-height: 100vh; }
.detail-hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 100px 0 50px; color: white; text-align: center; }
.detail-container { margin-top: -40px; position: relative; z-index: 10; }
.detail-card { background: white; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-lg); }
.detail-gallery { padding: 1.5rem; }
.detail-info { padding: 1.5rem; }
.detail-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.info-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.8rem 0; }
.info-badge { background: #f0f9f7; padding: 0.3rem 0.8rem; border-radius: 200px; font-size: 0.8rem; }
.btn-book { background: var(--primary); color: white; border: none; border-radius: 200px; padding: 0.8rem; font-weight: 700; font-size: 0.9rem; width: 100%; transition: var(--transition); }
.btn-wa-outline { background: transparent; border: 2px solid var(--whatsapp); color: var(--whatsapp); border-radius: 200px; padding: 0.7rem; font-weight: 600; font-size: 0.85rem; width: 100%; transition: var(--transition); }
.btn-wa-outline:hover { background: var(--whatsapp); color: white; }
.back-button { display: inline-block; background: rgba(255,255,255,0.2); padding: 0.4rem 1rem; border-radius: 200px; color: white; cursor: pointer; font-size: 0.8rem; }
.taxi-card { background: var(--white); border-radius: 32px; padding: 1.5rem; box-shadow: var(--shadow-lg); }
.form-control-custom { width: 100%; padding: 0.6rem 0.8rem; border-radius: 16px; border: 1px solid #e2e8f0; background: #f8fafc; font-size: 0.85rem; }
.price-display { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.modal-luxe { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); z-index: 5000; align-items: center; justify-content: center; padding: 1rem; }
.modal-luxe.active { display: flex; }
.modal-content { background: var(--white); width: 100%; max-width: 500px; border-radius: 28px; padding: 1.5rem; max-height: 90vh; overflow-y: auto; position: relative; }
.btn-close-custom { position: absolute; top: 0.8rem; right: 0.8rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.price-summary { background: var(--primary-light); border-radius: 16px; padding: 0.8rem; margin: 0.8rem 0; }
.price-row.total { font-weight: 800; color: var(--primary); border-top: 2px solid var(--primary); margin-top: 0.5rem; padding-top: 0.5rem; }
.card-element { border: 1px solid #e2e8f0; border-radius: 16px; padding: 10px; background: white; margin-bottom: 0.8rem; }
.btn-pay { background: var(--primary); color: white; width: 100%; padding: 0.8rem; border-radius: 200px; border: none; font-weight: 700; font-size: 0.9rem; }
.toast-notification { position: fixed; bottom: 80px; right: 20px; background: #10b981; color: white; padding: 0.6rem 1.2rem; border-radius: 200px; font-size: 0.8rem; z-index: 7000; animation: slideInRight 0.3s ease; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.float-wa { position: fixed; bottom: 20px; right: 20px; background: var(--whatsapp); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; box-shadow: 0 8px 25px rgba(37,211,102,0.4); z-index: 1000; text-decoration: none; }
.float-wa:hover { background: #128C7E; transform: scale(1.05); }
.filter-buttons, .resto-filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-btn, .resto-filter-btn { background: #f0f0f0; border: none; border-radius: 200px; padding: 0.4rem 1.2rem; font-weight: 600; font-size: 0.8rem; cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover, .resto-filter-btn.active, .resto-filter-btn:hover { background: var(--primary); color: white; }
.price-tag { position: absolute; top: 10px; right: 10px; background: var(--primary); color: white; padding: 0.2rem 0.6rem; border-radius: 200px; font-weight: 700; font-size: 0.7rem; z-index: 5; }
.info-card { background: white; border-radius: 20px; padding: 1.5rem; height: 100%; box-shadow: var(--shadow-sm); transition: var(--transition); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.info-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.info-list { list-style: none; padding-left: 0; margin-top: 1rem; }
.info-list li { margin-bottom: 0.6rem; padding-left: 1.5rem; position: relative; font-size: 0.85rem; }
.info-list li:before { content: "✓"; color: var(--primary); position: absolute; left: 0; font-weight: bold; }
.weather-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.weather-item { text-align: center; flex: 1; min-width: 60px; background: #f8f9fa; padding: 0.5rem; border-radius: 12px; }
.weather-item .day { font-weight: 700; font-size: 0.7rem; }
.weather-item .temp { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.page-banner { position: relative; height: 35vh; min-height: 250px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: 65px; }
.page-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.65)); z-index: 1; }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-banner p { font-size: 0.9rem; }
.featured-offer-card { background: linear-gradient(135deg, #fff5f5, #ffffff); border: 2px solid var(--accent); }
.benefits-list { background: #f8f9fa; border-radius: 16px; padding: 0.8rem; margin-top: 0.8rem; }
.benefits-list li { font-size: 0.8rem; }
.footer-premium { background: #0a1922; color: #e2e8f0; margin-top: auto; }
.footer-premium .container-footer { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-top { padding: 30px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer-brand { max-width: 250px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.footer-logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--primary); }
.footer-slogan { font-size: 0.75rem; color: #94a3b8; margin-bottom: 15px; line-height: 1.4; }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: #cbd5e1; text-decoration: none; }
.contact-item i { width: 16px; color: var(--primary); font-size: 0.8rem; }
.contact-item:hover { color: var(--primary); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 15px; }
.footer-col h4::after { content: ''; display: block; width: 30px; height: 2px; background: var(--primary); margin-top: 5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { color: #cbd5e1; text-decoration: none; font-size: 0.75rem; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.footer-links li a:hover { color: var(--primary); transform: translateX(3px); }
.social-links { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #cbd5e1; font-size: 1.1rem; transition: all 0.3s; text-decoration: none; }
.social-icon:hover { transform: translateY(-3px); }
.social-icon.instagram:hover { background: var(--instagram); color: white; }
.social-icon.tripadvisor:hover { background: var(--tripadvisor); color: white; }
.social-icon.facebook:hover { background: #1877F2; color: white; }
.social-icon.youtube:hover { background: #FF0000; color: white; }
.payment-section h5 { font-size: 0.7rem; font-weight: 600; color: #94a3b8; margin-bottom: 10px; text-transform: uppercase; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-icons i { color: #94a3b8; font-size: 20px; transition: var(--transition); }
.payment-icons i:hover { color: var(--primary); transform: translateY(-2px); }
.footer-bottom { padding: 15px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.lang-currency { display: flex; gap: 12px; }
.lang-selector, .currency-selector { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 30px; }
.lang-selector i, .currency-selector i { color: var(--primary); font-size: 0.75rem; }
.lang-selector select, .currency-selector select { background: transparent; border: none; color: #e2e8f0; font-size: 0.7rem; cursor: pointer; outline: none; }
.copyright { font-size: 0.7rem; color: #64748b; }
.copyright a { color: #64748b; text-decoration: none; }
.copyright a:hover { color: var(--primary); }
.swiper { width: 100%; border-radius: 24px; overflow: hidden; }
.swiper-slide img { width: 100%; height: 350px; object-fit: cover; }
.swiper-button-next, .swiper-button-prev { color: white; background: rgba(0,0,0,0.5); width: 40px; height: 40px; border-radius: 50%; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px; }
.swiper-pagination-bullet-active { background: var(--primary); }
.caution-badge { font-size: 0.65rem; background: #fff3cd; color: #856404; padding: 2px 6px; border-radius: 12px; display: inline-block; margin-top: 4px; }
.car-features { display: flex; justify-content: center; gap: 8px; margin-top: 6px; font-size: 0.65rem; color: var(--gray); }
.bg-primary-light { background-color: var(--primary-light); }
.about-slider { width: 100%; border-radius: 20px; overflow: hidden; margin-bottom: 1rem; }
.about-slider .swiper-slide img { width: 100%; height: 400px; object-fit: cover; }
.vehicle-card { cursor: pointer; transition: all 0.3s ease; }
.vehicle-card.selected { background: var(--primary-light); border: 2px solid var(--primary); }
.stat-card {
    background: white;
    border: 1px solid rgba(27,94,32,0.1);
    border-radius: 20px;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.about-content .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 1.5rem;
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
}
.slide-caption h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.slide-caption p { font-size: 0.85rem; opacity: 0.9; }
.premium-free-offer {
    background: linear-gradient(135deg, #f8f4e8 0%, #ffffff 100%);
    border-radius: 32px;
    margin: 2rem 0 0 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 160, 61, 0.3);
    overflow: hidden;
}
.premium-free-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}
.premium-free-image {
    flex: 1;
    min-width: 260px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.premium-free-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.premium-free-image:hover img {
    transform: scale(1.03);
}
.premium-free-content {
    flex: 1.5;
}
.premium-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 200px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.premium-free-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.offer-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.offer-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 200px;
    font-size: 0.75rem;
    font-weight: 500;
}
.offer-feature-item i {
    color: var(--primary);
}
.btn-free-offer {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 200px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
}
.btn-free-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,94,32,0.3);
    color: white;
}
.separator-title {
    text-align: center;
    margin: 2rem 0 1rem;
    position: relative;
}
.separator-title span {
    background: #faf9f8;
    padding: 0 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}
.separator-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 0;
}
.separator-title span {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero h1 { font-size: 2rem; }
    .section-padding { padding: 2rem 0; }
    .page-banner h1 { font-size: 1.6rem; }
    .swiper-slide img { height: 250px; }
    .weather-row { gap: 0.3rem; }
    .weather-item { min-width: 50px; }
    .about-slider .swiper-slide img { height: 250px; }
    .social-links { justify-content: center; }
    .about-content .section-title { font-size: 1.6rem; }
    .slide-caption h4 { font-size: 1rem; }
    .slide-caption p { font-size: 0.7rem; }
    .btn-primary-custom, .btn-outline-custom { padding: 10px 20px; font-size: 0.85rem; }
    .premium-free-inner { flex-direction: column; padding: 1.5rem; text-align: center; }
    .premium-free-content h3 { font-size: 1.2rem; }
    .offer-features-grid { justify-content: center; }
    .offer-feature-item { font-size: 0.7rem; padding: 0.3rem 0.8rem; }
    .navbar-brand img { height: 32px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stat-card .stat-number { font-size: 1.4rem; }
    .stat-card div:last-child { font-size: 0.65rem; }
}
