/*
Theme Name: Mundo Lá Fora Travel
Theme URI: https://mundolaforatravel.com
Author: Mundo Lá Fora Travel
Description: Tema de viagens elegante e premium para o Mundo Lá Fora Travel Experience
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: mundo-la-fora
*/

/* ============================================================
   FONTE CARBONA — Família completa
   ============================================================ */
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-RegularSlanted.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-MediumSlanted.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-BoldSlanted.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-ExtraBoldSlanted.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Carbona';
  src: url('fonts/Carbona-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --laranja:     #f18f01;
  --preto:       #2f2d2e;
  --teal:        #048ba8;
  --navy:        #2e4057;
  --creme:       #fffbdc;
  --bege:        #f5f0e8;
  --bege-escuro: #e8e0d0;
  --cinza:       #888;
  --branco:      #ffffff;
  --radius:      4px;
  --sombra:      0 8px 40px rgba(0,0,0,.1);
  --trans:       .4s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Carbona', 'Segoe UI', system-ui, sans-serif;
  color: var(--preto);
  background: var(--branco);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tipografia elegante */
.serif {
  font-family: 'Carbona', sans-serif;
  font-style: italic;
  font-weight: 300;
  color: var(--laranja);
}

.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title .serif {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
}

.section-desc {
  color: var(--cinza);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--laranja);
  margin: 1.2rem 0 1.5rem;
}

.text-center { text-align: center; }
.text-center .divider { margin-left: auto; margin-right: auto; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Botões */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
}

.btn-dark {
  background: var(--navy);
  color: var(--branco);
}
.btn-dark:hover {
  background: var(--preto);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,64,87,.3);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--branco);
}

.btn-laranja {
  background: var(--laranja);
  color: var(--branco);
}
.btn-laranja:hover {
  background: #d97d01;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241,143,1,.3);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--branco);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  padding: .8rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* Neutraliza todos os wrappers que o WordPress injeta no custom logo */
.logo a,
.logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  margin: 0;
}

/* A tag figure que o WP injeta */
.logo figure.wp-block-site-logo,
.logo .wp-block-site-logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo img,
.logo .custom-logo,
.logo-img {
  height: 220px !important;
  width: auto !important;
  display: block;
  margin: 0;
  padding: 0;
  transition: height var(--trans);
}

#site-header.scrolled .logo img,
#site-header.scrolled .logo .custom-logo,
#site-header.scrolled .logo-img { height: 80px !important; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--branco);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity var(--trans), color var(--trans);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.nav-menu a:hover { color: var(--laranja); }
.nav-menu .btn-laranja {
  padding: .55rem 1.5rem;
  font-size: .82rem;
  opacity: 1;
  color: var(--branco);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  transition: var(--trans);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

/* Vídeo de fundo do hero */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  display: none; /* escondido no desktop, aparece só no mobile */
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,64,87,.2) 0%,
    rgba(46,64,87,.1) 40%,
    rgba(46,64,87,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--branco);
  text-align: center;
  padding: 0 1rem 5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title strong {
  display: block;
  font-family: 'Carbona', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Stats flutuantes */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--bege-escuro);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-num span { color: var(--laranja); }
.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cinza);
  font-weight: 600;
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.sobre {
  padding: 7rem 0;
  background: var(--bege);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.sobre-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  height: 200px;
  object-fit: cover;
  border: 6px solid var(--branco);
}

.sobre-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--laranja);
  color: var(--branco);
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.sobre-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.sobre-badge span   { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }

/* ============================================================
   DESTINOS
   ============================================================ */
.destinos {
  padding: 7rem 0;
  background: var(--branco);
}

.destinos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.destino-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}

.destino-card:first-child {
  grid-row: span 2;
}

.destino-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, opacity .4s ease;
  opacity: .85;
}

.destino-card:first-child .destino-img {
  height: 100%;
  min-height: 561px;
}

.destino-card:hover .destino-img {
  transform: scale(1.05);
  opacity: .7;
}

.destino-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(46,64,87,.95) 0%, transparent 100%);
  color: var(--branco);
  transform: translateY(8px);
  transition: transform var(--trans);
}

