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

/* Paleta do logo Sekai Capadócia 2027 */
:root {
    --logo-laranja: #e87722;
    --logo-laranja-claro: #f59a3d;
    --logo-laranja-escuro: #c45f12;
    --logo-marrom: #4a2c0a;
    --logo-marrom-escuro: #2d1810;
    --logo-marrom-medio: #5c3d1e;
    --logo-bege: #f5e6d3;
    --logo-bege-claro: #faf3ea;
    --primary-color: var(--logo-laranja);
    --primary-dark: var(--logo-marrom-escuro);
    --secondary-color: var(--logo-bege);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --black: var(--logo-marrom-escuro);
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --bg-hero: url('imagens/capadocia-sekai.jpg');
    --bg-about: url('https://images.unsplash.com/photo-1583847268964-b712273e30b5?w=1920&q=80');
    --bg-highlights: url('https://images.unsplash.com/photo-1541432901042-2d8e64e0ecb5?w=1920&q=80');
    --bg-accommodation: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80');
    --bg-included: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1920&q=80');
    --bg-calendar: url('https://images.unsplash.com/photo-1605649487212-47bdab064df7?w=1920&q=80');
    --bg-roteiro: url('imagens/capadocia-sekai-2.jpg');
    --bg-investment: url('https://images.unsplash.com/photo-1582107844590-561063381da9?w=1920&q=80');
}

html {
    scroll-behavior: auto;
    background-color: var(--logo-marrom-escuro);
}

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;
    overflow-y: auto;
    background-color: var(--logo-marrom-escuro);
}

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

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logo-marrom-escuro);
    background-image:
        linear-gradient(rgba(45, 24, 16, 0.82), rgba(45, 24, 16, 0.45)),
        var(--bg-hero);
    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(232, 119, 34, 0.15) 0%, rgba(45, 24, 16, 0) 70%);
}

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

.hero-logo-capadocia {
    max-height: 280px;
    max-width: min(90%, 360px);
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero-logo-experience {
    max-height: 50px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.95;
    color: var(--logo-bege);
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

.hero-locations {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.85;
    color: var(--logo-bege);
}

section {
    padding-top: 40px;
    padding-bottom: 60px;
}

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

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

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

.about,
.highlights,
.accommodation,
.included,
.calendar,
.experiences,
.roteiro-section,
.investment {
    overflow: hidden;
}

.about {
    background: var(--logo-marrom-medio);
    background-image:
        linear-gradient(rgba(74, 44, 10, 0.88), rgba(74, 44, 10, 0.55)),
        var(--bg-about);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-logo-capadocia {
    max-height: 220px;
    max-width: 100%;
    padding: 0;
    background: transparent;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

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

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

.about-text:last-child {
    margin-bottom: 0;
}

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

.stat-item {
    text-align: center;
    padding: 24px 20px;
    background: rgba(74, 44, 10, 0.72);
    border: 1px solid rgba(245, 230, 211, 0.25);
    border-radius: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--logo-laranja-claro);
    margin-bottom: 8px;
}

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

.highlights {
    background: var(--logo-marrom-escuro);
    background-image:
        linear-gradient(rgba(45, 24, 16, 0.9), rgba(45, 24, 16, 0.65)),
        var(--bg-highlights);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

.highlight-icon {
    font-size: 32px;
    color: var(--logo-laranja);
    margin-bottom: 16px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--logo-marrom-escuro);
    line-height: 1.4;
}

.accommodation {
    position: relative;
    background: var(--logo-marrom-medio);
    background-image:
        linear-gradient(rgba(92, 61, 30, 0.9), rgba(74, 44, 10, 0.72)),
        var(--bg-accommodation);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.accommodation-description {
    text-align: center;
    font-size: 18px;
    color: var(--white);
    max-width: 820px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.logistics-card {
    background: var(--logo-bege);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.logistics-icon {
    font-size: 40px;
    color: var(--logo-laranja);
    margin-bottom: 16px;
}

.logistics-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--logo-marrom-escuro);
    margin-bottom: 12px;
}

.logistics-text {
    font-size: 15px;
    color: var(--logo-marrom-medio);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
}

.included {
    position: relative;
    overflow: hidden;
    background-color: var(--logo-laranja-escuro);
    background-image:
        linear-gradient(rgba(232, 119, 34, 0.92), rgba(196, 95, 18, 0.78)),
        var(--bg-included);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.included .section-title,
.included .section-badge,
.included .included-intro {
    color: var(--white);
}

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

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

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

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

.included-icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--logo-laranja);
}

.included-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.not-included {
    margin-top: 40px;
    padding: 28px;
    background: rgba(45, 24, 16, 0.55);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.not-included-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--logo-bege);
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.not-included-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.not-included-list li {
    font-size: 15px;
    color: var(--white);
    padding-left: 24px;
    position: relative;
}

.not-included-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--logo-bege);
    font-weight: 700;
}

.calendar {
    background: var(--logo-marrom-medio);
    background-image:
        linear-gradient(rgba(92, 61, 30, 0.9), rgba(74, 44, 10, 0.7)),
        var(--bg-calendar);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

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

.calendar-card {
    background: var(--logo-bege);
    padding: 28px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.calendar-card:hover {
    transform: translateY(-4px);
    border-color: var(--logo-laranja);
    box-shadow: var(--shadow-lg);
}

.calendar-group {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--logo-laranja-escuro);
    margin-bottom: 10px;
}

.calendar-dates {
    font-size: 22px;
    font-weight: 800;
    color: var(--logo-marrom-escuro);
}

.experiences,
.roteiro-section {
    background: var(--logo-marrom-escuro);
    background-image:
        linear-gradient(rgba(45, 24, 16, 0.88), rgba(45, 24, 16, 0.55)),
        var(--bg-roteiro);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

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

.timeline-item {
    background: var(--logo-bege);
    padding: 28px;
    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: 13px;
    font-weight: 700;
    color: var(--logo-laranja-escuro);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--logo-marrom-escuro);
}

.timeline-description {
    font-size: 15px;
    color: var(--logo-marrom-medio);
    line-height: 1.7;
}

.investment {
    position: relative;
    background: var(--logo-marrom-escuro);
    background-image:
        linear-gradient(rgba(45, 24, 16, 0.92), rgba(45, 24, 16, 0.75)),
        var(--bg-investment);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 60px;
}

.investment .section-header {
    margin-bottom: 30px;
}

.pricing-extra {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.pricing-extra-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 230, 211, 0.15);
    border: 1px solid rgba(245, 230, 211, 0.35);
    color: var(--logo-bege);
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.pricing-extra-item i {
    font-size: 20px;
    color: var(--logo-laranja-claro);
}

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

.pricing-card {
    background: var(--bg-light);
    padding: 40px 30px;
    padding-top: 70px;
    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(--logo-laranja);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-icon {
    font-size: 64px;
    color: var(--logo-laranja);
    margin-bottom: 16px;
}

.pricing-moto-image {
    max-width: 120%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: -50px auto 10px;
    display: block;
}

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

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

.pricing-cash-main {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--logo-marrom-escuro);
    margin-bottom: 8px;
}

.pricing-or {
    font-size: 14px;
    color: var(--text-light);
    margin: 8px 0;
}

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

.pricing-amount {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--logo-laranja-escuro);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 12px 0 24px;
    font-weight: 600;
}

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

.cta {
    background: #1a1a1a;
    color: var(--white);
    text-align: center;
    padding: 80px 20px 50px;
}

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

.cta-tagline {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--logo-laranja-claro);
    margin-bottom: 12px;
    font-weight: 600;
}

