/* =========================================================================
   TERRA VENTURE - ESTILOS PRINCIPAIS
   ========================================================================= */

:root {
    /* Paleta de Cores Premium (Earthy Tones) */
    --color-moss: #3E5A44;
    /* Verde Musgo */
    --color-sand: #EAE3CA;
    /* Areia */
    --color-terra: #C86b4D;
    /* Terracota */
    --color-offwhite: #F8F7F4;
    /* Branco Off-white (Fundo principal) */
    --color-dark: #1A1A1A;
    /* Quase preto para textos escuros */
    --color-text-light: #F4F1E9;
    /* Texto claro */
    --color-overlay: rgba(26, 26, 26, 0.4);
    /* Overlay para vÃ­deos/fotos */

    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* TransiÃ§Ãµes */
    --transition-fast: 0.3s ease;
    --transition-med: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Sombras */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* =========================================================================
   RESETS & GLOBAL
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-offwhite);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* UtilitÃ¡rios Visuais */
.bg-sand {
    background-color: var(--color-sand);
}

.bg-moss {
    background-color: var(--color-moss);
}

.text-light {
    color: var(--color-text-light) !important;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terra);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-moss);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.text-light .section-title {
    color: var(--color-text-light);
}

.text-light .section-desc {
    color: var(--color-text-light);
    opacity: 0.9;
}

/* =========================================================================
   BOTÃ•ES & LINKS
   ========================================================================= */
/* Botão primário — terracota, pílula, seta que desliza + brilho que varre */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d5744f 0%, #b8563a 100%);
    color: #fff;
    padding: 15px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-transform: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 22px rgba(200, 107, 77, 0.3);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

/* Seta de movimento */
.btn-primary::after {
    content: '\2192';
    font-size: 1.05em;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Brilho que varre no hover */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(200, 107, 77, 0.45);
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-primary:hover::before {
    transform: translateX(130%);
}

.btn-primary.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Botão outline — mesma alma, contorno terracota, preenche no hover */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--color-terra);
    padding: 14px 30px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-transform: none;
    border: 1.5px solid var(--color-terra);
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-outline:hover {
    background: var(--color-terra);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-offwhite);
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
    text-transform: none;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-outline-white:hover {
    background: var(--color-offwhite);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* =========================================================================
   NAVBAR (STICKY GLASSMORPHISM)
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(248, 247, 244, 0.95);
    /* Offwhite com opacidade */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-offwhite);
    /* Branco inicialmente */
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle {
    color: var(--color-moss);
}

.nav-links {
    display: flex;
    gap: 30px;
    clip-path: none;
}

.nav-links a {
    color: var(--color-offwhite);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-offwhite);
    cursor: pointer;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    color: var(--color-offwhite);
    z-index: 10;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-offwhite);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
    opacity: 0.7;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-offwhite);
    border-radius: 4px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* =========================================================================
   BANNER DIFERENCIAL
   ========================================================================= */
.diferencial-banner {
    background: linear-gradient(135deg, var(--color-moss) 0%, #2F4534 100%);
    padding: 25px 0;
    text-align: center;
    margin: 0;
}

.diferencial-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-banner p strong {
    color: var(--color-sand);
}

@media (max-width: 768px) {
    .diferencial-banner {
        padding: 20px 0;
    }

    .diferencial-banner p {
        font-size: 1rem !important;
    }
}

/* =========================================================================
   COMO FUNCIONA (3 PASSOS)
   ========================================================================= */
.como-funciona {
    padding: 100px 0;
    background-color: var(--color-offwhite);
}

.como-funciona .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.como-funciona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.como-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    border-top: 3px solid transparent;
    position: relative;
}

.como-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-terra);
}

.como-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-moss) 0%, #2F4534 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition-fast);
}

.como-card:hover .como-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.como-card h3 {
    color: var(--color-moss);
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.como-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .como-funciona-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .como-funciona {
        padding: 60px 0;
    }

    .como-funciona-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .como-card {
        padding: 30px 20px;
    }

    .como-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .como-card h3 {
        font-size: 1.2rem;
    }
}

/* =========================================================================
   DIFERENCIAIS (Por que a Terra Venture?)
   ========================================================================= */
.sectionenciais {
    padding: 100px 0;
}

.sectionenciais .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    counter-reset: incl;
}

.diferenciais-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .diferenciais-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectionenciais {
        padding: 60px 0;
    }

    .diferenciais-grid.grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferencial-card {
        padding: 30px 20px;
    }

    .diferencial-card h3 {
        font-size: 1.15rem;
    }

    .diferencial-card ul {
        font-size: 0.85rem !important;
    }
}

.diferencial-card {
    position: relative;
    counter-increment: incl;
    background-color: #ffffff;
    padding: 40px 32px 36px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
}