.destino-card:hover .destino-info { transform: translateY(0); }

.destino-pais {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .7;
  margin-bottom: .3rem;
}

.destino-nome {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.destino-card:first-child .destino-nome { font-size: 1.8rem; }

.destino-preco {
  font-size: .85rem;
  color: var(--laranja);
  font-weight: 600;
}

/* ============================================================
   PACOTES
   ============================================================ */
.pacotes {
  padding: 7rem 0;
  background: var(--navy);
  color: var(--branco);
}

.pacotes .section-title  { color: var(--branco); }
.pacotes .section-label  { color: var(--laranja); }
.pacotes .section-desc   { color: rgba(255,255,255,.65); }
.pacotes .divider        { background: var(--laranja); }

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pacote-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--trans), transform var(--trans), border-color var(--trans);
  overflow: hidden;
}

.pacote-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  border-color: var(--laranja);
}

.pacote-img {
  height: 220px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.pacote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pacote-card:hover .pacote-img img { transform: scale(1.06); }

.pacote-body { padding: 1.8rem; }

.pacote-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: .8rem;
}

.pacote-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .7rem;
  color: var(--branco);
  line-height: 1.3;
}

.pacote-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.pacote-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.pacote-preco small { display: block; font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; }
.pacote-preco strong { font-size: 1.3rem; font-weight: 800; color: var(--laranja); }

.pacote-link {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
  transition: color var(--trans);
}
.pacote-card:hover .pacote-link { color: var(--laranja); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  padding: 7rem 0;
  background: var(--bege);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.diferencial-item {
  padding: 2.5rem 2rem;
  background: var(--branco);
  border-bottom: 3px solid transparent;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.diferencial-item:hover {
  border-color: var(--laranja);
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.diferencial-icon {
  width: 48px;
  height: 48px;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.diferencial-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.diferencial-item p {
  font-size: .85rem;
  color: var(--cinza);
  line-height: 1.7;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  padding: 7rem 0;
  background: var(--branco);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.depo-card {
  padding: 2.5rem;
  background: var(--bege);
  position: relative;
  border-top: 3px solid transparent;
  transition: border-color var(--trans);
}

.depo-card:hover { border-color: var(--teal); }

.depo-aspas {
  font-size: 4rem;
  line-height: .8;
  color: var(--laranja);
  font-family: 'Carbona', sans-serif;
  font-weight: 300;
  font-style: italic;
  margin-bottom: .5rem;
  opacity: .4;
}

.depo-text {
  font-size: .92rem;
  color: var(--cinza);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--branco);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.depo-nome  { font-weight: 700; font-size: .9rem; color: var(--navy); }
.depo-local { font-size: .78rem; color: var(--cinza); }
.depo-stars { color: var(--laranja); font-size: .85rem; margin-bottom: .3rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  padding: 7rem 0;
  background: var(--bege);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.blog-card {
  background: var(--branco);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}

.blog-card:hover {
  box-shadow: var(--sombra);
  transform: translateY(-4px);
}

.blog-img {
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}

.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body { padding: 1.8rem; }

.blog-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

.blog-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .7rem;
}

.blog-body p {
  font-size: .85rem;
  color: var(--cinza);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--cinza);
  padding-top: 1rem;
  border-top: 1px solid var(--bege-escuro);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1rem;
  transition: gap var(--trans), color var(--trans);
}
.blog-link:hover { gap: .8rem; color: var(--laranja); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 5rem 0;
  background: var(--teal);
  color: var(--branco);
  text-align: center;
}

.newsletter h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: .7rem;
}

.newsletter h2 .serif { font-size: clamp(2rem, 3.5vw, 2.8rem); }

.newsletter p {
  opacity: .85;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  font-size: .95rem;
  background: rgba(255,255,255,.95);
}

.newsletter-form button {
  background: var(--navy);
  color: var(--branco);
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  cursor: pointer;
  font-size: .88rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background var(--trans);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--preto); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: #25D366;
  color: var(--branco);
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.4rem .85rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: .88rem;
  transition: transform var(--trans), box-shadow var(--trans), padding var(--trans);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}

.whatsapp-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
  .whatsapp-label { display: none; }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  padding: 7rem 0;
  background: var(--branco);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contato-info .section-desc { margin-bottom: 2.5rem; }

.contato-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contato-icon {
  width: 42px; height: 42px;
  background: var(--creme);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--bege-escuro);
}

.contato-item h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--cinza); margin-bottom: .3rem; font-weight: 600; }
.contato-item p  { font-size: .92rem; color: var(--preto); font-weight: 500; }

