/* ============================================================
   === CORES ===
   Altere apenas os valores hex para mudar toda a paleta.
   ============================================================ */
:root {
  --gold:        #B8976A;
  --gold-light:  #D4B896;
  --gold-pale:   #F5EDD9;
  --cream:       #FAF7F2;
  --charcoal:    #2C2825;
  --mid:         #6B5F52;
  --light-mid:   #A89880;
  --border:      rgba(184,151,106,0.25);

/* ============================================================
   === TIPOGRAFIA ===
   Serif: títulos elegantes | Sans: texto corrido
   Alternativas serif: 'Playfair Display', 'EB Garamond'
   Alternativas sans:  'Raleway', 'Montserrat', 'DM Sans'
   ============================================================ */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

/* BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--charcoal); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo-text { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; letter-spacing: 0.06em; color: var(--charcoal); }
.nav-logo-text span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 0.5px solid var(--gold); padding: 0.55rem 1.25rem; text-decoration: none; transition: all 0.3s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold); color: white; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--charcoal); transition: all 0.3s; }
.nav-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 101;
  background: var(--cream); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { font-size: 1.5rem; font-family: var(--serif); color: var(--charcoal); text-decoration: none; letter-spacing: 0.05em; }
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: var(--charcoal); }
.nav-mobile-cta { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold) !important; border: 0.5px solid var(--gold); padding: 0.75rem 2rem; font-family: var(--sans) !important; }

/* HERO */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  background:
    linear-gradient(180deg, rgba(44,40,37,0.45) 0%, rgba(44,40,37,0.5) 65%, var(--cream) 100%),
    url('../images/background.jpeg') center/cover no-repeat;
}
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.5rem; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem; max-width: 820px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1rem; color: rgba(250,247,242,0.8); max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.btn-primary { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; background: var(--gold); color: white; border: none; padding: 1rem 2.5rem; cursor: pointer; text-decoration: none; transition: background 0.3s; display: inline-block; }
.btn-primary:hover { background: #A0825A; }
.btn-secondary { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); text-decoration: none; border-bottom: 0.5px solid var(--gold); padding-bottom: 2px; transition: color 0.3s; }
.btn-secondary:hover { color: var(--gold); }

/* STRIP */
.strip { background: var(--charcoal); padding: 1rem 2rem; display: flex; justify-content: center; gap: 2rem; align-items: center; flex-wrap: wrap; }
.strip-item { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* SECTIONS */
.section-wrap { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.2; color: var(--charcoal); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; }
.divider { width: 40px; height: 0.5px; background: var(--gold); margin-bottom: 1.75rem; }

/* SOBRE */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 5/5; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -1.25rem; right: -1.25rem; width: 50%; aspect-ratio: 1; border: 0.5px solid var(--gold); pointer-events: none; }
.about-badge { position: absolute; top: 2rem; left: -1.5rem; background: var(--charcoal); color: var(--gold-light); padding: 1rem 1.25rem; text-align: center; }
.about-badge-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; display: block; line-height: 1; }
.about-badge-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-mid); }
.about-text p { color: var(--mid); margin-bottom: 1.25rem; font-size: 0.95rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.75rem; }
.about-val { padding: 0.9rem; border-left: 1px solid var(--gold); background: var(--gold-pale); }
.about-val-title { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.about-val-desc { font-size: 0.82rem; color: var(--mid); }

/* SERVICES */
.services-section { background: var(--charcoal); padding: 5rem 2rem; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-section .section-title { color: var(--gold-pale); }
.services-section .section-eyebrow { color: var(--gold-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.service-card { background: #35302B; padding: 2rem 1.75rem; transition: background 0.3s; }
.service-card:hover { background: #3E3730; }
.service-icon { font-size: 1.2rem; margin-bottom: 1.25rem; display: block; color: var(--gold); }
.service-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--gold-pale); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.83rem; color: var(--light-mid); line-height: 1.8; }

/* PROCESSO */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; }
.process-step { text-align: center; position: relative; }
.step-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--gold-pale); display: block; line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.82rem; color: var(--mid); }

/* DESTINOS */
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 6px; margin-top: 2.5rem; }
.dest-card { position: relative; overflow: hidden; }
.dest-card:first-child { grid-row: 1 / 3; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,40,37,0.75) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 1.25rem; }
.dest-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: white; font-style: italic; }

