:root {
  --navy: #284C78;
  --navy-dark: #1c3657;
  --gold: #BE9A6A;
  --beige: #E8D4BC;
  --cream: #FAF8F3;
  --sky: #6D9AC6;
  --gray-light: #D3D6D6;
  --gray-mid: #808080;
  --max-w: 1160px;
}

@font-face {
  font-family: "Rex Bold";
  src: url("../fonts/RexBold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/GothamRoundedBook.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/GothamRoundedMedium.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy-dark);
  font-family: "Gotham Rounded", "Century Gothic", "Futura", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .headline {
  font-family: "Rex Bold", "Century Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: "Gotham Rounded", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.9em;
  display: inline-block;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: #ab8659; box-shadow: 0 8px 20px rgba(190,154,106,0.35); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(40,76,120,0.08);
  transition: background 0.2s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  flex-wrap: nowrap;
}
.site-header img.logo { height: 73px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-gallinas.jpg");
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,54,87,0.55) 0%, rgba(28,54,87,0.72) 55%, rgba(28,54,87,0.92) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 126px;
  padding-bottom: 70px;
}
.hero h1 { color: #fff; max-width: 780px; }
.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 1.6em; }
.hero-tagline {
  margin-top: 2.6em;
  font-family: "Rex Bold", serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* Section basics */
section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-beige { background: var(--beige); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy .eyebrow { color: #fff; }
.section-navy .eyebrow { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Manifesto / pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2.5rem;
}
.pillar {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(40,76,120,0.06);
}
.pillar .num {
  font-family: "Rex Bold", serif;
  color: var(--gold);
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4em;
}
.pillar h3 { margin-bottom: 0.5em; }
.pillar p { color: #4a5568; margin: 0; font-size: 0.96rem; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.manifesto-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(40,76,120,0.18);
}
.manifesto-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2.5rem;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(40,76,120,0.07);
  display: flex;
  flex-direction: column;
}
.product-card .photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { margin-bottom: 0.3em; }
.product-card .price {
  font-family: "Rex Bold", serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin: 0.2em 0 0.6em;
}
.product-card .unit { font-size: 0.82rem; color: var(--gray-mid); font-weight: 400; }
.product-card p.desc { color: #4a5568; font-size: 0.92rem; flex: 1; }
.product-card .btn { margin-top: 12px; align-self: flex-start; }

.product-note {
  margin-top: 2.2rem;
  padding: 18px 22px;
  background: rgba(190,154,106,0.14);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.94rem;
  max-width: 680px;
}

/* Zonas / how it works */
.zonas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 2.5rem;
}
.zona-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 30px 28px;
}
.zona-card h3 { color: var(--gold); margin-bottom: 0.6em; }
.zona-card ul { margin: 0; padding-left: 1.1em; color: rgba(255,255,255,0.9); }
.zona-card li { margin-bottom: 0.4em; }
.zona-steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.zona-step {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px;
}
.zona-step .step-num {
  font-family: "Rex Bold", serif;
  color: var(--gold);
  font-size: 1.6rem;
}

/* Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 2.5rem;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 12px 30px rgba(40,76,120,0.07);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.review-card p.quote {
  flex: 1;
  color: #33475b;
  font-size: 0.97rem;
}
.review-card .who {
  font-weight: 600;
  color: var(--navy);
  margin-top: 10px;
}
.review-card .where { color: var(--gray-mid); font-size: 0.85rem; }

.reviews-cta {
  margin-top: 2.8rem;
  text-align: center;
}

/* Representantes */
.rep-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.rep-list { list-style: none; margin: 1.6em 0; padding: 0; }
.rep-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 0.8em;
}
.rep-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.rep-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(40,76,120,0.12);
}
.rep-zonas { margin: 0 0 2em; }
.rep-zonas-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.9em;
}
.rep-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.rep-chip {
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(40,76,120,0.08);
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-grid img.logo { height: 30px; margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-grid h4 {
  font-family: "Gotham Rounded", sans-serif;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.7em; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* Responsive */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-grid .manifesto-photo { order: -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .zonas-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rep-section { grid-template-columns: 1fr; }
  .rep-section .rep-photo { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline-navy { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 10px; }
  .site-header .btn-gold {
    padding: 10px 16px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .site-header .container { min-height: 76px; }
  .site-header img.logo { height: 49px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(40,76,120,0.1);
  }
  section { padding: 64px 0; }
  .product-grid { grid-template-columns: 1fr; }
}