.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-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.footer {
    background: var(--logo-marrom-escuro);
    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-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);
}

.language-selector {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    z-index: 1001;
}

.lang-btn {
    background: rgba(45, 24, 16, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lang-btn.active {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.lang-btn img,
.lang-btn svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    display: block;
    object-fit: cover;
}

.flag-icon {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 40px 20px 60px;
    }

    .hero-logo-capadocia {
        max-height: 200px;
    }

    .about::before,
    .highlights::before,
    .accommodation::before,
    .included::before,
    .calendar::before,
    .roteiro-section::before,
    .investment::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    .about::before {
        background: linear-gradient(rgba(74, 44, 10, 0.9), rgba(74, 44, 10, 0.6));
    }

    .highlights::before {
        background: linear-gradient(rgba(45, 24, 16, 0.92), rgba(45, 24, 16, 0.7));
    }

    .accommodation::before {
        background: linear-gradient(rgba(92, 61, 30, 0.92), rgba(74, 44, 10, 0.78));
    }

    .included::before {
        background: linear-gradient(rgba(232, 119, 34, 0.95), rgba(196, 95, 18, 0.85));
    }

    .calendar::before {
        background: linear-gradient(rgba(92, 61, 30, 0.92), rgba(74, 44, 10, 0.75));
    }

    .roteiro-section::before {
        background: linear-gradient(rgba(45, 24, 16, 0.92), rgba(45, 24, 16, 0.65));
    }

    .investment::before {
        background: linear-gradient(rgba(45, 24, 16, 0.95), rgba(45, 24, 16, 0.82));
    }

    .about .container,
    .highlights .container,
    .accommodation .container,
    .included .container,
    .calendar .container,
    .roteiro-section .container,
    .investment .container {
        position: relative;
        z-index: 1;
    }

    section {
        padding: 40px 0;
    }

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

    .pricing-moto-image {
        max-height: 160px;
        margin-top: -30px;
    }

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

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

    .language-selector {
        top: 15px;
    }

    .lang-btn {
        width: 35px;
        height: 35px;
    }
}

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

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

    .pricing-cash-main {
        font-size: 24px;
    }
}
