* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --black: #1e293b;
    --beach-sand: #fef3c7;
    --beach-blue: #06b6d4;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header - Removed, logo now in hero section */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8b77e;
    background-image: 
        linear-gradient(rgba(232, 183, 126, 0.6), rgba(232, 183, 126, 0.8)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    padding: 60px 20px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(6, 182, 212, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #e05d33;
    color: var(--white);
    border-color: #e05d33;
}

.btn-primary:hover {
    background: #c94d26;
    border-color: #c94d26;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp i {
    font-size: 20px;
}

.btn-whatsapp {
    margin-bottom: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.hero-locations {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding-top: 40px;
        padding-bottom: 60px;
}

.section-header {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-badge.carretera-shield {
    padding: 0;
    background: transparent;
    border-radius: 0;
    max-height: 420px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

/* About Section */
.about {
    background: #007c8a;
    background-image: linear-gradient(rgba(0, 124, 138, 0.85), rgba(0, 124, 138, 0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Itinerary Section */
.itinerary {
    background: #007c8a;
    background-image: linear-gradient(rgba(0, 124, 138, 0.85), rgba(0, 124, 138, 0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.itinerary-intro {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.timeline-item {
    background: #fef3c7;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-day {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.timeline-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--white);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.timeline-description {
    font-size: 16px;
    color: #1e293b;
    line-height: 1.6;
}

.timeline-description i {
    margin-right: 8px;
    color: #0284c7;
}

/* Accommodation Section */
.accommodation {
    background: #e8b77e;
}

.accommodation-description {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.accommodation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--black);
}

.feature-icon i {
    color: var(--black);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-text {
    font-size: 16px;
    color: var(--text-light);
}

/* Gastronomy Section */
.gastronomy {
    background: #e05d33;
    background-image: linear-gradient(rgba(224, 93, 51, 0.85), rgba(224, 93, 51, 0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.gastronomy-description {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

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

.gastronomy-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.gastronomy-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.gastronomy-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Experiences Section */
.experiences {
    background: #007c8a;
    background-image: linear-gradient(rgba(0, 124, 138, 0.85), rgba(0, 124, 138, 0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

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

.experience-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.experience-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--black);
}

.experience-icon i {
    color: var(--black);
}

.experience-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.experience-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--black);
    color: var(--white);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.experience-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Included Section */
.included {
    background: #e8b77e;
}

.included-intro {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.included-intro strong {
    color: var(--text-dark);
    font-weight: 700;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.included-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.included-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--black);
}

.included-icon i {
    color: var(--black);
}

.included-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.included-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Investment Section */
.investment {
    background: #007c8a;
}

.investment-intro {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: var(--bg-light);
    padding: 40px 30px;
    padding-top: 80px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: visible;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--black);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-moto-image {
    max-width: 140%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-top: -200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: transparent;
    transform: scale(1.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-logo {
        max-height: 70px;
    }
    
    .pricing-moto-image {
        max-width: 100%;
        max-height: 300px;
        margin-top: -150px;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .cta-logo {
        max-height: 50px;
        margin-bottom: 20px;
    }
    
    .pricing-moto-image {
        max-width: 90%;
        max-height: 250px;
        margin-top: -120px;
        transform: scale(0.9);
    }
}

.pricing-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-value {
    margin-bottom: 5px;
}

.pricing-installment {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.pricing-amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pricing-suite {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 30px;
}

.pricing-cash {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.details-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
}

.details-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.details-list {
    list-style: none;
}

.details-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.details-list li:last-child {
    border-bottom: none;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-disclaimer strong {
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    background: #000000;
    color: var(--white);
    text-align: center;
    padding: 100px 20px 40px;
}

.cta-logo {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 40px 20px 60px;
    }
    
    .hero-logo {
        max-height: 60px;
        margin-bottom: 20px;
    }
    
    .section-badge.carretera-shield {
        max-height: 300px;
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    section {
        padding: 40px 0;
    }

    .about,
    .itinerary,
    .experiences,
    .gastronomy {
        background-attachment: scroll;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-block {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-amount {
        font-size: 36px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.timeline-item,
.experience-card,
.included-item,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

