/* Sabor del Sur — premium Venezuelan food export brand
   Warm amber/gold palette, specialty food import feel, white-space heavy.
   No dropship vibes. Spanish-first copy.
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber-50:  #fffbeb;
  --amber-100:  #fef3c7;
  --amber-200:  #fde68a;
  --amber-400:  #fbbf24;
  --amber-500:  #f59e0b;
  --amber-600:  #d97706;
  --amber-700:  #b45309;
  --amber-800:  #92400e;
  --stone-50:   #fafaf9;
  --stone-100:  #f5f5f4;
  --stone-200:  #e7e5e4;
  --stone-300:  #d6d3d1;
  --stone-500:  #78716c;
  --stone-600:  #57534e;
  --stone-700:  #44403c;
  --stone-800:  #292524;
  --white:      #ffffff;
}

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

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--stone-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--amber-700);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span {
  font-weight: 400;
  color: var(--stone-500);
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--stone-700);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-whatsapp:hover { color: var(--amber-600); }

.nav-whatsapp svg { color: #25D366; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 1.5rem 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_143022/3ff0edc0-cca6-40b3-b892-b044ff44d767.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 251, 235, 0.95) 0%,
    rgba(255, 251, 235, 0.85) 45%,
    rgba(255, 251, 235, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-100);
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-700);
  margin-bottom: 1.5rem;
}

.hero-badge span { font-size: 1.1rem; }

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--stone-800);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--amber-600);
}

.hero-subhead {
  font-size: 1.125rem;
  color: var(--stone-600);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.hero-cta:active { transform: translateY(0); }

.hero-stat {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--stone-500);
  font-weight: 500;
}

/* ── SECTION WRAPPER ─────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--stone-50);
}

.container {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-600);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--stone-800);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* ── HOW IT WORKS ───────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--stone-200);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.step-number {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-500);
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--stone-800);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.5;
}

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
}

.testimonial-quote {
  font-size: 1.875rem;
  color: var(--amber-200);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--stone-700);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--stone-500);
}

.testimonial-flag { font-size: 1.25rem; }

.testimonial-stars {
  color: var(--amber-400);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* ── ORDER EXAMPLES ─────────────────────────── */
.order-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.order-card {
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.order-flag { font-size: 2rem; margin-bottom: 0.5rem; }

.order-city {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--stone-700);
  margin-bottom: 0.25rem;
}

.order-detail {
  font-size: 0.75rem;
  color: var(--stone-500);
  line-height: 1.4;
}

/* ── STATS ──────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-700);
}

/* ── TRUST SIGNALS ──────────────────────────── */
.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-700);
}

.trust-icon {
  font-size: 1.125rem;
}

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  background: var(--amber-50);
  border-top: 1px solid var(--amber-100);
  border-bottom: 1px solid var(--amber-100);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--stone-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-band p {
  color: var(--stone-600);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.cta-band .hero-cta {
  font-size: 1.0625rem;
  padding: 1rem 2.25rem;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--stone-800);
  color: var(--stone-300);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-400);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--stone-500);
  margin-bottom: 1.25rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--stone-300);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.15s;
}

.footer-contact:hover { color: var(--amber-400); }

.footer-contact svg { color: #25D366; flex-shrink: 0; }

.footer-location {
  font-size: 0.8125rem;
  color: var(--stone-500);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .order-examples { grid-template-columns: 1fr; }
  .hero-subhead { font-size: 1rem; }
  .section { padding: 3.5rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .nav-logo span { display: none; }
}