/* Número índice fantasma (01–04) */
.diferencial-card::before {
    content: counter(incl, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 26px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1;
    color: rgba(200, 107, 77, 0.16);
    transition: color 0.45s ease, transform 0.45s ease;
}

/* Barra terracota que cresce no hover */
.diferencial-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(var(--color-terra), #b8563a);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.diferencial-card:hover::after {
    transform: scaleY(1);
}

.diferencial-card:hover::before {
    color: rgba(200, 107, 77, 0.3);
    transform: translateY(-2px);
}

.diferencial-card h3 {
    color: var(--color-moss);
    font-size: 1.35rem;
    margin-bottom: 18px;
    padding-right: 40px;
}

.diferencial-card p {
    color: #555;
    font-size: 0.95rem;
}

.diferencial-card ul li {
    position: relative;
    list-style: none;
}

/* =========================================================================
   QUEM SOMOS (NICHOLAS & GIOVANA)
   ========================================================================= */
.quem-somos {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-offwhite) 0%, var(--color-sand) 100%);
}

.quem-somos-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.quem-somos-img {
    position: relative;
    z-index: 1;
}

/* Moldura terracota deslocada atrás da foto (editorial) */
.quem-somos-img::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translate(20px, 20px);
    border: 2px solid var(--color-terra);
    border-radius: 18px;
    z-index: -1;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quem-somos-img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
    box-sizing: border-box;
    display: block;
}

.quem-somos-img:hover img {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.24);
}

.quem-somos-img:hover::before {
    transform: translate(12px, 12px);
}

.quem-somos-content .lead-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-terra);
    margin: 1rem 0 1.5rem;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .quem-somos-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .quem-somos {
        padding: 60px 0;
    }

    .quem-somos-wrapper {
        gap: 30px;
    }

    .quem-somos-img img {
        border-radius: 12px;
    }

    /* Moldura menor no mobile pra não vazar */
    .quem-somos-img::before {
        transform: translate(10px, 10px);
        border-radius: 12px;
    }

    .quem-somos-img:hover::before {
        transform: translate(6px, 6px);
    }

    .quem-somos-content .section-title {
        font-size: 1.8rem;
    }

    .quem-somos-content .lead-text {
        font-size: 1.15rem;
        margin: 0.75rem 0 1rem;
    }

    .quem-somos-content p {
        font-size: 0.95rem;
    }
}

/* =========================================================================
   DESTINOS EM DESTAQUE
   ========================================================================= */
.destinos {
    padding: 100px 0;
}

.destinos-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destino-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.destino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destino-card:hover img {
    transform: scale(1.08);
}

/* Badge de intensidade da aventura (montanhas 1-5, sem preço) */
.adv-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: flex;
    gap: 3px;
    align-items: center;
    padding: 6px 11px;
    border-radius: 20px;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.adv-badge i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.32);
}

.adv-badge i.on {
    color: var(--color-sand);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.destino-card:hover .card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(62, 90, 68, 0.9) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    /* Moss gradient on hover */
}

.card-content {
    color: white;
    width: 100%;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition-med);
}

.card-content p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-med);
    transition-delay: 0.1s;
    margin-bottom: 15px;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-sand);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-med);
    transition-delay: 0.2s;
}

.destino-card:hover .card-content h3,
.destino-card:hover .card-content p,
.destino-card:hover .explore-link {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================================================
   A EXPERIÃŠNCIA (CONSULTORIA)
   ========================================================================= */
.experiencia-nova {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.consultoria-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.storytelling-center {
    margin-top: 30px;
}

.storytelling-center .lead {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-terra);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.storytelling-center p:not(.lead) {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.consultoria-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0;
    background: var(--color-moss);
    transition: height 0.4s ease;
    z-index: -1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-card:hover::before {
    height: 100%;
}

.step-card .step-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 107, 77, 0.1);
    color: var(--color-terra);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.step-card h3 {
    font-family: var(--font-heading);
    color: var(--color-moss);
    font-size: 1.25rem;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.step-card:hover h3 {
    color: white;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.step-card:hover p {
    color: rgba(255,255,255,0.9);
}

.consultoria-cta {
    margin-top: 50px;
}

.storytelling {
    margin-bottom: 2rem;
}

.storytelling .lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-terra);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.storytelling p {
    margin-bottom: 1rem;
    color: #444;
}

/* Removed .process-list */

/* =========================================================================
   NOSSA HISTÃ“RIA (Origin Story)
   ========================================================================= */
.nossa-historia {
    padding: 120px 0;
    background: linear-gradient(175deg, var(--color-offwhite) 0%, var(--color-sand) 100%);
    overflow: hidden;
}

.historia-layout {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.historia-timeline-line {
    position: absolute;
    top: 0;
    left: 28px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--color-terra) 10%,
            var(--color-moss) 50%,
            var(--color-terra) 90%,
            transparent 100%);
    opacity: 0.25;
}

.historia-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.historia-header .section-title {
    font-size: 2.6rem;
}

.historia-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.historia-block {
    position: relative;
    padding-left: 72px;
}

.historia-icon {
    position: absolute;
    left: 8px;
    top: 2px;
    width: 42px;
    height: 42px;
    background-color: var(--color-offwhite);
    border: 2px solid var(--color-moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-moss);
    font-size: 0.95rem;
    z-index: 1;
    transition: var(--transition-fast);
}

.historia-block:hover .historia-icon {
    background-color: var(--color-moss);
    color: var(--color-offwhite);
    transform: scale(1.1);
}

.historia-lead {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--color-terra);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.historia-block p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 1.02rem;
}

.historia-block p:last-child {
    margin-bottom: 0;
}

.historia-block strong {
    color: var(--color-moss);
    font-weight: 600;
}

.historia-block em {
    font-style: italic;
    color: var(--color-terra);
}

/* Highlighted "Minha MotivaÃ§Ã£o" block */
.historia-destaque {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 2rem 2rem 72px;
    border-radius: 12px;
    border-left: 4px solid var(--color-terra);
    box-shadow: var(--shadow-sm);
}

.historia-destaque h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-moss);
    margin-bottom: 0.75rem;
}