.contato-form { background: var(--bege); padding: 3rem; }

.form-group { margin-bottom: 1.3rem; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--bege-escuro);
  border-bottom: 2px solid var(--bege-escuro);
  padding: .85rem 1rem;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  font-family: inherit;
  background: var(--branco);
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  border-bottom-color: var(--teal);
  background: var(--branco);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--preto);
  color: rgba(255,255,255,.65);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo img { height: 52px; width: auto; margin-bottom: 1.2rem; }

.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social { display: flex; gap: .7rem; }

.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}
.social-btn:hover {
  background: var(--laranja);
  border-color: var(--laranja);
  color: var(--branco);
}

.footer-col h4 {
  color: var(--branco);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }

.footer-col ul a {
  font-size: .85rem;
  transition: color var(--trans), padding-left var(--trans);
}
.footer-col ul a:hover { color: var(--laranja); padding-left: 4px; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--laranja); }

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */
.page-banner {
  background: var(--navy);
  padding: 8rem 0 4rem;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-banner { padding: 4.5rem 1.5rem 1.5rem; }
  .page-banner h1 { font-size: 2rem; }
  .blog-content-wrap { padding: 1.5rem 0 !important; }
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--laranja), var(--teal));
}

.page-banner h1 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: .5rem;
}
.page-banner h1 strong {
  font-family: 'Carbona', sans-serif;
  font-style: italic;
  font-weight: 300;
}

.breadcrumb { font-size: .82rem; opacity: .6; margin-top: .5rem; }
.breadcrumb a { color: var(--laranja); }

.single-content { padding: 5rem 0; background: var(--bege); }

.single-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.post-card { background: var(--branco); }

.post-card-img { width: 100%; height: 400px; object-fit: cover; }

.post-card-body { padding: 2.5rem; }

.post-card-body h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: .82rem;
  color: var(--cinza);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bege-escuro);
  flex-wrap: wrap;
}

.post-content { line-height: 1.9; color: var(--preto); }
.post-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .8rem; }
.post-content p  { margin-bottom: 1.3rem; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.widget {
  background: var(--branco);
  padding: 1.8rem;
}

.widget h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--laranja);
}

.widget-orcamento {
  background: var(--navy);
  color: var(--branco);
}
.widget-orcamento h3 { color: var(--branco); border-color: var(--laranja); }
.widget-orcamento p  { font-size: .88rem; opacity: .75; margin-bottom: 1.2rem; }

/* ============================================================
   EXPERIÊNCIAS
   ============================================================ */
.experiencias {
  background: var(--branco);
  padding: 5rem 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.8rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,.07);
  background: #fff;
  text-decoration: none;
  color: var(--navy);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--exp-cor);
  opacity: 0;
  transition: opacity .25s ease;
}

.exp-card:hover {
  border-color: var(--exp-cor);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  color: #fff;
}

.exp-card:hover::before { opacity: 1; }
.exp-card:hover .exp-arrow { opacity: 1; transform: translateX(0); }

.exp-icon {
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}

.exp-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.exp-arrow {
  font-size: .8rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .exp-grid { grid-template-columns: repeat(3, 1fr); gap: .7rem; }
  .exp-card { padding: 1.2rem .5rem; }
  .exp-icon { font-size: 1.8rem; }
  .exp-label { font-size: .72rem; }
}

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

/* ============================================================
   QUIZ MULTI-ETAPAS
   ============================================================ */
.quiz-wrap { position: relative; min-height: 420px; }

