/* ===== Reset básico ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B38E47;   /* dourado da logo */
    --white: #FFFFFF;
    --dark: #0d0d0d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
}

/* ===== Header transparente (fixo no topo) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    /* Grid de 3 colunas: laterais iguais (1fr) garantem o menu no centro exato da página,
       e o column-gap fixa a MESMA distância da marca ao menu e do menu ao idioma */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 110px;
    align-items: center;
    padding: 16px 64px;
    background: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Ao rolar a página, o header ganha um fundo escuro para continuar legível */
.header--scrolled {
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(6px);
    padding-top: 10px;
    padding-bottom: 10px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    /* Encostada no fim da coluna esquerda: fica à esquerda do menu,
       separada dele exatamente pelo column-gap do header */
    justify-self: end;
}

.header__logo {
    height: 56px;
    width: auto;
}

.header__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.header__name--white {
    color: var(--white);
}

.header__name--gold {
    color: var(--gold);
}

/* ===== Menu de navegação ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.nav__link:hover {
    color: var(--gold);
}

/* Link do bloco em que o usuário está */
.nav__link--active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ===== Seletor de idiomas ===== */
.lang {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Início da coluna direita: espelho da marca, mesmo espaçamento até o menu */
    justify-self: start;
}

.lang__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.lang__btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang__btn--active {
    border-color: var(--gold);
    background: rgba(179, 142, 71, 0.25);
    color: var(--gold);
}

.lang__flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: block;
}

/* ===== Hero com vídeo de fundo ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Camada escura leve para dar legibilidade ao conteúdo sobre o vídeo */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
    z-index: 1;
}

/* ===== Conteúdo do hero ===== */
.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
    max-width: 900px;
}

.hero__subtitle {
    margin-top: 18px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

/* Botões de ação */
.hero__actions {
    margin-top: 38px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn--gold {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(179, 142, 71, 0.45);
}

.btn--gold:hover {
    background-color: #c9a35c;
    transform: translateY(-2px);
}

.btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Selos de confiança */
.hero__badges {
    margin-top: 46px;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.hero__badge-icon {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* Indicador de rolagem */
.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 34px;
    height: 34px;
    fill: rgba(255, 255, 255, 0.85);
}

.hero__scroll:hover svg {
    fill: var(--gold);
}

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

/* ===== Blocos de conteúdo ===== */
.block {
    min-height: 100vh;
    width: 100%;
    background-color: var(--white);
}

/* Alternância sutil para diferenciar um bloco do outro durante o desenvolvimento */
.block--alt {
    background-color: #f7f5f0;
}

/* ===== Cabeçalho padrão das seções ===== */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}

.section-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #1c1c1c;
}

.section-header__bar {
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--gold);
    margin-top: 14px;
}

.section-header__subtitle {
    margin-top: 16px;
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 600px;
}

/* ===== Bloco Serviços ===== */
.services {
    background-color: #faf8f4;
    padding: 110px 24px;
}

.services__grid {
    max-width: 1180px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid #eee6d8;
    border-radius: 14px;
    padding: 34px 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    outline: none;
}

.service-card__icon {
    width: 42px;
    height: 42px;
    fill: var(--gold);
}

.service-card__title {
    margin-top: 18px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #1c1c1c;
}

.service-card__desc {
    margin-top: 10px;
    font-size: 0.97rem;
    line-height: 1.6;
    color: #5c5c5c;
    flex-grow: 1;
}

.service-card__link {
    margin-top: 22px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.service-card__link:hover {
    color: #8f6f34;
}

/* ===== Bloco Destinos (mosaico de fotos) ===== */
.destinations {
    padding: 110px 24px;
}

.destinations__grid {
    max-width: 1180px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: 18px;
}

.dest-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.dest-card--big {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-card--tall {
    grid-row: span 2;
}

.dest-card--wide {
    grid-column: span 2;
}

.dest-card__slides {
    position: absolute;
    inset: 0;
}

.dest-card__slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.45s ease;
}

.dest-card__slides img.is-active {
    opacity: 1;
}

.dest-card:hover .dest-card__slides img {
    transform: scale(1.06);
}

/* Bolinhas indicadoras do carrossel */
.dest-card__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dest-card__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.dest-card__dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
}

.dest-card__dot.is-active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Setas de navegação do carrossel */
.dest-card__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.25s ease, background-color 0.25s ease;
}

.dest-card__arrow--prev {
    left: 10px;
}

.dest-card__arrow--next {
    right: 10px;
}

.dest-card__arrow svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.dest-card:hover .dest-card__arrow {
    opacity: 1;
}