/* Values list */
.historia-valores {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.historia-valores li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.02rem;
    color: #444;
    line-height: 1.6;
}

.historia-valores li i {
    color: var(--color-terra);
    background: rgba(200, 107, 77, 0.1);
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Closing statement */
.historia-fecho {
    text-align: center;
    max-width: 640px;
    margin: 1rem auto 0;
    padding: 2.5rem 2rem;
    position: relative;
}

.historia-fecho::before {
    content: 'â€”';
    display: block;
    font-size: 1.5rem;
    color: var(--color-terra);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.historia-fecho p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-moss);
    line-height: 1.8;
}

.historia-fecho strong {
    color: var(--color-terra);
    font-weight: 600;
}



/* =========================================================================
   CONTATO / BRIEFING
   ========================================================================= */
.contato {
    padding: 100px 0;
    background-color: #fff;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background-color: var(--color-offwhite);
    border-radius: 12px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--color-terra);
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.detail-item h5 {
    margin: 0 0 5px 0;
    font-family: var(--font-body);
    color: var(--color-moss);
}

.detail-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-moss);
}

input,
textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background-color: white;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: #bbb;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-terra);
    box-shadow: 0 0 0 3px rgba(200, 107, 77, 0.1);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.instagram-feed {
    background-color: #111;
    padding: 40px 0;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.instagram-header h4 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
}

