/* ==========================================
   CARPE DIEM VIAGENS — styles.css
   Manual de marca: cores, tipografia, formas
   ========================================== */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background-color: #eee6cb;
  color: #20307a;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── BRAND CSS VARIABLES ─── */
:root {
  --blue-main:    #253890;
  --blue-dark:    #20307a;
  --blue-mid:     #223485;
  --terra:        #a7533d;
  --olive:        #7e7520;
  --cream:        #eee6cb;
  --white:        #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
  --font-script:  'Great Vibes', cursive;

  --radius:       16px;
  --shadow:       0 8px 40px rgba(32, 48, 122, 0.12);
  --shadow-lg:    0 20px 60px rgba(32, 48, 122, 0.18);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── CONTAINER ─── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.section-label.light { color: var(--cream); opacity: 0.75; }

.section-title { margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--terra); font-family: var(--font-display); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: #e8c4a0; }

.section-intro {
  font-size: 1.05rem;
  max-width: 620px;
  color: rgba(32, 48, 122, 0.8);
  line-height: 1.8;
}
.section-intro.light { color: rgba(238, 230, 203, 0.85); }

.section-header { margin-bottom: 3rem; }
.section-header.reveal { text-align: center; margin: 0 auto 3.5rem; }
.section-header.reveal .section-intro { margin: 0 auto; }

/* ─── SECTIONS ─── */
.section { position: relative; padding: 6rem 0; }
.sobre  { background: var(--cream); }
.servicos { background: var(--blue-dark); padding-bottom: 7rem; }
.pacotes { background: var(--cream); }
.clientes { background: var(--blue-main); padding-bottom: 7rem; }
.contato { background: var(--cream); }

/* ─── WAVE SEPARATORS ─── */
.wave-bottom, .wave-top, .wave-top-footer {
  position: absolute; left: 0; width: 100%;
  line-height: 0; overflow: hidden;
}
.wave-bottom { bottom: -1px; }
.wave-top { top: -1px; }
.wave-top-footer { top: -1px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: var(--cream);
}
.btn-primary:hover { background: #8a3e2a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(167,83,61,0.35); }

.btn-outline {
  border: 2px solid rgba(238,230,203,0.6);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(238,230,203,0.15); transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }

.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* ─── HONEYPOT TRAP (invisível para humanos, visível para bots) ─── */
.hp-trap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}
#navbar.scrolled {
  background: rgba(32, 48, 122, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(32,48,122,0.25);
  padding: 0.8rem 0;
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 92%; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  gap: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--terra);
  margin-top: -4px;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(238, 230, 203, 0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--terra);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--terra) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
}
.nav-cta:hover { background: #8a3e2a !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.03);
  will-change: opacity;
}
.hero-img.active { opacity: 1; transform: scale(1); transition: opacity 1.2s ease, transform 8s ease; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(32, 48, 122, 0.72) 0%,
    rgba(32, 48, 122, 0.45) 50%,
    rgba(167, 83, 61, 0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  text-align: center;
  padding: 2rem;
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(238, 230, 203, 0.75);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(32,48,122,0.4);
}
.hero-title em {
  font-style: italic;
  color: #f5dfc0;
  font-family: var(--font-display);
}
.hero-subtitle {
  color: rgba(238, 230, 203, 0.88);
  font-size: 1.05rem; max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(238,230,203,0.4);
  transition: var(--transition);
}
.dot.active { background: var(--cream); width: 24px; border-radius: 4px; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: rgba(238,230,203,0.55); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ═══════════════════════════════════
   SOBRE
═══════════════════════════════════ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-image-wrap { position: relative; }
.sobre-image-frame {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-image-frame img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.sobre-badge {
  position: absolute; bottom: 1.8rem; right: -1.5rem;
  background: var(--terra); color: var(--cream);
  padding: 1rem 1.5rem; border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; }
.badge-label  { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; margin-top: 2px; opacity: 0.85; }

.sobre-accent-shape {
  position: absolute; top: -20px; left: -20px; z-index: -1;
  width: 120px; height: 120px;
  background: var(--olive);
  opacity: 0.18;
  border-radius: 50%;
}
.sobre-text { margin-bottom: 1rem; color: rgba(32,48,122,0.8); font-size: 0.97rem; }
.sobre-text strong, .sobre-text em { color: var(--blue-dark); }
.sobre-text em { font-style: italic; font-family: var(--font-display); font-size: 1.05em; }

.sobre-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(37, 56, 144, 0.06);
  border-radius: var(--radius);
  border-left: 4px solid var(--terra);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--terra); }
.stat-desc { font-size: 0.72rem; color: rgba(32,48,122,0.7); letter-spacing: 0.02em; }

.sobre-consultores {
  padding: 1.2rem 1.5rem;
  background: var(--blue-dark);
  border-radius: var(--radius);
  color: var(--cream);
}
.consultores-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.4rem; }
.consultores-list { font-size: 0.82rem; color: rgba(238,230,203,0.8); line-height: 1.7; }

