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

:root {
    --primary-color: #000000;
    --primary-dark: #000000;
    --secondary-color: #000000;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --border-color: #cccccc;
    --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 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url('imagens/snowscat-H3oXiq7_bII-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    padding: 140px 20px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgb(255 255 255 / 0%) 0%, #00bcd44a 100%);
}

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

.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: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

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

.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: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.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-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

/* About Section */
.about {
    background: var(--white);
}

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

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    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: var(--bg-light);
}

.itinerary-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    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: var(--white);
    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: var(--black);
    margin-bottom: 10px;
}

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

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

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

.timeline-description i {
    margin-right: 8px;
    color: var(--black);
}

/* Accommodation Section */
.accommodation {
    background: var(--white);
}

.accommodation-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    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: var(--bg-light);
}

.gastronomy-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    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: var(--white);
}

.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: var(--bg-light);
}

.included-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    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: var(--white);
}

.investment-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    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;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

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

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

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

.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-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;
}

.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-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-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) {
    .header {
        padding: 15px 0;
    }
    
    .logo {
        max-height: 45px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 120px 20px 60px;
    }

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

    section {
        padding: 60px 0;
    }

    .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;
}

