:root {
    --color-forest: #062f1a;
    --color-forest-2: #0b4a2a;
    --color-leaf: #1f8f55;
    --color-gold: #c9a56b;
    --color-gold-dark: #978667;
    --color-sand: #faf8f5;
    --color-sand-2: #f0e7d8;
    --color-dark: #24262d;
    --color-ink: #27302c;
    --color-muted: #66746c;
    --color-white: #ffffff;
    --shadow-soft: 0 20px 55px rgba(11, 45, 28, 0.13);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
    --font-body: "Montserrat", Helvetica, Arial, sans-serif;
    --font-serif: "Lora", Georgia, serif;
    --font-script: "Caveat", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-sand);
    line-height: 1.65;
    overflow-x: hidden;
}

main {
    overflow-x: clip;
}

body.nav-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

img,
video {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(201, 165, 107, 0.85);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--color-dark);
    background: var(--color-white);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(72px, 8vw, 120px) 0;
}

.section--sand {
    background:
        radial-gradient(circle at 15% 0%, rgba(201, 165, 107, 0.22), transparent 32%),
        linear-gradient(180deg, #fffaf1 0%, #f5eddf 100%);
}

.section--forest {
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(6, 47, 26, 0.95), rgba(9, 76, 43, 0.94)),
        url("../../mídia/imagens/img_010.webp") center/cover no-repeat;
    overflow: hidden;
}

.section--forest::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, rgba(201, 165, 107, 0.25), transparent 28%);
    pointer-events: none;
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--light {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.section-heading h2,
.contact-content h2 {
    margin: 0 0 18px;
    color: var(--color-ink);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
}

.section-heading--light h2 {
    color: var(--color-white);
}

.section-heading p,
.contact-content p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    overflow-wrap: anywhere;
}

.section-heading--light p {
    color: rgba(255, 255, 255, 0.78);
}

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--color-gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.section-kicker--light {
    color: #ebd7b2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 15px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--large {
    min-height: 58px;
    padding: 19px 30px;
    font-size: 1rem;
}

.btn--primary {
    color: var(--color-dark);
    background: linear-gradient(135deg, #f6c96e, var(--color-gold));
    box-shadow: 0 15px 35px rgba(201, 165, 107, 0.34);
}

.btn--primary:hover {
    box-shadow: 0 20px 45px rgba(201, 165, 107, 0.43);
}

.btn--ghost {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.btn--dark {
    color: var(--color-white);
    background: var(--color-forest);
}

.btn--dark:hover {
    background: var(--color-forest-2);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--color-white);
    transition: background-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(6, 47, 26, 0.08);
    box-shadow: 0 12px 30px rgba(10, 20, 14, 0.08);
    backdrop-filter: blur(18px);
}

.header-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.28s ease;
}

.site-header.is-scrolled .header-topbar,
.site-header.is-open .header-topbar {
    border-color: rgba(6, 47, 26, 0.08);
}

.header-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 20px;
}

.header-topbar__note {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.75);
}

.site-header.is-scrolled .header-topbar__note,
.site-header.is-open .header-topbar__note {
    color: rgba(36, 38, 45, 0.68);
}

.header-topbar__social:empty,
.footer-social:empty {
    display: none;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    padding: 4px;
    overflow: visible;
    border: 1px solid transparent;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.92)) padding-box,
        linear-gradient(135deg, #fff5c9 0%, #d7b36e 38%, #8f6b36 70%, #f6df9e 100%) border-box;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18),
        0 0 0 3px rgba(255, 255, 255, 0.14),
        inset 0 0 0 1px rgba(6, 47, 26, 0.08);
}

.brand__mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(201, 165, 107, 0.45);
    border-radius: inherit;
    box-shadow: inset 0 0 12px rgba(6, 47, 26, 0.08);
}

.brand__mark img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transform: translateY(-1.5%) scale(1.04);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    white-space: nowrap;
}

.brand__text strong {
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.brand__text em {
    margin-top: 2px;
    color: var(--color-gold);
    font-family: var(--font-script);
    font-size: 1.42rem;
    font-style: normal;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    margin-left: auto;
}

.main-nav a {
    position: relative;
    font-size: 0.87rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: border-color 0.28s ease, background-color 0.28s ease;
}

.site-header.is-scrolled .language-switcher,
.site-header.is-open .language-switcher {
    border-color: rgba(6, 47, 26, 0.12);
    background: rgba(6, 47, 26, 0.04);
}

.language-switcher__button {
    width: 38px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    color: currentColor;
    background: transparent;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
    transition: background-color 0.24s ease, color 0.24s ease;
}

.language-switcher__button.is-active {
    color: var(--color-dark);
    background: var(--color-gold);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--color-dark);
    background: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
}