.ig-link {
    color: var(--color-terra);
    font-weight: 600;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ig-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.ig-grid img:hover {
    filter: brightness(0.7);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    color: var(--color-sand);
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    max-width: 300px;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--color-sand);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #aaa;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-terra);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

/* =========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    background-color: #1EB855;
    transform: scale(1.1);
    color: white;
}

/* Tooltip humanizado do botão WhatsApp */
.whatsapp-float::after {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background-color: var(--color-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    right: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    border: 8px solid transparent;
    border-left-color: var(--color-dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.whatsapp-float:hover::after,
.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================================================
   ANIMAÃ‡Ã•ES & SCROLL REVEAL (CSS INIT)
   ========================================================================= */
.scroll-reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.img-reveal {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
    visibility: visible;
}

.img-reveal.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* =========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================= */
@media (max-width: 1024px) {
    .destinos-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiencia-grid {
        gap: 40px;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .navbar {
        background-color: rgba(248, 247, 244, 0.98);
        padding: 15px 0;
    }

    .navbar .logo,
    .navbar .menu-toggle {
        color: var(--color-moss);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-offwhite);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a {
        color: var(--color-moss);
    }

    .nav-btn {
        display: none;
        /* Hide primary button on mobile nav bar, show in menu if desired */
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .experiencia-grid {
        grid-template-columns: 1fr;
    }

    .experiencia-img {
        height: 400px;
        order: 2;
    }

    .nossa-historia {
        padding: 80px 0;
    }

    .historia-timeline-line {
        display: none;
    }

    .historia-block {
        padding-left: 0;
    }

    .historia-icon {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 1rem;
    }

    .historia-destaque {
        padding-left: 2rem;
    }

    .historia-header .section-title {
        font-size: 2rem;
    }

    .historia-lead {
        font-size: 1.25rem;
    }

    .historia-fecho p {
        font-size: 1.15rem;
    }

    .experiencia-content {
        order: 1;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ig-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .destinos-gallery {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================================
   BLOG â€” LISTAGEM & ARTIGOS
   ========================================================================= */

/* Blog Listing Page */
.blog-hero {
    padding: 160px 0 80px;
    background: linear-gradient(175deg, var(--color-moss) 0%, #2F4534 100%);
    text-align: center;
    color: var(--color-offwhite);
}

.blog-hero .section-title {
    color: var(--color-offwhite);
    font-size: 3rem;
}

.blog-hero .section-desc {
    color: var(--color-sand);
    opacity: 0.9;
    margin: 0 auto;
}

.blog-listing {
    padding: 80px 0;
    background-color: var(--color-offwhite);
}

.blog-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Styling */
.blog-sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 25px;
    font-weight: 600;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 8px;
    color: var(--color-moss);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
    width: 100%;
}

.filter-btn i {
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background-color: rgba(62, 90, 68, 0.05);
    border-color: var(--color-moss);
}

.filter-btn.active {
    background-color: #0078D4;
    /* Azul conforme referÃªncia */
    color: white;
    border-color: #0078D4;
}

.filter-btn.active i {
    opacity: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas agora que tem sidebar */
    gap: 30px;
}

.blog-card.hidden {
    display: none;
}

.blog-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-med);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-terra);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card-body h3 {
    font-size: 1.25rem;
    color: var(--color-moss);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-card-body h3 {
    color: var(--color-terra);
}

.blog-card-body p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-terra);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.blog-read-more i {
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* Blog Article Page */
.article-hero {
    height: 55vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.article-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    color: var(--color-offwhite);
    width: 100%;
}

.article-hero-content .blog-tag {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
}

.article-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    max-width: 800px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.article-meta i {
    margin-right: 6px;
}

/* Blog breadcrumb */
.blog-breadcrumb {
    padding: 20px 0;
    background-color: var(--color-sand);
    font-size: 0.88rem;
}

.blog-breadcrumb a {
    color: var(--color-terra);
    font-weight: 500;
}

.blog-breadcrumb span {
    color: #999;
    margin: 0 8px;
}

.blog-breadcrumb .current {
    color: var(--color-moss);
    font-weight: 500;
}

/* Article body */
.article-body {
    padding: 60px 0 80px;
    background-color: var(--color-offwhite);
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--color-moss);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-sand);
}

.article-content h3 {
    font-size: 1.35rem;
    color: var(--color-moss);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #444;
}

.article-content li {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content .lead-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-terra);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-terra);
}

.article-content strong {
    color: var(--color-moss);
    font-weight: 600;
}

/* Tip/highlight box inside articles */
.article-tip {
    background: linear-gradient(135deg, rgba(62, 90, 68, 0.06) 0%, rgba(200, 107, 77, 0.06) 100%);
    border-left: 4px solid var(--color-terra);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.article-tip h4 {
    color: var(--color-terra);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.article-tip p {
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, var(--color-moss) 0%, #2F4534 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    color: var(--color-offwhite);
}

.article-cta h3 {
    color: var(--color-sand);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta .btn-primary {
    background-color: var(--color-terra);
}

.article-cta .btn-primary::before {
    background-color: #a8533b;
}

/* =========================================================================
   EXPLORADOR GLOBAL INTERATIVO (MAPA)
   ========================================================================= */

.map-explorer-section {
    padding: 100px 0;
    background-color: var(--color-offwhite);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #f0ede9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#map-main {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom Zoom Controls */
.map-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.map-controls button {
    width: 44px;
    height: 44px;
    background-color: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    color: var(--color-moss);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-controls button:hover {
    background-color: var(--color-moss);
    color: white;
    transform: translateY(-2px);
}

/* Custom Marker */
.custom-marker {
    background-color: var(--color-terra);
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 15px var(--color-terra);
    cursor: pointer;
}

/* Preview Card (Floating/Tooltip) */
.map-preview-card {
    position: fixed;
    /* Segue o mouse */
    width: 300px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    pointer-events: none;
    /* NÃ£o atrapalha o mouse */
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.map-preview-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.map-preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 16px;
    z-index: 1;
}

.map-preview-card h3 {
    color: white;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Leaflet Overrides */
.leaflet-container {
    background: #f0ede9 !important;
}

.leaflet-control-zoom {
    display: none !important;
    /* Usamos nossos controles customizados */
}

.leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255, 255, 255, 0.7) !important;
}

/* Highlight Country Style */
.country-highlight {
    fill-opacity: 0.1 !important;
    fill: var(--color-moss) !important;
    stroke: var(--color-moss) !important;
    stroke-width: 1.5;
    transition: fill-opacity 0.3s ease;
}

.country-highlight-active {
    fill-opacity: 0.4 !important;
    cursor: pointer;
}

/* Mobile Adjustments for Map */
@media (max-width: 768px) {
    .map-wrapper {
        height: 450px;
        border-radius: 16px;
    }

    .map-controls {
        bottom: 20px;
        right: 20px;
    }

    .map-preview-card {
        position: fixed;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) scale(0.9);
        width: 80%;
        max-width: 320px;
    }

    .map-preview-card.active {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* =========================================================================
   PÃGINA DESTINOS (LISTAGEM)
   ========================================================================= */

.destinos-hero {
    padding: 160px 0 80px;
    background: linear-gradient(175deg, var(--color-moss) 0%, #2F4534 100%);
    text-align: center;
    color: var(--color-offwhite);
}

.destinos-hero .section-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.destinos-hero .section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.destinos-listing-section {
    padding: 80px 0;
    background-color: var(--color-offwhite);
}

/* Filters */
.destinos-filters {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--color-moss);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 120px;
}

.filter-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--color-moss);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--color-moss);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--color-moss);
    color: white;
    border-color: var(--color-moss);
    box-shadow: var(--shadow-md);
}

/* Grid */
.destinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destino-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.destino-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destino-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
    image-rendering: -webkit-optimize-contrast;
}

.destino-card:hover .destino-img {
    transform: scale(1.1);
}

.destino-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: var(--transition-normal);
}

.destino-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.destino-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.destino-info .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.destino-card:hover .destino-info .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Listing */
@media (max-width: 1024px) {
    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .destinos-hero .section-title {
        font-size: 2.5rem;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filter-label {
        margin-bottom: 0;
    }
}

/* =========================================================================
   REFINAMENTO DESTINOS (SIDEBAR & FILTERS)
   ========================================================================= */

.destinos-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.destinos-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.destinos-main {
    flex-grow: 1;
}

.sidebar-group {
    margin-bottom: 40px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-moss);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.destinos-sidebar .filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.destinos-sidebar .filter-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: var(--color-moss);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    transition: var(--transition-normal);
    cursor: pointer;
}

.destinos-sidebar .filter-btn i {
    font-size: 0.8rem;
    opacity: 0.3;
    transition: var(--transition-fast);
}

.destinos-sidebar .filter-btn:hover {
    background-color: var(--color-offwhite);
    border-color: var(--color-moss);
    padding-left: 25px;
}

.destinos-sidebar .filter-btn.active {
    background-color: var(--color-moss);
    color: white;
    border-color: var(--color-moss);
    box-shadow: var(--shadow-md);
}

.destinos-sidebar .filter-btn.active i {
    opacity: 1;
    transform: translateX(3px);
}

/* Ajuste no Grid para acomodar a sidebar */
.destinos-main .destinos-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive Redesign */
@media (max-width: 1200px) {
    .destinos-main .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .destinos-container {
        flex-direction: column;
    }

    .destinos-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .destinos-sidebar .filter-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .destinos-sidebar .filter-btn {
        width: auto;
        white-space: nowrap;
        padding: 10px 20px;
    }

    .destinos-sidebar .filter-btn i {
        display: none;
    }

    .sidebar-group {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .destinos-main .destinos-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   DEPOIMENTOS (Testimonials)
   ======================================================================== */
.testimonials {
    padding: 120px 0;
    background-color: var(--color-offwhite);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-med);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sand);
}

.testimonial-quote {
    color: var(--color-sand);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--color-offwhite);
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-sand);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-moss);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-destination {
    font-size: 0.85rem;
    color: var(--color-terra);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 5px;
}

.author-rating {
    display: flex;
    gap: 3px;
    color: #FFB347; /* Gold/Orange */
    font-size: 0.8rem;
}

/* Testimonials Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials {
        padding: 80px 0;
    }
    .testimonial-card {
        padding: 30px;
    }
}

.testimonials-grid.single-testimonial {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.testimonial-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(62, 90, 68, 0.05) 0%, rgba(200, 107, 77, 0.05) 100%);
    border: 2px solid var(--color-sand);
}

.testimonial-featured .testimonial-quote {
    color: var(--color-terra);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-featured {
        grid-column: span 1;
    }
}

/* =========================================================================
   FAQ (PERGUNTAS FREQUENTES)
   ========================================================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-offwhite);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-terra);
    box-shadow: var(--shadow-md);
}

.faq-button {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-moss);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    text-align: left;
}

.faq-button:hover {
    background-color: var(--color-sand);
}

.faq-button i {
    color: var(--color-terra);
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-button i {
    transform: rotate(180deg);
}

.faq-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: rgba(248, 247, 244, 0.5);
    transition: max-height var(--transition-fast), padding var(--transition-fast);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .faq-grid {
        max-width: 100%;
        gap: 15px;
    }

    .faq-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .faq-title {
        font-size: 0.95rem;
    }

    .faq-content {
        padding: 0 20px;
    }

    .faq-item.active .faq-content {
        padding: 15px 20px;
    }
}

/* =========================================================================
   MOBILE POLISH & SEO OPTIMIZATIONS
   ========================================================================= */
@media (max-width: 768px) {
    /* Evita que os reveals horizontais empurrem conteúdo para fora da tela no mobile */
    .fade-left,
    .fade-right {
        transform: translateY(40px);
    }

    .scroll-reveal.active {
        transform: translate(0, 0) scale(1);
    }

    /* Better Typography */
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Reduce Over-padding */
    section, 
    .section, 
    .sectionenciais, 
    .destinos, 
    .experiencia-nova, 
    .testimonials, 
    .contato {
        padding: 60px 0 !important;
    }

    /* Floating Button Adjustment */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }

    /* Consultoria Steps Fix */
    .consultoria-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Contact Form Fix */
    .contato-wrapper {
        grid-template-columns: 1fr !important;
        padding: 40px 20px !important;
    }

    .contato-info, .contato-form {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .contato-info {
        margin-bottom: 40px !important;
    }

    /* Global Overflow Fix (Site Cortado) */
    html, body {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
    }

    /* Destinos & Blog Sidebar to Horizontal Chips */
    .destinos-container, .blog-container {
        flex-direction: column !important;
        gap: 20px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .destinos-sidebar, .blog-sidebar {
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .sidebar-group {
        margin-bottom: 20px !important;
    }

    .sidebar-title {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-moss);
        opacity: 0.7;
    }

    .destinos-sidebar .filter-list, .blog-sidebar .filter-list {
        flex-direction: row !important;
        display: flex !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
        gap: 10px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .destinos-sidebar .filter-list::-webkit-scrollbar, 
    .blog-sidebar .filter-list::-webkit-scrollbar {
        display: none !important;
    }

    .destinos-sidebar .filter-btn, .blog-sidebar .filter-btn {
        width: auto !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        border-radius: 20px !important;
    }

    .destinos-sidebar .filter-btn i, .blog-sidebar .filter-btn i {
        display: none !important;
    }

    /* Floating Button Adjustment */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        z-index: 9999 !important;
    }

    /* Consultoria Steps Fix */
    .consultoria-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* Contact Form Fix */
    .contato-wrapper {
        grid-template-columns: 1fr !important;
        padding: 40px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contato-info, .contato-form {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .contato-info {
        margin-bottom: 40px !important;
    }

    /* Global Overflow & Clipping Fixes */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        background-color: var(--color-offwhite);
    }

    .destinos-hero, .blog-hero {
        padding-top: 140px !important; /* Extra padding for sticky header on mobile */
    }

    /* Fix Menu Toggle Visibility & Z-Index */
    .nav-links {
        z-index: 2000 !important;
        background-color: var(--color-offwhite) !important;
        visibility: visible !important; /* Ensure it's not hidden by global reveal */
        opacity: 1 !important;
    }

    .nav-links.active {
        display: flex !important;
        top: 100% !important;
    }

    /* Prevent text clipping in cards */
    .blog-card-body h3, .destino-info h3 {
        white-space: normal !important;
        overflow: visible !important;
    }

    /* Sidebar to Horizontal Chips (Destinos & Blog) */
    .destinos-container, .blog-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .destinos-main {
        width: 100% !important;
    }

    .destinos-sidebar, .blog-sidebar {
        width: 100% !important;
        position: relative !important;
        top: 0 !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .sidebar-group {
        margin-bottom: 15px !important;
    }

    .sidebar-title {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .destinos-sidebar .filter-list, .blog-sidebar .filter-list {
        flex-direction: row !important;
        display: flex !important;
        overflow-x: auto !important;
        padding-bottom: 10px !important;
        gap: 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .destinos-sidebar .filter-list::-webkit-scrollbar, 
    .blog-sidebar .filter-list::-webkit-scrollbar {
        display: none !important;
    }

    .destinos-sidebar .filter-btn, .blog-sidebar .filter-btn {
        width: auto !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .destinos-sidebar .filter-btn i, .blog-sidebar .filter-btn i {
        display: none !important;
    }

    /* --- Homepage Previews (Horizontal Scroll Only) --- */
    .destinos-gallery,
    #blog-preview .blog-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 10px 15px 30px 15px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
        scroll-snap-type: x mandatory !important;
    }

    .destinos-gallery .destino-card,
    #blog-preview .blog-grid .blog-card {
        min-width: 280px !important;
        width: 280px !important;
        flex: 0 0 280px !important;
        scroll-snap-align: center !important;
    }

    /* --- Main Listing Pages (2 Columns Vertical) --- */
    .destinos-main .destinos-grid,
    .blog-listing .blog-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 5px !important;
    }

    .blog-listing .blog-grid .blog-card,
    .destinos-main .destinos-grid .destino-card {
        width: 100% !important;
        min-width: unset !important;
        flex: none !important;
        margin: 0 !important;
        height: auto !important; /* Let content dictate height or use proportional */
    }

    .destinos-main .destinos-grid .destino-card {
        height: 250px !important; /* Smaller height for 2-col destinos */
    }

    /* Refine Card Padding/Typo for 2-column layout */
    .blog-card-body {
        padding: 15px 12px !important;
    }

    .blog-card-body h3 {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .blog-card-body p, 
    .blog-read-more,
    .blog-card-date {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
    }

    .blog-card-img {
        height: 140px !important;
    }

    .destino-info h3 {
        font-size: 1.1rem !important;
    }

    .destino-info p {
        font-size: 0.75rem !important;
    }

    .destino-overlay {
        padding: 15px !important;
    }

    /* --- Map & Controls --- */
    .map-controls {
        bottom: auto !important;
        top: 20px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .nav-btn {
        display: none !important;
    }

    .navbar .logo {
        font-size: 1.3rem !important;
    }
}

/* =========================================================================
   GALERIA DA COMUNIDADE (feed estilo Instagram)
   ========================================================================= */
.comunidade {
    padding: 100px 0;
    background-color: var(--color-offwhite);
}

.comunidade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.comunidade-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comunidade-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-med);
}

.comunidade-item:hover img {
    transform: scale(1.08);
}

/* Citação do cliente sempre visível sobre a foto */
.com-quote {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.55) 50%, rgba(26, 26, 26, 0) 100%);
}

.com-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 10px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.com-name {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: var(--color-sand);
}

@media (max-width: 768px) {
    .com-quote {
        padding: 16px;
    }
    .com-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comunidade {
        padding: 60px 0;
    }
    .comunidade-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* =========================================================================
   PÁGINA DE ROTEIRO: TIMELINE + TRANSPARÊNCIA (INCLUSOS/NÃO-INCLUSOS)
   Reutilizável em todas as páginas de destino
   ========================================================================= */
.trip-section {
    margin-top: 4rem;
}

.trip-section > h2 {
    color: var(--color-moss);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trip-section > .trip-sub {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Timeline vertical */
.trip-timeline {
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 22px;
    padding-bottom: 32px;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: -4px;
    width: 2px;
    background: var(--color-sand);
}

.timeline-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-moss);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.timeline-day {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-terra);
    font-weight: 600;
}

.timeline-body h4 {
    color: var(--color-moss);
    font-size: 1.15rem;
    margin: 2px 0 6px;
}

.timeline-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Blocos de transparência */
.trip-incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2rem;
}

.trip-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.trip-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    color: var(--color-moss);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trip-box ul {
    list-style: none;
}

.trip-box li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 9px 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trip-box li:last-child {
    border-bottom: none;
}

.trip-box li i {
    margin-top: 3px;
    flex: 0 0 auto;
}

.trip-box.incl li i {
    color: #2E7D32;
}

.trip-box.excl li i {
    color: #C0392B;
}

@media (max-width: 768px) {
    .trip-incl-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trip-box {
        padding: 24px;
    }
}

/* =========================================================================
   FILTRO POR VIBE (home destinos)
   ========================================================================= */
.vibe-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.vibe-chip {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 30px;
    border: 1.5px solid var(--color-moss);
    background: transparent;
    color: var(--color-moss);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.vibe-chip:hover {
    background: rgba(62, 90, 68, 0.08);
}

.vibe-chip.active {
    background: var(--color-moss);
    color: #fff;
}

/* =========================================================================
   ACESSIBILIDADE MOBILE: alvos de toque >= 48px + tooltip off no touch
   ========================================================================= */
@media (max-width: 768px) {
    /* Botões-rótulo: centralizados, altura mínima de toque */
    .btn-primary,
    .btn-outline,
    .btn-large,
    .vibe-chip,
    .filter-btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* faq-button mantém o space-between (título + seta), só ganha altura */
    .faq-button {
        min-height: 48px;
        align-items: center;
    }

    /* Links do menu mobile: área de toque cheia */
    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Tooltip do WhatsApp some no toque (sem hover real) */
    .whatsapp-float::after,
    .whatsapp-float::before {
        display: none;
    }
}

/* =========================================================================
   QUIZ "DESCUBRA SEU DESTINO" (bloco cinematográfico escuro)
   ========================================================================= */
.quiz-section {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(rgba(12, 20, 15, 0.82), rgba(12, 20, 15, 0.93)),
        url('https://images.pexels.com/photos/2356045/pexels-photo-2356045.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

/* brilho terracota estático e discreto (sem pulsar) */
.quiz-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(200, 107, 77, 0.22) 0%, transparent 68%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

.quiz-box {
    max-width: 760px;
    margin: 50px auto 0;
    background: rgba(15, 24, 19, 0.55);
    border: 1px solid rgba(234, 227, 202, 0.14);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    position: relative;
    min-height: 360px;
}

.quiz-progress {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 34px;
}

.quiz-bar {
    display: block;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--color-terra), #e6a07f);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Passos: só o ativo aparece */
.quiz-step {
    display: none;
    animation: quizIn 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.quiz-step.active {
    display: block;
}

@keyframes quizIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.quiz-q {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.quiz-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 110px;
    padding: 20px 14px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.quiz-opt i {
    font-size: 1.6rem;
    color: var(--color-sand);
    transition: color 0.25s ease, transform 0.25s ease;
}

.quiz-opt:hover {
    transform: translateY(-4px);
    border-color: var(--color-terra);
    background: rgba(200, 107, 77, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.quiz-opt:hover i {
    color: var(--color-terra);
    transform: scale(1.12);
}

.quiz-opt.selected {
    border-color: var(--color-terra);
    background: rgba(200, 107, 77, 0.18);
}

/* Navegação */
.quiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-back {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    transition: color 0.25s ease;
}

.quiz-back:hover {
    color: #fff;
}

.quiz-count {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

/* Resultado */
.quiz-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.quiz-match {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    animation: quizIn 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.quiz-match img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.quiz-match:hover img {
    transform: scale(1.1);
}

.quiz-match-ov {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(14, 23, 18, 0.92), rgba(14, 23, 18, 0.1) 70%);
}

.quiz-match-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.2;
}

.quiz-match-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-sand);
    margin-top: 3px;
}

.quiz-result-cta {
    text-align: center;
}

.quiz-restart {
    margin: 20px auto 0;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 11px 24px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.quiz-restart:hover {
    color: #fff;
    border-color: var(--color-terra);
    background: rgba(200, 107, 77, 0.14);
    transform: translateY(-2px);
}

.quiz-restart i {
    transition: transform 0.4s ease;
}

.quiz-restart:hover i {
    transform: rotate(-180deg);
}

@media (max-width: 768px) {
    .quiz-section {
        padding: 70px 0;
    }
    .quiz-box {
        padding: 26px 20px;
        border-radius: 18px;
    }
    .quiz-q {
        font-size: 1.5rem;
    }
    .quiz-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .quiz-opt {
        min-height: 96px;
    }
    .quiz-matches {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================================
   HERO CINEMATOGRÁFICO — Ken Burns (zoom lento contínuo, sem scroll)
   ========================================================================= */
.hero-bg-image img {
    animation: kenBurns 26s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.14); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-image img { animation: none; }
}

/* =========================================================================
   TILT 3D NOS CARDS DE DESTINO (micro-interação no hover)
   ========================================================================= */
.destino-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* =========================================================================
   HERO EDITORIAL (tipografia cinematográfica)
   ========================================================================= */
.hero-title {
    font-size: clamp(2.6rem, 6.5vw, 6rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    font-weight: 500;
}
.hero-title em {
    font-style: italic;
    color: var(--color-terra);
}

/* =========================================================================
   DESTINOS: DOSSIÊ EDITORIAL (bloco escuro cinematográfico)
   ========================================================================= */
.destinos-editorial {
    padding: 120px 0;
    background:
        linear-gradient(rgba(12, 20, 16, 0.94), rgba(12, 20, 16, 0.97)),
        url('Patagonia.jpg') center/cover fixed no-repeat;
    color: var(--color-text-light);
}

.de-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.de-head .eyebrow { color: var(--color-terra); }
.de-title {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 12px;
}

/* filtro vibe no escuro */
.destinos-editorial .vibe-filter { margin: 0; justify-content: flex-start; }
.destinos-editorial .vibe-chip {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}
.destinos-editorial .vibe-chip:hover { background: rgba(255, 255, 255, 0.08); }
.destinos-editorial .vibe-chip.active {
    background: var(--color-terra);
    border-color: var(--color-terra);
    color: #fff;
}

.dossie-list { display: flex; flex-direction: column; }

.dossie-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: inherit;
    text-decoration: none;
}
.dossie-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.dossie-row.flip .dossie-media { order: 2; }

.dossie-media { position: relative; overflow: hidden; min-height: 400px; }
.dossie-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dossie-row:hover .dossie-media img { transform: scale(1.07); }

.dossie-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 60px;
}
.dossie-body .eyebrow { color: var(--color-terra); }
.dossie-body h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #fff;
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}
.dossie-line {
    font-size: 1.1rem;
    color: rgba(244, 241, 233, 0.72);
    max-width: 34ch;
    margin: 0;
}
.dossie-meta {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-sage, #93A089);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    margin-top: 4px;
}
.dossie-meta span { color: rgba(255, 255, 255, 0.45); }
.dossie-meta b {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--font-body);
    margin-top: 4px;
}
.dossie-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-terra);
    font-weight: 600;
    margin-top: 6px;
}
.dossie-link i { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.dossie-row:hover .dossie-link i { transform: translateX(6px); }

.de-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}

@media (max-width: 860px) {
    .destinos-editorial { padding: 70px 0; background-attachment: scroll; }
    .dossie-row { grid-template-columns: 1fr; }
    .dossie-row.flip .dossie-media { order: 0; }
    .dossie-media { min-height: 260px; }
    .dossie-body { padding: 32px 22px; }
    .de-head { margin-bottom: 40px; }
}

/* Sem órfãos: nunca 1 palavra sozinha na última linha */
p, li, .hero-subtitle, .section-desc, .lead, .lead-text, .testimonial-text, .storytelling p, .timeline-body p, .trip-box li { text-wrap: pretty; }
h1, h2, h3, h4, h5, .hero-title, .section-title { text-wrap: balance; }
