/* ════════════════════════════════════════════════════════════════
   GOLBAI PREMIUM — Sistema visual Sprint 4
   Prefijo gp- (Golbai Premium) para cero conflictos con CSS base
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --gp-verde:    #21463F;
  --gp-verde-d:  #16302B;
  --gp-crema:    #F7F5F0;
  --gp-grafito:  #1F2326;
  --gp-piedra:   #D8D5CF;
  --gp-acero:    #A7AD82;
  --gp-gris:     #5C5C58;
  --gp-gris2:    #8C8C86;
  --gp-max:      1280px;
  --gp-pad:      clamp(20px, 5vw, 80px);
}

/* ── Tokens globales ── */
.gp-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gp-acero); margin-bottom: 16px; display: block;
}
.gp-h1 {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800; line-height: .95;
  letter-spacing: -.03em;
}
.gp-h2 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.025em;
}
.gp-body {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75; color: var(--gp-gris);
}
.gp-link {
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gp-verde); text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px; transition: opacity .2s;
}
.gp-link:hover { opacity: .6; }
.gp-section-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; color: var(--gp-piedra);
  margin-bottom: 20px; display: block;
}

/* ── Botones ── */
.gp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; text-decoration: none;
  transition: all .2s; white-space: nowrap; cursor: pointer;
  font-family: inherit;
}
.gp-btn-primary {
  background: var(--gp-verde); color: var(--gp-crema);
  border: 1.5px solid var(--gp-verde);
}
.gp-btn-primary:hover {
  background: var(--gp-verde-d); border-color: var(--gp-verde-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(33,70,63,.25);
}
.gp-btn-ghost {
  background: transparent; color: var(--gp-crema);
  border: 1.5px solid rgba(247,245,240,.35);
}
.gp-btn-ghost:hover { border-color: var(--gp-crema); }
.gp-btn-outline {
  background: transparent; color: var(--gp-verde);
  border: 1.5px solid var(--gp-verde);
}
.gp-btn-outline:hover { background: var(--gp-verde); color: var(--gp-crema); }
.gp-btn-lg { padding: 20px 44px; font-size: 13px; }

/* ── Sección base ── */
.gp-section {
  max-width: var(--gp-max); margin: 0 auto;
  padding: clamp(80px,10vw,140px) var(--gp-pad);
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.gp-hero {
  background: var(--gp-verde);
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.gp-hero-img {
  position: relative; overflow: hidden;
  background: var(--gp-verde-d);
  order: 2;
}
.gp-hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.gp-hero-text {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px,10vh,120px) var(--gp-pad) clamp(64px,8vh,96px);
  order: 1; position: relative; z-index: 1;
}
.gp-hero .gp-h1 { color: var(--gp-crema); margin-bottom: 28px; }
.gp-hero-sub {
  font-size: clamp(15px,1.6vw,18px); color: rgba(247,245,240,.65);
  line-height: 1.7; max-width: 420px; margin-bottom: 44px;
}
.gp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   STRIP
   ══════════════════════════════════════════════════ */
.gp-strip {
  background: var(--gp-verde-d);
  border-top: 1px solid rgba(167,173,130,.15);
  border-bottom: 1px solid rgba(167,173,130,.1);
  display: flex; justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  padding: 20px var(--gp-pad);
  flex-wrap: wrap;
}
.gp-strip span {
  font-size: 13px; font-weight: 700;
  color: var(--gp-crema); letter-spacing: .02em;
  display: flex; align-items: center; gap: 8px;
}
.gp-strip span em {
  font-style: normal; font-weight: 400; font-size: 11px;
  color: var(--gp-acero); letter-spacing: .08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   ARGUMENTO (imagen + texto)
   ══════════════════════════════════════════════════ */
.gp-argument {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--gp-grafito);
  max-width: none;
}
.gp-argument-img {
  position: relative; overflow: hidden;
  background: #111; min-height: 560px;
}
.gp-argument-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gp-argument-text {
  padding: clamp(72px,9vw,120px) var(--gp-pad);
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.gp-argument-text--full {
  grid-column: 1 / -1;
  max-width: var(--gp-max); margin: 0 auto;
  padding: clamp(72px,9vw,120px) var(--gp-pad);
}
.gp-argument .gp-h2 { color: var(--gp-crema); margin-bottom: 24px; }
.gp-argument .gp-body { color: rgba(247,245,240,.65); margin-bottom: 32px; }
.gp-argument .gp-section-num { color: rgba(167,173,130,.4); }

/* Comparativa mini */
.gp-comparison { margin-bottom: 32px; }
.gp-comp-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
}
.gp-comp-row span { color: rgba(247,245,240,.5); }
.gp-comp-row strong { color: rgba(247,245,240,.35); letter-spacing: .04em; }
.gp-comp-yes span { color: var(--gp-acero); font-weight: 600; }
.gp-comp-yes strong { color: var(--gp-acero); }
.gp-argument .gp-link { color: var(--gp-acero); border-color: var(--gp-acero); }

/* ══════════════════════════════════════════════════
   PRODUCTO (conversión directa)
   ══════════════════════════════════════════════════ */
.gp-product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
  background: var(--gp-crema);
  max-width: none;
}
.gp-product-feature-img {
  position: relative; overflow: hidden;
  background: #e8e4dc; min-height: 560px;
}
.gp-product-feature-img--empty { background: #e8e4dc; }
.gp-product-feature-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .6s ease;
}
.gp-product-feature-img:hover img { transform: scale(1.03); }
.gp-product-feature-info {
  padding: clamp(72px,9vw,120px) var(--gp-pad);
  display: flex; flex-direction: column;
  justify-content: center;
}
.gp-product-feature .gp-h2 { color: var(--gp-verde); margin-bottom: 8px; }
.gp-price-big {
  font-size: clamp(42px,5vw,64px); font-weight: 800;
  color: var(--gp-verde); letter-spacing: -.03em;
  line-height: 1; margin-bottom: 8px;
}
.gp-price-note {
  font-size: 13px; color: var(--gp-gris2);
  margin-bottom: 32px; letter-spacing: .02em;
}
.gp-feat-list {
  list-style: none; margin-bottom: 40px;
}
.gp-feat-list li {
  font-size: 14px; color: var(--gp-gris);
  padding: 12px 0; border-bottom: 1px solid var(--gp-piedra);
  display: flex; align-items: center; gap: 12px;
}
.gp-feat-list li::before {
  content: '✓'; color: var(--gp-verde);
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   PROFESIONAL
   ══════════════════════════════════════════════════ */
.gp-professional {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
  background: var(--gp-verde);
  max-width: none;
}
.gp-professional-info {
  padding: clamp(72px,9vw,120px) var(--gp-pad);
  display: flex; flex-direction: column;
  justify-content: center;
}
.gp-professional .gp-h2 { color: var(--gp-crema); margin-bottom: 24px; }
.gp-professional .gp-body { color: rgba(247,245,240,.65); margin-bottom: 40px; }
.gp-professional .gp-section-num { color: rgba(167,173,130,.4); }
.gp-pro-links { display: flex; flex-wrap: wrap; gap: 10px; }
.gp-professional-img {
  position: relative; overflow: hidden;
  background: var(--gp-verde-d); min-height: 500px;
}
.gp-professional-img--empty { background: var(--gp-verde-d); }
.gp-professional-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════
   CITA
   ══════════════════════════════════════════════════ */
.gp-quote-section {
  background: var(--gp-grafito);
  padding: clamp(96px,12vw,160px) var(--gp-pad);
  text-align: center;
}
.gp-quote {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.02em; color: var(--gp-crema);
  max-width: 900px; margin: 0 auto 28px;
  font-style: normal;
}
.gp-quote-cite {
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gp-acero); font-style: normal;
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
}
.gp-quote-cite::before, .gp-quote-cite::after {
  content: ''; width: 48px; height: 1px;
  background: var(--gp-acero); opacity: .4;
}

/* ══════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════ */
.gp-cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--gp-verde);
}
.gp-cta-final-img {
  position: relative; overflow: hidden;
  background: var(--gp-verde-d);
}
.gp-cta-final-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.6);
}
.gp-cta-final-text {
  padding: clamp(64px,8vw,100px) var(--gp-pad);
  display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
}
.gp-cta-final .gp-h2 { color: var(--gp-crema); }
.gp-cta-final .gp-body { max-width: 380px; }