.dest-card__arrow:hover {
    background-color: rgba(179, 142, 71, 0.85);
}

/* Gradiente escuro na base para legibilidade do nome */
.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.dest-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    background-color: rgba(179, 142, 71, 0.92);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}

.dest-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 18px 20px 34px; /* espaço extra embaixo para as bolinhas */
}

.dest-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.dest-card__ask {
    display: block;
    margin-top: 6px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dest-card:hover .dest-card__ask {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Bloco Sobre ===== */
.about {
    padding: 110px 24px;
}

.about__content {
    max-width: 1240px;
    margin: 72px auto 0;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 84px;
    align-items: center;
}

.about__photo {
    position: relative;
    aspect-ratio: 3 / 4;
    /* Pilha de fotos: sem recorte para as fotos de trás aparecerem */
    overflow: visible;
}

.about__photo:hover .dest-card__arrow {
    opacity: 1;
}

/* Cada foto vira uma "fotografia impressa": borda branca, cantos suaves e sombra */
.about__photo .dest-card__slides img {
    border-radius: 10px;
    border: 9px solid var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transition: transform 0.75s cubic-bezier(0.22, 0.9, 0.3, 1), opacity 0.5s ease;
}

/* Posições da pilha: 0 = frente, 3 = fundo */
.about__photo img.stack-0 {
    transform: none;
    opacity: 1;
    z-index: 4;
}

.about__photo img.stack-1 {
    transform: rotate(4deg) translate(22px, 12px) scale(0.96);
    opacity: 1;
    z-index: 3;
}

.about__photo img.stack-2 {
    transform: rotate(-3.5deg) translate(-18px, 20px) scale(0.93);
    opacity: 1;
    z-index: 2;
}

.about__photo img.stack-3 {
    transform: rotate(1deg) translate(4px, 26px) scale(0.9);
    opacity: 0;
    z-index: 1;
}

/* Setas e bolinhas acima da pilha */
.about__photo .dest-card__dots,
.about__photo .dest-card__arrow {
    z-index: 5;
}

.about__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #1c1c1c;
}

.about__bio {
    margin-top: 22px;
    font-size: 1.18rem;
    line-height: 1.8;
    color: #4d4d4d;
}

.about__facts {
    margin-top: 36px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about__fact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about__fact-icon {
    width: 40px;
    height: 40px;
    padding: 9px;
    box-sizing: content-box;
    fill: var(--gold);
    background-color: rgba(179, 142, 71, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

.about__fact strong {
    display: block;
    color: #1c1c1c;
    font-size: 1.15rem;
}

.about__fact span {
    color: #6b6b6b;
    font-size: 1.05rem;
}

.about__cta {
    margin-top: 40px;
    align-self: flex-start;
    font-size: 1.15rem;
    padding: 16px 44px;
}

.about__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Linha de fechamento do bloco */
.destinations__more {
    margin-top: 42px;
    text-align: center;
    font-size: 1.1rem;
    color: #5c5c5c;
}

.destinations__more a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    margin-left: 6px;
}

.destinations__more a:hover {
    color: #8f6f34;
}

/* ===== Bloco Contato (tema escuro) ===== */
.contact {
    min-height: auto;
    background-color: #14110c;
    padding: 110px 24px 90px;
}

/* Variante clara do cabeçalho de seção para fundos escuros */
.section-header--light .section-header__title {
    color: var(--white);
}

.section-header--light .section-header__subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.contact__grid {
    max-width: 1020px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 34px 20px;
    border: 1px solid rgba(179, 142, 71, 0.25);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

a.contact__item:hover {
    border-color: var(--gold);
    background-color: rgba(179, 142, 71, 0.08);
    transform: translateY(-4px);
}

.contact__icon {
    width: 40px;
    height: 40px;
    fill: var(--gold);
    margin-bottom: 10px;
}

.contact__item strong {
    color: var(--white);
    font-size: 1.15rem;
}

.contact__item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    /* Impede que o e-mail estoure a largura do card */
    overflow-wrap: anywhere;
}

.contact__cta {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.btn--lg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    padding: 18px 52px;
}

/* Com três botões lado a lado, um pouco mais compactos */
.contact__cta .btn--lg {
    font-size: 1.08rem;
    padding: 16px 32px;
}

.btn--lg svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

/* Botão Seguir no Instagram (gradiente da marca) */
.btn--instagram {
    color: var(--white);
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%);
    box-shadow: 0 4px 20px rgba(221, 42, 123, 0.4);
}

.btn--instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(221, 42, 123, 0.5);
}

/* ===== Rodapé ===== */
.footer {
    background-color: #0d0b08;
    padding: 30px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.footer__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.footer__social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer__social:hover {
    color: var(--gold);
}

.footer__credits {
    margin-top: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Botão flutuante de WhatsApp ===== */
.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 90;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
}

/* ===== Bloco Como Funciona ===== */
.how {
    min-height: auto;
    padding: 110px 24px;
}

.how__steps {
    max-width: 1080px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.how__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Linha tracejada ligando os passos */
.how__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(50% + 60px);
    width: calc(100% - 76px);
    border-top: 2px dashed rgba(179, 142, 71, 0.4);
}

.how__badge {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(179, 142, 71, 0.12);
}

.how__icon {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.how__number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}

.how__step-title {
    margin-top: 22px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #1c1c1c;
}

.how__step-desc {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.65;
    color: #5c5c5c;
    max-width: 300px;
}

/* ===== Botão flutuante de FAQ (canto inferior esquerdo) ===== */
.faq-float {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 90;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background-color: #14110c;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-float:hover {
    transform: scale(1.08);
    background-color: var(--gold);
}

.faq-float svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    transition: fill 0.25s ease;
}

.faq-float:hover svg {
    fill: var(--white);
}

/* ===== FAQ (dentro do modal) ===== */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal .faq__list {
    margin-top: 22px;
}

.faq__item {
    background-color: var(--white);
    border: 1px solid #eee6d8;
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq__item[open],
.faq__item:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
}

.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1c1c1c;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* O "+" gira e vira "×" quando aberto */
.faq__item[open] summary svg {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 24px 22px;
    font-size: 1rem;
    line-height: 1.7;
    color: #5c5c5c;
}

/* ===== Animações de entrada ao rolar ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ===== Menu mobile (hambúrguer) ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Vira um "X" quando aberto */
.nav-toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Modal de detalhes do serviço ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal[hidden] {
    display: none;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 8, 5, 0.65);
    backdrop-filter: blur(4px);
    animation: modal-fade 0.25s ease;
}

.modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;
    background-color: var(--white);
    border-radius: 18px;
    padding: 44px 44px 40px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    animation: modal-pop 0.3s cubic-bezier(0.22, 0.9, 0.3, 1);
}

@keyframes modal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modal-pop {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background-color: #f2ede3;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.modal__close:hover {
    background-color: #e6ddca;
}

.modal__close svg {
    width: 18px;
    height: 18px;
    fill: #6b5a35;
}

.modal__icon svg {
    width: 52px;
    height: 52px;
    fill: var(--gold);
}

.modal__title {
    margin-top: 14px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    color: #1c1c1c;
}

.modal__desc {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4d4d4d;
}

.modal__included {
    margin-top: 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.modal__list {
    margin-top: 14px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal__list li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.5;
    color: #3d3d3d;
}

/* Marcador de check dourado */
.modal__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(179, 142, 71, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B38E47'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
}

.modal__cta {
    margin-top: 34px;
    width: 100%;
    text-align: center;
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
    .header {
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    /* O menu vira um painel escuro que desce abaixo do header */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: rgba(13, 13, 13, 0.96);
        backdrop-filter: blur(8px);
        padding: 10px 0 16px;
    }

    .nav.nav--open {
        display: flex;
    }

    .nav__link {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1.05rem;
        border-bottom: none;
    }

    .nav__link--active {
        border-bottom: none;
    }

    .lang {
        margin-left: auto;
    }

    .how__steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 420px;
    }

    /* Sem linha tracejada quando os passos empilham */
    .how__step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 1000px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .about__content {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 40px;
    }

    .contact__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .services {
        padding: 80px 20px;
    }

    .modal {
        padding: 14px;
    }

    .modal__box {
        padding: 40px 26px 30px;
    }

    .modal__title {
        font-size: 1.6rem;
    }

    .how {
        padding: 80px 20px;
    }

    .wa-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
    }

    .wa-float svg {
        width: 30px;
        height: 30px;
    }

    .faq-float {
        bottom: 18px;
        left: 18px;
        width: 50px;
        height: 50px;
    }

    .faq-float svg {
        width: 27px;
        height: 27px;
    }

    .destinations {
        padding: 80px 16px;
    }

    .destinations__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .dest-card--big,
    .dest-card--wide {
        grid-column: span 1;
    }

    .dest-card--big,
    .dest-card--tall {
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .header__logo {
        height: 42px;
    }

    .header__name {
        font-size: 1.4rem;
    }
}
