/* ==========================================================================
   MOMENTS PARIS — Design tokens
   ========================================================================== */
:root {
  --ivory: #FAF7F1;
  --ivory-deep: #F1EBDF;
  --ink: #1A1420;
  --ink-soft: #2A2130;
  --plum: #4A1B5C;
  --gold: #B8935A;
  --gold-light: #E8D9BE;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(.4,0,.2,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 720px; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }

.section-text {
  font-size: 17px;
  color: #4a4350;
  max-width: 620px;
}
.section-text.light { color: rgba(255,255,255,0.78); }
.section-text.center { margin-left: auto; margin-right: auto; text-align: center; }

.center { text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--plum);
  border-color: var(--plum);
  transform: translateY(-2px);
}
.btn-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 38px; font-size: 13px; }
.btn-header { padding: 12px 22px; font-size: 12px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 147, 90, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Configuração do Logotipo em Imagem */
.brand-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

.footer-logo {
  max-width: 130px;
  margin-bottom: 4px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.brand-name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.brand-name.light { color: var(--white); }
.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.main-nav { display: none; }
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-left: 32px;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.btn-header { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid rgba(184, 147, 90, 0.25);
  transition: max-height var(--transition);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  padding: 16px 24px;
  font-size: 15px;
  border-top: 1px solid rgba(184, 147, 90, 0.15);
}
.mobile-menu .btn { margin: 16px 24px; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .btn-header { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ivory);
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero-eiffel {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 380px;
  height: 620px;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 720px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: #4a4350;
  max-width: 520px;
  margin-bottom: 36px;
}

@media (min-width: 900px) {
  .hero { padding: 140px 0 150px; }
  .hero-eiffel { top: -60px; right: -20px; width: 460px; height: 740px; opacity: 0.14; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 80px 0; }
.section-alt { background: var(--ivory-deep); }
@media (min-width: 900px) { .section { padding: 120px 0; } }

.section-dark {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.dark-eiffel {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 520px;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}
.card {
  background: var(--white);
  padding: 40px 30px;
  border: 1px solid rgba(184, 147, 90, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 20, 32, 0.08);
}
.card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.card-icon svg { width: 100%; height: 100%; }
.card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card p { font-size: 15px; color: #5a5460; }

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Steps */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
}
.steps-line { display: none; }
.step { text-align: center; }
.step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--gold-light);
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: #5a5460; max-width: 260px; margin: 0 auto; }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps-line {
    display: block;
    position: absolute;
    top: 30px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
}

/* Check list */
.check-list {
  max-width: 640px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
  padding-bottom: 20px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* CTA final */
.cta-final { background: var(--ivory-deep); text-align: center; }
.cta-final .section-text { margin-top: 4px; margin-bottom: 40px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-tagline { margin-top: 6px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom { padding: 24px 0; }
.footer-bottom p { font-size: 12px; text-align: center; color: rgba(255,255,255,0.4); }

@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--ink);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(26, 20, 32, 0.35);
  z-index: 200;
  transition: transform var(--transition), background var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); background: var(--plum); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
