/* ============================================================
   TROPICAL DRAGON FRUITS™ — Design System v3 (Brand Guidelines)
   Colors: Magenta #CC1A5C · Purple #371439 · Green #48713E
   Fonts: Montserrat (body/display) | Golden Ratio 1.618
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ── Brand Colors (Tropical Dragon Fruits™ Guidelines) ── */
  --white:        #FFFFFF;
  --off-white:    #F9F8F5;
  --blush:        #FDEEF5;
  --sage-light:   #EBF3E9;
  --forest:       #371439;      /* Pantone 2695C — deep purple */
  --forest-mid:   #4F1E5E;      /* medium purple */
  --sage:         #48713E;      /* Pantone 7742C — green */
  --pitahaya:     #CC1A5C;      /* Pantone 214C — magenta primary */
  --pitahaya-dk:  #A51549;      /* darker magenta */
  --pitahaya-lt:  #FDEEF5;      /* light magenta tint */
  --gold:         #48713E;      /* repurposed → brand green */
  --gold-lt:      #EBF3E9;
  --charcoal:     #1A1A1A;
  --charcoal-s:   #3D3D3D;
  --gray:         #666666;
  --gray-md:      #999999;
  --gray-lt:      #E5E1DB;
  --border:       rgba(55,20,57,0.10);

  /* ── Typography (Brand: Montserrat across all weights) ── */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* ── Layout ───────────────────────────────────────────── */
  --max-w:        1200px;
  --max-w-n:      760px;
  --sy:           96px;
  --sy-sm:        56px;

  /* ── Tokens ───────────────────────────────────────────── */
  --tr:           0.3s ease;
  --tr-sl:        0.55s cubic-bezier(0.16,1,0.3,1);
  --shadow:       0 2px 16px rgba(0,0,0,0.06);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.09);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pitahaya);
  display: inline-block;
  margin-bottom: 12px;
}
.eyebrow--green { color: var(--sage); }
.eyebrow--gold  { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,0.7); }

.display-1 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.1; font-weight: 700; }
.display-2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 700; }
.display-3 { font-size: clamp(1.4rem, 2.2vw, 2.2rem); font-weight: 600; }
.lead {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.9;
  font-weight: 400;
}
.lead--white { color: rgba(255,255,255,0.75); }

/* ── Utilities ───────────────────────────────────────────── */
.container     { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.container--n  { max-width: var(--max-w-n); margin: 0 auto; padding: 0 32px; }
.section       { padding: var(--sy) 0; }
.section--sm   { padding: var(--sy-sm) 0; }
.text-center   { text-align: center; }
.text-center .lead { margin: 0 auto; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--tr), transform 0.65s var(--tr); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s var(--tr), transform 0.65s var(--tr); }
.reveal-l.visible { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(28px); transition: opacity 0.65s var(--tr), transform 0.65s var(--tr); }
.reveal-r.visible { opacity: 1; transform: none; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--tr);
  white-space: nowrap;
}
.btn--primary {
  background: var(--pitahaya);
  color: var(--white);
}
.btn--primary:hover { background: var(--pitahaya-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,26,92,0.3); }

.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--forest:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(55,20,57,0.35); }

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: var(--white); color: var(--forest); }

.btn--white {
  background: var(--white);
  color: var(--forest);
}
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Language Toggle ─────────────────────────────────────── */
.lang-toggle {
  display: flex;
  background: rgba(55,20,57,0.08);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--forest);
  transition: all var(--tr);
}
.lang-btn.active { background: var(--pitahaya); color: var(--white); }
.lang-btn:hover:not(.active) { background: rgba(55,20,57,0.12); }

/* Bilingual visibility */
.lang-es .lang-en, .lang-en .lang-es { display: none !important; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--tr);
  letter-spacing: -0.01em;
}
.nav.scrolled .nav__logo-name { color: var(--forest); }
.nav__logo-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  transition: color var(--tr);
}
.nav.scrolled .nav__logo-tag { color: var(--pitahaya); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--tr);
}
.nav.scrolled .nav__link { color: var(--charcoal); }
.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: var(--pitahaya);
}
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--white);
  background: var(--pitahaya);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav.scrolled .lang-toggle { background: rgba(55,20,57,0.08); }