.quiz-progress {
  height: 5px;
  background: rgba(46,64,87,.15);
  border-radius: 10px;
  margin-bottom: .5rem;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--laranja);
  border-radius: 10px;
  width: 16.6%;
  transition: width .4s ease;
}
.quiz-step-label {
  font-size: .75rem;
  color: var(--cinza);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.quiz-step { display: none; animation: fadeInUp .35s ease; }
.quiz-step.active { display: block; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.quiz-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-bottom: 1rem;
}
.quiz-cards-2 { grid-template-columns: repeat(2, 1fr); }

.quiz-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .9rem .5rem;
  border: 2px solid rgba(46,64,87,.15);
  border-radius: 10px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  transition: all .2s ease;
  text-align: center;
  line-height: 1.3;
}
.quiz-card:hover { border-color: var(--laranja); background: rgba(241,143,1,.07); }
.quiz-card.selected { border-color: var(--laranja); background: rgba(241,143,1,.12); color: var(--laranja); }
.quiz-card span { font-size: .78rem; }

.quiz-input-wrap {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.quiz-input {
  width: 100%;
  padding: .9rem 1rem;
  border: 2px solid rgba(46,64,87,.2);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--navy);
  outline: none;
  transition: border-color .2s;
  font-family: 'Carbona', sans-serif;
}
.quiz-input:focus { border-color: var(--laranja); }

.quiz-next-btn {
  width: 100%;
  text-align: center;
  padding: .9rem;
  font-size: .95rem;
}

.quiz-date-box {
  border: 2px solid rgba(46,64,87,.2);
  border-radius: 8px;
  padding: .7rem 1rem;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s;
}
.quiz-date-box:hover { border-color: var(--laranja); }
.quiz-date-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: .3rem;
}
.quiz-date-input {
  border: none !important;
  padding: 0 !important;
  font-size: .95rem;
  color: var(--navy);
  background: transparent !important;
  cursor: pointer;
}

/* Flatpickr personalizado */
.flatpickr-calendar { font-family: 'Carbona', sans-serif !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: var(--laranja) !important;
  border-color: var(--laranja) !important;
}
.flatpickr-day.inRange {
  background: rgba(241,143,1,.15) !important;
  border-color: rgba(241,143,1,.1) !important;
}

.quiz-back-btn {
  background: none;
  border: none;
  color: var(--cinza);
  font-size: .82rem;
  cursor: pointer;
  margin-top: 1rem;
  padding: 0;
  text-decoration: underline;
}
.quiz-back-btn:hover { color: var(--navy); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .destinos-grid  { grid-template-columns: 1fr 1fr; }
  .destino-card:first-child { grid-row: span 1; }
  .destino-card:first-child .destino-img { min-height: 280px; }
  .pacotes-grid   { grid-template-columns: 1fr 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .hero-stats     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sobre-grid     { grid-template-columns: 1fr; }
  .contato-grid   { grid-template-columns: 1fr; }
  .single-grid    { grid-template-columns: 1fr; }
  .depo-grid      { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .pacotes-grid   { grid-template-columns: 1fr; }
  .destinos-grid  { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .destinos-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .sobre-badge    { left: 1rem; }
  .sobre-img-accent { display: none; }

  /* Hero mobile fix */
  .hero           { min-height: 100svh; align-items: flex-start; padding-top: 160px; flex-direction: column; }
  .hero-content   { padding: 1.5rem 1rem 2rem; text-align: center; }
  .hero-stats     { grid-template-columns: repeat(2, 1fr); position: relative; bottom: auto; }
  /* No mobile: esconde vídeo, mostra imagem */
  .hero-video     { display: none; }
  .hero-bg        { display: block; }

  /* Logo mobile */
  .logo img, .logo .custom-logo, .logo-img { height: 80px !important; }
  #site-header.scrolled .logo img,
  #site-header.scrolled .logo .custom-logo,
  #site-header.scrolled .logo-img { height: 60px !important; }
  #site-header { padding: .6rem 0; }

  /* Como Funciona — 2 colunas no mobile */
  .passos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  /* Esconde a linha conectora horizontal no mobile */
  .passos-grid > div[style*="position:absolute"] {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--bege-escuro); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* Ajuste final do logo no header */
.site-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.site-header .logo img {
  width: 200px;
  max-width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-header .logo img {
    width: 145px;
    max-width: 145px;
  }
style="width:250px; max-width:250px; height:auto; display:block;"