.nav-toggle,
.nav-close {
    display: none;
}

.nav-backdrop {
    display: none;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 154px 0 72px;
    color: var(--color-white);
    overflow: hidden;
    background: var(--color-forest) url("../../mídia/imagens/img_002.webp") center/cover no-repeat;
}

.hero-section__video,
.hero-section__fallback,
.hero-section__overlay {
    position: absolute;
    inset: 0;
}

.hero-section__video {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__fallback {
    z-index: -1;
    background: url("../../mídia/imagens/img_002.webp") center/cover no-repeat;
}

.hero-section__overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 75% 40%, rgba(201, 165, 107, 0.12), transparent 26%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.77) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-section__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: clamp(34px, 8vw, 92px);
}

.hero-section__copy {
    max-width: 850px;
}

.hero-section h1 {
    margin: 0 0 20px;
    color: var(--color-white);
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.hero-section__copy p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.04rem, 2vw, 1.45rem);
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.hero-section__panel {
    display: grid;
    gap: 14px;
}

.hero-stat {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-strong);
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1.1;
}

.hero-stat span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    right: clamp(18px, 3vw, 40px);
    bottom: 32px;
    z-index: 3;
    width: 36px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
}

.hero-scroll span {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-white);
    transform: translateX(-50%);
    animation: mouseWheel 2s ease-in-out infinite;
}

@keyframes mouseWheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 24px); }
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.place-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-dark);
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.place-card:nth-child(4),
.place-card:nth-child(5) {
    min-height: 380px;
}

.place-card--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 742px;
}

.place-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.84) saturate(1.08);
    transition: transform 0.75s ease;
}

.place-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.68) 100%),
        radial-gradient(circle at 18% 82%, rgba(0, 0, 0, 0.28), transparent 46%);
}

.place-card:hover img {
    transform: scale(1.08);
}

.place-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: 28px;
    color: var(--color-white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.place-card:not(.place-card--large) .place-card__content {
    padding: clamp(18px, 1.7vw, 22px);
}

.place-card__content span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.35;
    text-transform: uppercase;
}

.place-card__content h3 {
    margin: 0 0 10px;
    color: var(--color-white);
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
}

.place-card:not(.place-card--large) .place-card__content h3 {
    font-size: clamp(1.18rem, 1.48vw, 1.36rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.place-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    overflow-wrap: normal;
    word-break: normal;
}

.place-card:not(.place-card--large) .place-card__content p {
    font-size: clamp(0.82rem, 1.05vw, 0.9rem);
    line-height: 1.5;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.tour-category-heading {
    grid-column: 1 / -1;
    max-width: 780px;
    margin-top: clamp(18px, 4vw, 44px);
    padding-top: clamp(28px, 5vw, 54px);
    border-top: 1px solid rgba(6, 47, 26, 0.12);
}

.tour-category-heading h3 {
    margin: 0 0 14px;
    color: var(--color-ink);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
}

.tour-category-heading p {
    margin: 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    overflow-wrap: anywhere;
}

.tour-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.tour-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-forest);
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tour-card:hover .tour-card__image img {
    transform: scale(1.04);
}

.tour-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(24px, 4vw, 36px);
}

.tour-card__duration {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-forest);
    background: rgba(31, 143, 85, 0.12);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-card h3 {
    margin: 0 0 12px;
    color: var(--color-dark);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
}

.tour-card p {
    margin: 0 0 22px;
    color: var(--color-muted);
    overflow-wrap: anywhere;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-ink);
    font-size: 0.94rem;
    overflow-wrap: anywhere;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-leaf);
    box-shadow: 0 0 0 5px rgba(31, 143, 85, 0.12);
}

.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(6, 47, 26, 0.09);
}

.tour-card__price {
    color: var(--color-gold-dark);
    font-family: var(--font-serif);
    font-size: 1.34rem;
    font-style: italic;
    font-weight: 700;
    white-space: nowrap;
}

.optional-tours-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(201, 165, 107, 0.18), transparent 30%),
        radial-gradient(circle at 88% 88%, rgba(31, 143, 85, 0.13), transparent 28%),
        var(--color-sand);
}