.nav .lang-toggle { background: rgba(255,255,255,0.15); }
.nav .lang-btn { color: rgba(255,255,255,0.85); }
.nav.scrolled .lang-btn { color: var(--forest); }
.nav .lang-btn.active { background: var(--pitahaya); color: var(--white); }
.nav.scrolled .lang-btn.active { background: var(--pitahaya); color: var(--white); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--tr);
}
.nav.scrolled .nav__hamburger span { background: var(--charcoal); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav__mobile.open { transform: none; }
.nav__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.nav__mobile-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
}
.nav__mobile-close {
  font-size: 1.8rem;
  color: var(--gray);
  line-height: 1;
}
.nav__mobile-links { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-lt);
  transition: color var(--tr);
}
.nav__mobile-link:hover { color: var(--pitahaya); }
.nav__mobile-footer { padding-top: 32px; display: flex; gap: 16px; align-items: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0920 0%, #371439 50%, #4F1E5E 100%);
}
.hero__bg-img,
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,9,32,0.88) 0%, rgba(55,20,57,0.4) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__text { }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,26,92,0.2);
  border: 1px solid rgba(204,26,92,0.4);
  color: #F8A0BF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__title span { color: #F472B6; }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero__stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── About Split ─────────────────────────────────────────── */
.about-split {
  background: var(--off-white);
}
.about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__img-wrap {
  position: relative;
}
.about-split__img-duo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--forest) 0%, #CC1A5C 100%);
}
.about-split__img--flower {
  aspect-ratio: 16/9;
}
.about-split__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--pitahaya);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-split__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-split__badge-label {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}
.about-split__content { padding-left: 20px; }
.about-split__content h2 { margin-bottom: 20px; }
.about-split__content p { color: var(--gray); margin-bottom: 16px; line-height: 1.85; }
.about-split__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-split__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.about-split__highlight-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pitahaya);
  flex-shrink: 0;
}

/* ── Products Section ────────────────────────────────────── */
.products-section {
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; color: var(--charcoal); }
.section-header .lead { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-lt);
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sage-light), var(--pitahaya-lt));
}
.product-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__tag {
  display: inline-block;
  background: var(--pitahaya-lt);
  color: var(--pitahaya);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.product-card__tag--green { background: var(--sage-light); color: var(--forest-mid); }
.product-card__tag--gold { background: var(--gold-lt); color: #8B6A30; }
.product-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pitahaya);
  margin-bottom: 16px;
}
.product-card__price small { font-size: 0.75rem; color: var(--gray); font-weight: 400; }
.product-card__actions { display: flex; gap: 10px; }

/* Featured product card (wide) */
.product-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-card--featured .product-card__img { aspect-ratio: auto; min-height: 280px; }

/* ── Why Us ──────────────────────────────────────────────── */
.why-us {
  background: var(--forest);
}
.why-us h2 { color: var(--white); margin-bottom: 14px; }
.why-us .lead { color: rgba(255,255,255,0.65); margin: 0 auto 56px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--tr);
}
.pillar:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.pillar__icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white);
}
.pillar__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar__desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── Varieties ───────────────────────────────────────────── */
.varieties {
  background: var(--blush);
}
.varieties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.variety-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.variety-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.variety-card--vw .variety-card__img {
  background: linear-gradient(135deg, #e8f4ea, #c8e6cc);
}
.variety-card--tr .variety-card__img {
  background: linear-gradient(135deg, #fce4e4, #f4b0b0);
}
.variety-card__body { padding: 28px; }
.variety-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.variety-card__subtitle {
  font-size: 0.82rem;
  color: var(--pitahaya);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.variety-card__desc { font-size: 0.92rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.variety-card__specs { display: flex; gap: 16px; flex-wrap: wrap; }
.variety-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--charcoal-s);
  font-weight: 600;
}
.variety-card__spec::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* ── Segments ────────────────────────────────────────────── */
.segments {
  background: var(--sage-light);
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.segment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--tr);
  border: 1px solid var(--border);
}
.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.segment-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--sage-light);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--sage);
}
.segment-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.segment-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--pitahaya);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner__inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner__inner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Blog Preview ────────────────────────────────────────── */
.blog-preview { background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-lt);
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card__img--green  { background: linear-gradient(135deg, #c8e6d0, #a8d5b0); }
.blog-card__img--pink   { background: linear-gradient(135deg, #fdd5e0, #f5a8c0); }
.blog-card__img--yellow { background: linear-gradient(135deg, #fde8c8, #f5d090); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pitahaya);
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card__excerpt { font-size: 0.88rem; color: var(--gray); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-md);
}
.blog-card__read-more {
  color: var(--pitahaya);
  font-weight: 700;
  font-size: 0.82rem;
  transition: color var(--tr);
}
.blog-card__read-more:hover { color: var(--pitahaya-dk); }

/* ── Export Section ──────────────────────────────────────── */
.export-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.export-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.export-text h2 { color: var(--white); margin-bottom: 16px; }
.export-text p { color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 20px; }
.export-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.export-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.95rem;
}
.export-point::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--pitahaya);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.export-countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.export-country {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.export-country__flag { display: block; margin-bottom: 8px; }
.flag-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 36px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
}
.export-country__name { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.footer__brand-tag {
  font-size: 0.72rem;
  color: var(--pitahaya);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--tr);
}
.footer__social:hover { background: var(--pitahaya); transform: translateY(-2px); }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--tr);
}
.footer__col-link:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: var(--pitahaya); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--tr);
  font-size: 1.4rem;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { color: var(--white); font-size: clamp(2rem,4vw,3.5rem); margin-bottom: 16px; }
