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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f5ece0;
  color: #1a2e1f;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9521a;
  display: block;
  margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #1a2e1f; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: #3d5c3a; max-width: 520px; line-height: 1.7; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 46, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #f5ece0;
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
}
.logo strong { font-weight: 700; color: #c9521a; }
.header-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.header-nav a {
  color: rgba(245,236,224,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: #f5ece0; }
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: #20bd5a; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: 1fr;
  overflow: hidden;
  padding-top: 64px;
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,31,0.5) 0%, rgba(26,46,31,0.1) 60%, transparent 100%);
}
.hero-content {
  background: #1a2e1f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 3.5rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,82,26,0.15);
  border: 1px solid rgba(201,82,26,0.4);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: #e8a87a;
  font-weight: 500;
  margin-bottom: 2rem;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c9521a;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #f5ece0;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-headline em { font-style: normal; color: #c9521a; }
.hero-sub {
  font-size: 1rem;
  color: rgba(245,236,224,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 360px;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #c9521a;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #b34416; transform: translateY(-1px); }
.btn-primary.btn-large { font-size: 1rem; padding: 1rem 1.75rem; border-radius: 10px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(245,236,224,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(245,236,224,0.3);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #f5ece0; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1a2e1f;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: 2px solid #1a2e1f;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(26,46,31,0.08); }
.hero-callout {
  position: absolute;
  bottom: 3rem;
  left: 3.5rem;
  right: 3rem;
}
.callout-inner {
  background: rgba(245,236,224,0.97);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(201,82,26,0.2);
}
.callout-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3d5c3a;
  margin-bottom: 0.75rem;
}
.callout-split {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.split-item { text-align: center; flex: 1; }
.split-pct {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #c9521a;
  line-height: 1;
}
.split-desc {
  font-size: 0.75rem;
  color: #3d5c3a;
  font-weight: 500;
}
.split-divider { display: flex; align-items: center; }
.callout-footnote {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #6b8a6b;
  text-align: center;
}

/* === PILLARS === */
.pillars {
  background: #1a2e1f;
  padding: 2.5rem 0;
}
.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 0 1.5rem;
}
.pillar-icon { flex-shrink: 0; }
.pillar-body { display: flex; flex-direction: column; }
.pillar-body strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5ece0;
}
.pillar-body span { font-size: 0.8rem; color: rgba(245,236,224,0.6); }
.pillar-sep { width: 1px; height: 48px; background: rgba(245,236,224,0.1); flex-shrink: 0; }

/* === MARQUES === */
.marques { padding: 6rem 0; background: #f5ece0; }
.marques-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.marques-header { text-align: center; margin-bottom: 3.5rem; }
.marques-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.type-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 24px rgba(26,46,31,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,46,31,0.14); }
.type-img-wrap { height: 180px; overflow: hidden; background: #1a2e1f; }
.type-img { width: 100%; height: 100%; object-fit: cover; }
.type-info {
  padding: 1.25rem 1.5rem;
  background: white;
}
.type-info strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #1a2e1f; margin-bottom: 0.4rem; }
.type-info span { font-size: 0.82rem; color: #3d5c3a; line-height: 1.5; }
.marques-brands { text-align: center; }
.brands-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #3d5c3a; display: block; margin-bottom: 1rem; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.brand-tag {
  background: white;
  border: 1px solid rgba(26,46,31,0.15);
  color: #1a2e1f;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* === PROCEDURE === */
.procedure { padding: 6rem 0; background: #1a2e1f; }
.procedure-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.procedure-header { text-align: center; margin-bottom: 4rem; }
.procedure-header .section-title { color: #f5ece0; }
.procedure-header .section-sub { color: rgba(245,236,224,0.6); }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step { max-width: 220px; text-align: center; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #c9521a;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-body h3 { font-size: 1rem; font-weight: 700; color: #f5ece0; margin-bottom: 0.6rem; }
.step-body p { font-size: 0.82rem; color: rgba(245,236,224,0.6); line-height: 1.6; }
.step-connector { padding: 0 1rem; padding-bottom: 4rem; }
.procedure-cta { text-align: center; margin-top: 3rem; }

/* === PAIEMENT === */
.paiement { padding: 6rem 0; background: #f5ece0; }
.paiement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.paiement-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,46,31,0.15);
}
.paiement-intro {
  font-size: 1rem;
  color: #3d5c3a;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.paiement-steps { display: flex; flex-direction: column; gap: 0; }
.paiem-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26,46,31,0.1);
}
.paiem-step:last-of-type { border-bottom: none; }
.paiem-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #c9521a;
  line-height: 1;
  min-width: 80px;
}
.paiem-num span { font-size: 1.5rem; }
.paiem-info strong { display: block; font-size: 1rem; color: #1a2e1f; margin-bottom: 0.4rem; }
.paiem-info p { font-size: 0.85rem; color: #3d5c3a; line-height: 1.6; }
.paiem-arrow { display: flex; justify-content: center; padding: 0.5rem 0; }
.paiement-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #3d5c3a;
  font-weight: 500;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(26,46,31,0.05);
  border-radius: 8px;
}

/* === ZONE === */
.zone { padding: 6rem 0; background: #1a2e1f; }
.zone-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.zone-header { text-align: center; margin-bottom: 4rem; }
.zone-header .section-title { color: #f5ece0; }
.zone-header .section-sub { color: rgba(245,236,224,0.6); }
.zone-cities { margin-bottom: 3.5rem; }
.city-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.city-item {
  background: rgba(245,236,224,0.08);
  border: 1px solid rgba(245,236,224,0.12);
  color: rgba(245,236,224,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.city-primary {
  background: rgba(201,82,26,0.15);
  border-color: rgba(201,82,26,0.3);
  color: #e8a87a;
  font-weight: 700;
}
.zone-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(245,236,224,0.3);
  border: 2px solid rgba(245,236,224,0.4);
}
.tl-done { background: #c9521a; border-color: #c9521a; }
.tl-final { background: #4a8c4a; border-color: #4a8c4a; }
.tl-label { font-size: 0.75rem; color: rgba(245,236,224,0.6); text-align: center; white-space: nowrap; }
.timeline-line { width: 80px; height: 2px; background: rgba(245,236,224,0.15); margin-bottom: 22px; }

/* === CLOSING === */
.closing {
  padding: 8rem 0;
  background: #c9521a;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.closing-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.closing-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 3rem; line-height: 1.7; }
.closing-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.closing .btn-primary { background: white; color: #c9521a; }
.closing .btn-primary:hover { background: #f5ece0; }
.closing .btn-outline { border-color: white; color: white; }
.closing .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* === FOOTER === */
.site-footer {
  background: #111d12;
  padding: 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,236,224,0.5);
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-brand-name { color: #f5ece0; }
.footer-contact { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact a { color: rgba(245,236,224,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-contact a:hover { color: #f5ece0; }
.footer-sep { color: rgba(245,236,224,0.2); }
.footer-legal { font-size: 0.75rem; color: rgba(245,236,224,0.3); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 50vh; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-callout { position: static; margin-top: 2rem; }
  .pillars-inner { flex-direction: column; gap: 1.5rem; }
  .pillar-sep { width: 40px; height: 1px; }
  .marques-types { grid-template-columns: 1fr; }
  .steps { gap: 2rem; }
  .step-connector { display: none; }
  .paiement-inner { grid-template-columns: 1fr; }
  .paiement-visual { display: none; }
  .header-nav { display: none; }
  .zone-timeline { flex-direction: column; gap: 1rem; }
  .timeline-line { width: 2px; height: 30px; margin-bottom: 0; }
}
@media (max-width: 600px) {
  .city-row { gap: 0.75rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .paiem-step { gap: 1rem; }
  .paiem-num { min-width: 60px; font-size: 2.2rem; }
}