.optional-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.optional-tour-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(6, 47, 26, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.optional-tour-card::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(31, 143, 85, 0.12);
    box-shadow: 0 0 0 12px rgba(31, 143, 85, 0.06);
}

.optional-tour-card--highlight {
    color: var(--color-white);
    background:
        linear-gradient(135deg, rgba(6, 47, 26, 0.94), rgba(11, 74, 42, 0.9)),
        url("../../mídia/imagens/img_058.webp") center/cover no-repeat;
}

.optional-tour-card h3 {
    position: relative;
    z-index: 1;
    max-width: 82%;
    margin: 0 0 32px;
    color: var(--color-dark);
    font-size: clamp(1.28rem, 2vw, 1.72rem);
    line-height: 1.14;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
}

.optional-tour-card--highlight h3 {
    color: var(--color-white);
}

.optional-tour-card span {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--color-forest);
    background: rgba(31, 143, 85, 0.12);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.optional-tour-card--highlight span {
    color: var(--color-dark);
    background: var(--color-gold);
}

.tour-info-section {
    background:
        radial-gradient(circle at 85% 10%, rgba(31, 143, 85, 0.12), transparent 30%),
        var(--color-white);
}

.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tour-info-card {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(6, 47, 26, 0.08);
    border-radius: var(--radius-md);
    background: #fffaf2;
    box-shadow: var(--shadow-soft);
}

.tour-info-card h3 {
    margin: 0 0 18px;
    color: var(--color-dark);
    font-size: clamp(1.34rem, 2vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.tour-info-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tour-info-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-ink);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.45;
}

.tour-info-list li::before {
    position: absolute;
    top: 0.05em;
    left: 0;
    font-weight: 900;
}

.tour-info-list--check li::before {
    content: "✓";
    color: #16b87a;
}

.tour-info-list--cross li::before {
    content: "×";
    color: #dd2525;
}

.tour-info-list--bag li::before {
    content: "▣";
    color: #16b87a;
}

.tour-info-note {
    max-width: 820px;
    margin: 26px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(31, 143, 85, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 242, 0.92);
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.gallery-section {
    background: var(--color-sand);
}

.media-carousel {
    position: relative;
}

.media-carousel__viewport {
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-radius: var(--radius-lg);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
}

.media-carousel__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.media-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.media-carousel__track {
    display: flex;
    gap: 24px;
    padding: 4px;
}

.media-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    background: #0c1510;
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
}

.media-slide::after {
    content: "↗";
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(6, 47, 26, 0.86);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    font-size: 1.15rem;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.92);
    transition: opacity 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

.media-slide:has(img):hover::after,
.media-slide:has(img):focus-within::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.media-slide img,
.media-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-slide img {
    cursor: zoom-in;
    transition: transform 0.45s ease, filter 0.24s ease;
}

.media-slide:hover img,
.media-slide img:focus-visible {
    filter: brightness(0.92);
    transform: scale(1.035);
}

.media-slide video {
    background: #000;
}

.media-slide video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.42);
}

.media-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(6, 47, 26, 0.88);
    box-shadow: var(--shadow-strong);
    cursor: pointer;
    font-size: 2.1rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background-color 0.24s ease, transform 0.24s ease;
}

.media-carousel__arrow:hover {
    background: var(--color-leaf);
}

.media-carousel__arrow--prev {
    left: -18px;
}

.media-carousel__arrow--next {
    right: -18px;
}

.media-carousel__scrollbar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(420px, 82%);
    margin: 24px auto 0;
    user-select: none;
}

.media-carousel__scrollbar-arrow {
    flex: 0 0 auto;
    width: 0;
    height: 0;
    opacity: 0.62;
}

.media-carousel__scrollbar-arrow--prev {
    border-top: 6px solid transparent;
    border-right: 8px solid #8d8d8d;
    border-bottom: 6px solid transparent;
}

.media-carousel__scrollbar-arrow--next {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #8d8d8d;
}

.media-carousel__scrollbar-track {
    position: relative;
    flex: 1 1 auto;
    height: 8px;
    border-radius: 999px;
    background: rgba(36, 38, 45, 0.12);
    box-shadow: inset 0 0 0 1px rgba(36, 38, 45, 0.04);
    cursor: pointer;
}