/* ═══════════════════════════════════
   SERVIÇOS
═══════════════════════════════════ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.servico-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(238, 230, 203, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 4px; height: 0; background: var(--terra);
  transition: height var(--transition);
}
.servico-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.servico-card:hover::before { height: 100%; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem; color: var(--cream);
}
.servico-card h3 { color: var(--cream); margin-bottom: 0.7rem; font-size: 1.2rem; }
.servico-card p { color: rgba(238, 230, 203, 0.7); font-size: 0.87rem; line-height: 1.7; }

/* ═══════════════════════════════════
   DESTINOS / PACOTES
═══════════════════════════════════ */
.destinos-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.destino-card-large {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.destino-card-large:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destino-card-large img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.destino-card-large:hover img { transform: scale(1.06); }
.destino-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(32,48,122,0.92) 50%);
  color: var(--cream);
}
.destino-flag { font-size: 1.8rem; line-height: 1; display: block; margin-bottom: 0.3rem; }
.destino-card-info h3 { color: var(--cream); margin-bottom: 0.4rem; font-size: 1.3rem; }
.destino-card-info p { font-size: 0.8rem; opacity: 0.82; margin-bottom: 0.8rem; line-height: 1.5; }
.destino-card-info .btn-sm {
  background: var(--terra); color: var(--cream);
  font-size: 0.75rem; padding: 0.4rem 1rem;
}

.destinos-grid {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.destino-pill {
  padding: 0.6rem 1.3rem;
  border: 2px solid rgba(37, 56, 144, 0.25);
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--blue-dark);
  background: transparent;
  transition: var(--transition);
}
.destino-pill:hover {
  background: var(--blue-main); color: var(--cream);
  border-color: var(--blue-main);
  transform: translateY(-2px);
}
.destino-pill--more {
  background: var(--olive); color: var(--cream);
  border-color: var(--olive);
}
.destino-pill--more:hover { background: #5e5818; border-color: #5e5818; color: var(--cream); }

.destino-disney {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
  height: 380px;
}
.destino-disney img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.disney-content {
  padding: 2rem 2.5rem !important;
  gap: 0.75rem !important;
}
.disney-content {
  background: var(--blue-dark);
  color: var(--cream);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem;
}
.disney-content .destino-flag { font-size: 2.5rem; }
.disney-content h3 { color: var(--cream); font-size: 1.8rem; }
.disney-content p { opacity: 0.8; font-size: 0.93rem; line-height: 1.8; }

/* ═══════════════════════════════════
   CLIENTES / TESTIMONIALS
═══════════════════════════════════ */
/* GRID ESTÁTICO DE DEPOIMENTOS */
.deps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.dep-card {
  background: rgba(238, 230, 203, .06);
  border: 1px solid rgba(238, 230, 203, .1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background .3s;
}
.dep-card:hover { background: rgba(238, 230, 203, .1); }

.dep-stars {
  color: var(--olive);
  font-size: .82rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.dep-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.dep-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--cream);
  flex-shrink: 0;
  font-weight: 500;
}
.dep-name {
  font-size: .78rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
}
.dep-loc {
  font-size: .66rem;
  color: rgba(238, 230, 203, .38);
  display: block;
}
.dep-source {
  font-size: .6rem;
  color: rgba(238, 230, 203, .28);
  margin-top: .2rem;
  display: block;
}

/* Card de rating geral */
.dep-rating-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(238, 230, 203, .06);
  border: 1px solid rgba(238, 230, 203, .1);
  border-radius: var(--radius);
  padding: 2rem;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--olive);
  margin-bottom: .5rem;
  line-height: 1;
}
.rating-stars {
  color: var(--olive);
  font-size: 1.2rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.rating-label {
  font-size: .8rem;
  color: rgba(238, 230, 203, .45);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(238,230,203,0.12);
  border-radius: var(--radius);
}
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(238,230,203,0.75); font-size: 0.88rem;
}
.trust-item i { color: var(--terra); font-size: 1.2rem; }