/* TESTEMUNHOS */
.testimonials-section { background: var(--gold-pale); padding: 5rem 2rem; }
.test-inner { max-width: 1200px; margin: 0 auto; }
.test-card-deco { position: absolute; bottom: -6px; right: -6px; width: 110px; opacity: 0.28; pointer-events: none; }
.test-carousel { overflow: hidden; margin-top: 3rem; }
.test-track { display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.test-card { flex-shrink: 0; background: white; padding: 1.75rem; border-bottom: 2px solid var(--gold); box-sizing: border-box; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.test-quote { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.test-quote::before { content: '\201C'; color: var(--gold); font-size: 1.8rem; line-height: 0.5; vertical-align: -0.35em; margin-right: 2px; }
.test-author { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.test-dest { font-size: 0.78rem; color: var(--mid); margin-top: 0.2rem; }
.test-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.test-arrow { width: 38px; height: 38px; border: 0.5px solid var(--gold); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; padding: 0; }
.test-arrow::before { content: ''; display: block; width: 8px; height: 8px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transition: border-color 0.3s; }
.test-prev::before { transform: rotate(135deg) translate(-2px,-2px); }
.test-next::before { transform: rotate(-45deg) translate(-2px,2px); }
.test-arrow:hover { background: var(--gold); }
.test-arrow:hover::before { border-color: white; }
.test-arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.test-dots { display: flex; gap: 0.4rem; align-items: center; }
.test-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); border: none; cursor: pointer; padding: 0; transition: all 0.35s; }
.test-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* CONTACTO */
.contact-section { background: var(--charcoal); padding: 5rem 2rem; }
.contact-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.contact-section .section-title { color: var(--gold-pale); }
.contact-section .section-eyebrow { color: var(--gold-light); }
.contact-intro { color: var(--light-mid); margin-bottom: 2.5rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-field label { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.4rem; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; background: white;
  border: 0.5px solid var(--border);
  color: var(--charcoal); padding: 0.8rem 1rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 300;
  outline: none; transition: border-color 0.3s; -webkit-appearance: none; border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--light-mid); opacity: 0.7; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select option { background: white; color: var(--charcoal); }
.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: #c0392b; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(44,40,37,0.78); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--cream); width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; padding: 2.5rem 2.5rem 2rem; position: relative; }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--mid); line-height: 1; padding: 6px; }
.modal-close:hover { color: var(--charcoal); }
.modal-progress { display: flex; gap: 5px; margin-bottom: 2rem; }
.modal-bar { flex: 1; height: 2px; background: var(--border); transition: background 0.4s; }
.modal-bar.done, .modal-bar.active { background: var(--gold); }
.modal-step-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.modal-step-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--charcoal); margin-bottom: 1.75rem; line-height: 1.2; }
.modal-step-title em { font-style: italic; color: var(--gold); }
.form-step { display: none; }
.form-step.active { display: block; }
.modal-fields { display: flex; flex-direction: column; gap: 0.85rem; }
.rgpd-note { font-size: 0.75rem; color: var(--light-mid); line-height: 1.6; margin-bottom: 0.75rem; }
.rgpd-note a { color: var(--gold); }
.modal-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 0.5px solid var(--border); }
.modal-btn-back { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; background: none; border: none; color: var(--mid); cursor: pointer; padding: 0; visibility: hidden; }
.modal-btn-back.visible { visibility: visible; }
.modal-btn-next { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--gold); color: white; border: none; padding: 0.85rem 1.75rem; cursor: pointer; transition: background 0.3s; }
.modal-btn-next:hover { background: #A0825A; }
.contact-also { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 0.5px solid rgba(184,151,106,0.2); display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; align-items: center; }
.contact-icon-link { color: var(--gold-light); transition: color 0.3s, transform 0.3s; display: flex; }
.contact-icon-link:hover { color: var(--gold); transform: translateY(-3px); }
.contact-icon-link svg { width: 30px; height: 30px; }

/* FOOTER */
footer { background: #1E1B18; padding: 2rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 52px; width: auto; filter: brightness(0) saturate(100%) invert(75%) sepia(20%) saturate(400%) hue-rotate(10deg) brightness(85%); }
.footer-copy { font-size: 0.72rem; color: var(--mid); }
.footer-social a { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-mid); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 0.25rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 5rem 1.5rem 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }

  .strip { gap: 1rem; padding: 1rem 1.5rem; }
  .strip-item { font-size: 0.58rem; }

  .section-wrap { padding: 3.5rem 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { order: -1; max-width: 80%; margin: 0 auto; }
  .about-badge { left: -0.75rem; }
  .about-img-accent { display: none; }

  .services-section { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .process-step::after { display: none; }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .dest-card:first-child { grid-row: auto; grid-column: 1 / 3; }

  .testimonials-section { padding: 3.5rem 1.5rem; }

  .contact-section { padding: 3.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-also { gap: 1.5rem; }

  footer { padding: 1.5rem 1.25rem; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .about-img-wrap { max-width: 100%; }
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .dest-card:first-child { grid-column: auto; }
  .process-steps { grid-template-columns: 1fr; }
}