.media-carousel__scrollbar-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 52px;
    min-width: 42px;
    height: 34px;
    border-radius: 999px;
    background: #8b8b8b;
    box-shadow: 0 6px 18px rgba(36, 38, 45, 0.2);
    cursor: grab;
    transform: translate3d(0, -50%, 0);
    transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.media-carousel__scrollbar-thumb:hover,
.media-carousel__scrollbar-thumb.is-dragging {
    background: #6f6f6f;
    box-shadow: 0 8px 22px rgba(36, 38, 45, 0.26);
}

.media-carousel__scrollbar-thumb.is-dragging {
    cursor: grabbing;
}

.media-carousel__status {
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    background: rgba(3, 13, 8, 0.9);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox__dialog {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    width: min(1120px, 100%);
    max-height: min(88vh, 860px);
    gap: 14px;
}

.gallery-lightbox__image-wrap {
    display: grid;
    place-items: center;
    min-height: 0;
}

.gallery-lightbox__image {
    width: auto;
    max-width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: #07110c;
    box-shadow: var(--shadow-strong);
}

.gallery-lightbox__button {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: var(--color-white);
    background: rgba(6, 47, 26, 0.9);
    box-shadow: var(--shadow-strong);
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.gallery-lightbox__button:hover {
    background: var(--color-leaf);
    transform: translateY(-1px);
}

.gallery-lightbox__close {
    top: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
    font-size: 2rem;
}

.gallery-lightbox__nav {
    top: 50%;
    width: 54px;
    height: 54px;
    font-size: 2.2rem;
    transform: translateY(-50%);
}

.gallery-lightbox__nav:hover {
    transform: translateY(calc(-50% - 1px));
}

.gallery-lightbox__prev {
    left: -20px;
}

.gallery-lightbox__next {
    right: -20px;
}

.partners-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 12px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: partnerScroll 38s linear infinite;
}

.partner-card {
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 320px);
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.partner-card img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
}

@keyframes partnerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 9px)); }
}

.contact-section {
    background:
        radial-gradient(circle at 0% 15%, rgba(31, 143, 85, 0.12), transparent 30%),
        var(--color-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
    justify-content: center;
}

.contact-content h2 {
    margin-top: 0;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 34px 0;
}

.reservation-form {
    display: grid;
    gap: 12px;
    margin: 34px 0;
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(6, 47, 26, 0.1);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.reservation-form h3 {
    margin: 0 0 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(6, 47, 26, 0.14);
    color: var(--color-dark);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.15;
}

.reservation-form label {
    color: var(--color-muted);
    font-weight: 600;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(6, 47, 26, 0.24);
    border-radius: 8px;
    color: var(--color-ink);
    background: var(--color-white);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reservation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: rgba(102, 116, 108, 0.62);
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    border-color: var(--color-leaf);
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 143, 85, 0.16);
}

.reservation-form__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 2px;
    border: 0;
    border-radius: 8px;
    color: var(--color-white);
    background: #24d366;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.reservation-form__button:hover {
    transform: translateY(-2px);
    background: #1fbd5b;
    box-shadow: 0 14px 30px rgba(36, 211, 102, 0.28);
}

.contact-item {
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid rgba(6, 47, 26, 0.08);
    border-radius: 18px;
    background: #fffaf2;
}