/* ══════════════════════════════════════════════════
   WOOCOMMERCE — carrito, checkout, producto
   ══════════════════════════════════════════════════ */
.gp-woo-page {
  background: #fff;
  min-height: 60vh;
  padding: clamp(48px,6vw,80px) 0;
}
.gp-woo-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 var(--gp-pad);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gp-hero { grid-template-columns: 1fr; min-height: auto; }
  .gp-hero-img { min-height: 55vw; order: 1; }
  .gp-hero-text { order: 2; padding-top: 48px; }
  .gp-argument,
  .gp-product-feature,
  .gp-professional,
  .gp-cta-final { grid-template-columns: 1fr; }
  .gp-argument-img,
  .gp-product-feature-img,
  .gp-professional-img,
  .gp-cta-final-img { min-height: 300px; position: relative; }
  .gp-argument-img img,
  .gp-product-feature-img img,
  .gp-professional-img img,
  .gp-cta-final-img img { position: relative; width: 100%; height: 300px; object-fit: cover; }
  .gp-professional { grid-template-columns: 1fr; }
  .gp-professional-img { order: -1; }
  .gp-strip { gap: 20px; }
}
@media (max-width: 600px) {
  .gp-hero-ctas { flex-direction: column; }
  .gp-pro-links { flex-direction: column; }
  .gp-strip { flex-direction: column; gap: 12px; align-items: center; }
}