.page-hero__subtitle { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: var(--forest); margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; line-height: 1.85; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-md);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-item__value a { transition: color var(--tr); }
.contact-item__value a:hover { color: var(--pitahaya); }
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 { color: var(--forest); margin-bottom: 24px; font-size: 1.4rem; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal-s);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.93rem;
  color: var(--charcoal);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pitahaya);
  box-shadow: 0 0 0 3px rgba(204,26,92,0.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 56px; height: 56px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage);
}
.form-success__title { font-size: 1.3rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.form-success__msg { color: var(--gray); }

/* ── Nosotros Page ───────────────────────────────────────── */
.nosotros-story { background: var(--white); }
.nosotros-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotros-values { background: var(--sage-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--pitahaya-lt);
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--pitahaya);
}
.value-card__title { font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 10px; }
.value-card__desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.nosotros-team { background: var(--blush); }
.team-content { max-width: 720px; margin: 0 auto; text-align: center; }
.team-content h2 { color: var(--forest); margin-bottom: 16px; }
.team-content p { color: var(--gray); line-height: 1.85; margin-bottom: 16px; }

/* ── Catalog Page ────────────────────────────────────────── */
.catalog-section { background: var(--white); }
.catalog-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--gray-lt);
  padding-bottom: 0;
}
.catalog-tab {
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--tr);
}
.catalog-tab.active { color: var(--pitahaya); border-bottom-color: var(--pitahaya); }
.catalog-tab:hover:not(.active) { color: var(--charcoal); }
.catalog-panel { display: none; }
.catalog-panel.active { display: block; }
.catalog-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-products-grid--duo {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 780px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── Export Page ─────────────────────────────────────────── */
.export-page { background: var(--white); }
.export-hero-section { background: var(--forest); padding: 160px 0 80px; }
.export-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.export-info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
}
.export-info-card h3 { color: var(--forest); margin-bottom: 12px; font-size: 1.1rem; }
.export-info-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.8; }
.export-markets { background: var(--sage-light); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.markets-grid--regions {
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.market-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--tr);
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.market-card__flag { display: block; margin-bottom: 12px; }
.market-card__flag .flag-code {
  width: 56px; height: 40px;
  background: var(--pitahaya-lt);
  border: 1.5px solid var(--pitahaya);
  color: var(--pitahaya);
  border-radius: 6px;
  font-size: 0.75rem;
}
.market-card__name { font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.market-card__status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.market-card__status--active { color: var(--forest-mid); }
.market-card__status--soon { color: var(--pitahaya); }

/* ── Blog Page ───────────────────────────────────────────── */
.blog-section { background: var(--off-white); }
.blog-featured {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}
.blog-featured__img {
  aspect-ratio: auto;
  min-height: 360px;
  object-fit: cover;
  background: linear-gradient(135deg, #c8e6d0, #a8d5b0);
}
.blog-featured__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pitahaya);
  margin-bottom: 14px;
}
.blog-featured__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-featured__excerpt { color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.blog-featured__meta { font-size: 0.8rem; color: var(--gray-md); }

/* ── Article Pages ───────────────────────────────────────── */
.article-section { background: var(--white); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest);
  margin: 48px 0 18px;
}
.article-body h3 { font-size: 1.25rem; color: var(--forest); margin: 32px 0 14px; }
.article-body p { color: var(--gray); line-height: 1.9; margin-bottom: 18px; }
.article-body ul { color: var(--gray); margin: 0 0 18px 20px; list-style: disc; }
.article-body li { margin-bottom: 8px; line-height: 1.8; }
.article-body strong { color: var(--charcoal); font-weight: 700; }
.article-back { color: var(--pitahaya); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.article-back:hover { color: var(--pitahaya-dk); }

/* ── Nutrient Grid (blog article) ───────────────────────── */
.nutrient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.nutrient-card {
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.nutrient-card__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.nutrient-card__label { font-size: 0.8rem; color: var(--gray); }

/* ── Comparison Table ────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}
.comparison-table th {
  background: var(--forest);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
}
.comparison-table td { padding: 13px 20px; border-bottom: 1px solid var(--gray-lt); color: var(--gray); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sy: 64px; --sy-sm: 40px; }
  .container { padding: 0 20px; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .hero__stats { display: none; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .about-split__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-split__content { padding-left: 0; }
  .about-split__badge { right: 0; bottom: -16px; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-template-columns: 1fr; }

  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .varieties-grid { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .export-grid { grid-template-columns: 1fr; gap: 40px; }
  .export-countries { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-featured { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .nosotros-story__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-products-grid { grid-template-columns: 1fr; }
  .nutrient-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .export-info-grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .export-countries { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}