/* ═══════════════════════════════════
   CONTATO / FORM
═══════════════════════════════════ */
.contato-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-wrap {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(37,56,144,0.18);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--blue-dark);
  background: rgba(238,230,203,0.2);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(37,56,144,0.1);
  background: var(--white);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: var(--terra);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group--full { grid-column: 1 / -1; }
.form-error { font-size: 0.72rem; color: var(--terra); min-height: 1em; }

.form-privacy { font-size: 0.73rem; color: rgba(32,48,122,0.5); text-align: center; margin-top: 0.8rem; }
.form-success {
  text-align: center; padding: 1.5rem;
  background: rgba(37,56,144,0.06);
  border-radius: 12px;
  margin-top: 1rem;
  color: var(--blue-dark);
}
.form-success i { color: #2a9d5c; font-size: 2rem; margin-bottom: 0.5rem; display: block; }

/* SIDEBAR INFO */
.contato-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-size: 1.1rem; color: var(--blue-dark);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}
.info-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  transition: background var(--transition);
}
.info-link:hover { background: rgba(37,56,144,0.05); }
.info-link i { font-size: 1.4rem; flex-shrink: 0; }
.info-link--whatsapp i { color: #25D366; }
.info-link--email i { color: var(--blue-main); }
.info-link--instagram i { color: var(--terra); }
.info-link div strong { display: block; font-size: 0.85rem; color: var(--blue-dark); }
.info-link div span { font-size: 0.78rem; color: rgba(32,48,122,0.6); }
.sede-info { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--blue-dark); margin-bottom: 0.6rem; }
.sede-info i { color: var(--terra); }
.sede-desc { font-size: 0.82rem; color: rgba(32,48,122,0.65); }
.info-card--highlight {
  background: var(--blue-dark); color: var(--cream);
  display: flex; align-items: center; gap: 1rem;
}
.info-card--highlight i { color: var(--terra); font-size: 1.5rem; flex-shrink: 0; }
.info-card--highlight p { font-size: 0.85rem; opacity: 0.85; }
.info-card--highlight strong { color: var(--cream); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--blue-dark);
  color: var(--cream);
  position: relative;
  padding-top: 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; opacity: 0.65; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(238,230,203,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(238,230,203,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--terra); border-color: var(--terra); color: var(--cream); }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
}
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul a { font-size: 0.85rem; opacity: 0.65; transition: opacity var(--transition); }
.footer-nav ul a:hover { opacity: 1; }
.footer-contact p { font-size: 0.84rem; opacity: 0.65; margin-bottom: 0.55rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-contact i { color: var(--terra); flex-shrink: 0; }
.footer-atend { opacity: 0.5 !important; font-size: 0.78rem !important; }
.footer-bottom {
  border-top: 1px solid rgba(238,230,203,0.1);
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.75rem;
  opacity: 0.5;
}
.footer-bottom a { color: var(--cream); opacity: 0.8; }
.footer-bottom a:hover { opacity: 1; }

/* ═══════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-image-wrap { max-width: 500px; margin: 0 auto; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .destinos-featured { grid-template-columns: 1fr 1fr; }
  .destinos-featured .destino-card-large:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .destino-disney { grid-template-columns: 1fr; }
  .destino-disney img { height: 280px; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75vw; max-width: 320px; height: 100vh;
    background: var(--blue-dark);
    flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(238,230,203,0.08); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; color: var(--cream) !important; }
  .nav-cta { margin-top: 1rem; background: none !important; padding: 1rem 0 !important; border-radius: 0 !important; }
  .nav-cta:hover { background: none !important; }

  .hero-content { padding: 1rem; }
  .section { padding: 4.5rem 0; }
  .servicos-grid { grid-template-columns: 1fr; }
  .destinos-featured { grid-template-columns: 1fr; }
  .destinos-featured .destino-card-large:nth-child(3) { grid-column: auto; aspect-ratio: 3/4; }
  .sobre-stats { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .deps-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5%; }
  .footer-brand { grid-column: auto; }
  .trust-strip { gap: 1rem; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .sobre-badge { right: 0; bottom: 1rem; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
  .destino-disney img { height: 220px; }
  .disney-content { padding: 2rem 1.5rem; }
  .form-wrap { padding: 1.5rem; }
}