.contact-item strong {
    color: var(--color-forest);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-item span,
.contact-item a {
    color: var(--color-muted);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-item a:hover {
    color: var(--color-leaf);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--color-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(180px, 0.6fr));
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(56px, 7vw, 88px) 0;
}

.brand--footer {
    color: var(--color-white);
}

.footer-brand p {
    max-width: 420px;
    margin: 22px 0 0;
    overflow-wrap: anywhere;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
    overflow-wrap: anywhere;
}

.footer-column h3 {
    margin: 0 0 10px;
    color: var(--color-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 22px;
    padding: 22px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1f2127;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.87rem;
}

.footer-bottom a {
    color: var(--color-gold);
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: var(--color-white);
    background: #24d366;
    box-shadow: 0 18px 38px rgba(36, 211, 102, 0.38);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 24px 48px rgba(36, 211, 102, 0.46);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@media (max-width: 1120px) {
    .main-nav {
        gap: 16px;
    }

    .header-cta {
        display: none;
    }

    .hero-section__content {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero-section__panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .places-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .place-card--large {
        min-height: 520px;
    }
}

@media (max-width: 920px) {
    .header-topbar {
        display: none;
    }

    .header-main {
        min-height: 72px;
    }

    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1003;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: min(420px, 92vw);
        height: 100vh;
        height: 100dvh;
        padding: max(86px, env(safe-area-inset-top)) 26px 30px;
        color: var(--color-white);
        background:
            linear-gradient(180deg, rgba(6, 47, 26, 0.97), rgba(7, 24, 16, 0.98)),
            url("../../mídia/imagens/img_004.webp") center/cover no-repeat;
        border-left: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: -28px 0 78px rgba(0, 0, 0, 0.34);
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.34s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.24s ease, visibility 0.24s ease;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .main-nav a {
        display: flex;
        align-items: center;
        min-height: 58px;
        padding: 14px 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.08);
        font-size: 1.04rem;
        line-height: 1.1;
        text-transform: uppercase;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(10px);
        transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        border-color: rgba(235, 215, 178, 0.54);
        background: rgba(201, 165, 107, 0.2);
        transform: translateX(-2px);
    }

    .main-nav a::after {
        display: none;
    }

    .nav-close {
        position: absolute;
        top: 22px;
        right: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        color: var(--color-dark);
        background: var(--color-gold);
        cursor: pointer;
        font-size: 2rem;
        line-height: 1;
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: 50%;
        color: currentColor;
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        gap: 5px;
        transition: background-color 0.22s ease, transform 0.22s ease;
    }

    .nav-toggle:hover {
        transform: translateY(-1px);
    }

    .site-header.is-scrolled .nav-toggle,
    .site-header.is-open .nav-toggle {
        background: rgba(6, 47, 26, 0.07);
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 0.24s ease, opacity 0.2s ease;
    }

    .nav-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: block;
        background: rgba(0, 0, 0, 0.58);
        backdrop-filter: blur(3px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .tour-grid,
    .optional-tours-grid,
    .tour-info-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .media-slide {
        flex-basis: calc((100% - 24px) / 2);
    }

    .media-carousel__arrow {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .language-switcher__button {
        width: 34px;
        height: 30px;
    }

    .brand__mark {
        width: 48px;
        height: 48px;
    }

    .brand__text strong {
        font-size: 0.88rem;
    }

    .brand__text em {
        font-size: 1.18rem;
    }

    .hero-section {
        min-height: 92vh;
        min-height: 92svh;
        padding-top: 118px;
    }

    .hero-section__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.76) 100%);
    }

    .hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section__panel {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        padding: 18px;
    }

    .hero-scroll {
        display: none;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .place-card,
    .place-card--large {
        grid-column: auto;
        grid-row: auto;
        min-height: 390px;
    }

    .tour-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .media-carousel__track {
        gap: 16px;
        padding-inline: 2px;
    }

    .media-slide {
        flex-basis: 86%;
        aspect-ratio: 4 / 5;
    }

    .media-carousel__arrow {
        display: none;
    }

    .media-slide::after {
        opacity: 1;
        transform: translateY(0) scale(0.88);
    }

    .media-carousel__scrollbar {
        width: min(320px, 88%);
        margin-top: 20px;
    }

    .media-carousel__scrollbar-thumb {
        height: 30px;
    }

    .gallery-lightbox__dialog {
        max-height: 86vh;
    }

    .gallery-lightbox__image {
        max-height: 86vh;
        border-radius: var(--radius-sm);
    }

    .gallery-lightbox__close {
        top: -8px;
        right: -4px;
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox__nav {
        width: 46px;
        height: 46px;
        background: rgba(6, 47, 26, 0.82);
        font-size: 1.9rem;
    }

    .gallery-lightbox__prev {
        left: 6px;
    }

    .gallery-lightbox__next {
        right: 6px;
    }

    .partners-marquee {
        mask-image: none;
    }

    .partners-track {
        animation-duration: 36s;
    }

    .partner-card {
        width: 220px;
        padding: 12px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .header-main {
        gap: 10px;
    }

    .brand__text strong {
        max-width: 118px;
        white-space: normal;
        line-height: 0.95;
    }

    .language-switcher {
        gap: 2px;
        padding: 3px;
    }

    .language-switcher__button {
        width: 30px;
        height: 28px;
        font-size: 0.7rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .section {
        padding: 64px 0;
    }

    .place-card__content {
        padding: 22px;
    }

    .tour-card__body {
        padding: 22px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
