/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C5A55D;
    --primary-dark: #9d834a;
    --dark: #121212;
    --white: #ffffff;
    --green: #10b981;
    --red: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1600&q=60&fm=webp') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    color: white;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.trust-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-item i {
    color: var(--primary);
    font-size: 18px;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(197, 165, 93, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(197, 165, 93, 0.6);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    border-color: var(--primary);
    background: rgba(197, 165, 93, 0.1);
}

.urgency {
    margin-top: 24px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    font-size: 14px;
}

.urgency strong {
    color: #ef4444;
}

/* Offer Section */
.offer-section {
    background: white;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.price-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.price-card.featured {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(197, 165, 93, 0.05), rgba(197, 165, 93, 0.1));
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-route {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-new {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-save {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.price-features i {
    color: var(--green);
    font-size: 16px;
}

.btn-book {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(197, 165, 93, 0.3);
}

/* Social Proof */
.social-proof {
    background: #f9fafb;
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #333;
}

/* Guarantees */
.guarantees {
    background: var(--dark);
    color: white;
    padding: 60px 20px;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    text-align: center;
}

.guarantee-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.guarantee-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-primary {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .trust-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
