/* =============================================
   GENUS INTERNAL PAGES — SHARED DESIGN SYSTEM
   Extiende styles.css. Siempre cargar styles.css primero.
   ============================================= */

/* ---------- VARIABLES ---------- */
:root {
  --aqua:       #169ab0;
  --aqua-dark:  #0e7a8d;
  --aqua-light: #e8f6f9;
  --dark:       #07172f;
  --mid:        #3a4a5a;
  --light:      #f5f8fa;
  --border:     #dde3e8;
  --white:      #ffffff;
  --gold:       #b8955a;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 8px rgba(7,23,47,.07);
  --shadow-md:  0 8px 28px rgba(7,23,47,.10);
  --shadow-lg:  0 20px 60px rgba(7,23,47,.13);
  --font-main:  'Helvetica Neue', Arial, Helvetica, sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  margin: 0;
}

/* ---------- SHARED NAV ---------- */
.g-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.g-nav-inner {
  width: min(1430px, calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.g-nav-logo {
  display: flex;
  align-items: center;
}
.g-nav-logo img {
  width: 190px;
  height: auto;
  display: block;
}
.g-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.g-nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.g-nav-links a:hover,
.g-nav-links a.active {
  background: var(--aqua-light);
  color: var(--aqua);
}
.g-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-btn-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid #25d366;
  color: #18a34a;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.g-btn-wa:hover { background: #25d366; color: #fff; }
.g-btn-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  transition: background .18s;
}
.g-btn-cta:hover { background: var(--aqua); }

/* Hamburger mobile */
.g-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.g-nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- PAGE HERO ---------- */
.g-hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.g-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e2540 0%, #07172f 60%, #0a2535 100%);
}
.g-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1430px, calc(100% - 56px));
  margin: 0 auto;
}
.g-hero-tag {
  display: inline-block;
  background: rgba(22,154,176,.18);
  border: 1px solid rgba(22,154,176,.4);
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.g-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 20px;
  max-width: 820px;
  letter-spacing: -.02em;
}
.g-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 0 36px;
}
.g-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.g-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--aqua);
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.g-btn-primary:hover { background: var(--aqua-dark); transform: translateY(-1px); }
.g-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .2s, color .2s;
}
.g-btn-secondary:hover { border-color: var(--white); color: var(--white); }

/* ---------- SECTION WRAPPER ---------- */
.g-section {
  padding: 80px 0;
}
.g-section-light { background: var(--light); }
.g-section-white { background: var(--white); }
.g-section-dark  { background: var(--dark); color: var(--white); }

.g-wrap {
  width: min(1430px, calc(100% - 56px));
  margin: 0 auto;
}

/* ---------- SECTION HEADER ---------- */
.g-section-head {
  margin-bottom: 52px;
}
.g-section-tag {
  display: inline-block;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.g-section-head h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.g-section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 620px;
  margin: 0;
}
.g-section-dark .g-section-head p { color: rgba(255,255,255,.65); }
.g-section-head.centered { text-align: center; }
.g-section-head.centered p { margin: 0 auto; }

/* ---------- DIVIDER ---------- */
.g-divider {
  width: 48px;
  height: 3px;
  background: var(--aqua);
  border-radius: 3px;
  margin: 16px 0 0;
}
.g-section-head.centered .g-divider { margin: 16px auto 0; }

/* ---------- FOOTER (replica home) ---------- */
.g-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--white);
}
.g-footer-inner {
  width: min(1430px, calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.g-footer-logo { width: 190px; height: auto; }
.g-footer-info { font-size: 14px; line-height: 1.75; color: var(--mid); }
.g-footer-info strong { display: block; color: var(--dark); font-weight: 900; margin-bottom: 2px; }
.g-footer-cta {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 15px 22px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  transition: background .18s;
}
.g-footer-cta:hover { background: var(--aqua); }

/* =============================================
   PÁGINA: QUIÉNES SOMOS
   ============================================= */

/* Timeline */
.g-timeline {
  position: relative;
  padding-left: 0;
}
.g-timeline-line {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.g-tl-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.g-tl-item::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.g-tl-item:last-child::after { display: none; }
.g-tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--aqua);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.g-tl-item.active .g-tl-dot {
  background: var(--aqua);
  color: var(--white);
}
.g-tl-year {
  font-size: 22px;
  font-weight: 900;
  color: var(--aqua);
  margin-bottom: 6px;
  display: block;
}
.g-tl-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mid);
  padding: 0 10px;
}

/* Misión / Visión cards */
.g-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.g-mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.g-mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--aqua);
  border-radius: 4px 0 0 4px;
}
.g-mv-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}
.g-mv-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 12px;
}
.g-mv-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--mid);
  margin: 0;
}

/* Valores cards */
.g-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.g-valor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.g-valor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.g-valor-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--aqua-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.g-valor-card h4 {
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.g-valor-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

/* Por qué elegirnos grid */
.g-porque-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.g-porque-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .2s;
}
.g-porque-item:hover { box-shadow: var(--shadow-sm); }
.g-porque-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.g-porque-item span {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}

/* Video block */
.g-video-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.g-video-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,154,176,.15) 0%, transparent 60%);
}
.g-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}
.g-video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.g-video-play:hover { border-color: var(--aqua); background: rgba(22,154,176,.2); }
.g-video-placeholder p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* =============================================
   PÁGINA: PRODUCTOS
   ============================================= */

.g-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.g-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.g-product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--light);
}
.g-product-body {
  padding: 26px 24px;
}
.g-product-cat {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 8px;
  display: block;
}
.g-product-body h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 12px;
}
.g-product-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mid);
  margin: 0 0 18px;
}
.g-product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.g-product-detail-group label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 6px;
}
.g-product-detail-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.g-product-detail-group ul li {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  padding-left: 12px;
  position: relative;
}
.g-product-detail-group ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 900;
}

/* Banco de desarrollos */
.g-banco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.g-banco-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.g-banco-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--aqua);
}
.g-banco-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--aqua-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.g-banco-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

/* =============================================
   PÁGINA: LLAVE EN MANO
   ============================================= */

.g-badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22,154,176,.12);
  border: 2px solid var(--aqua);
  border-radius: 100px;
  padding: 12px 24px;
  color: var(--aqua);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

/* Process timeline vertical */
.g-process-timeline {
  position: relative;
  padding-left: 0;
}
.g-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.g-process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--aqua);
}
.g-process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.g-process-step h4 {
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 10px;
}
.g-process-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mid);
  margin: 0;
}

/* Envases section */
.g-envases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-envase-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, background .2s;
}
.g-envase-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.g-envase-icon { font-size: 40px; margin-bottom: 14px; }
.g-envase-item h4 {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 6px;
}
.g-envase-item p {
  font-size: 13.5px;
  color: var(--mid);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   PÁGINA: CALIDAD
   ============================================= */

.g-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.g-cert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.g-cert-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 auto 20px;
  border: 3px solid var(--aqua);
}
.g-cert-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 10px;
}
.g-cert-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mid);
  margin: 0;
}

/* Procesos calidad */
.g-procesos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.g-proceso-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow .2s;
}
.g-proceso-item:hover { box-shadow: var(--shadow-sm); }
.g-proceso-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--aqua-light);
  border: 2px solid var(--aqua);
  color: var(--aqua);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.g-proceso-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* Indicadores */
.g-indicadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-indicador {
  background: rgba(22,154,176,.07);
  border: 1px solid rgba(22,154,176,.2);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
}
.g-indicador-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.g-indicador p {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* =============================================
   PÁGINA: CONTACTO
   ============================================= */

.g-contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.g-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.g-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.g-field label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 7px;
}
.g-field input,
.g-field textarea,
.g-field select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.g-field input:focus,
.g-field textarea:focus,
.g-field select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(22,154,176,.12);
}
.g-field textarea { resize: vertical; min-height: 130px; }
.g-form-submit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.g-btn-submit {
  padding: 16px 36px;
  background: var(--aqua);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s, transform .2s;
  font-family: var(--font-main);
}
.g-btn-submit:hover { background: var(--aqua-dark); transform: translateY(-1px); }

/* Contact info card */
.g-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.g-contact-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.g-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.g-contact-item-body label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.g-contact-item-body a,
.g-contact-item-body span {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: block;
}
.g-contact-item-body a:hover { color: var(--aqua); }
.g-map-placeholder {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.g-map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================
   PÁGINA: COTIZADOR
   ============================================= */

.g-wizard-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.g-wizard-progress {
  display: flex;
  gap: 0;
  margin-bottom: 52px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.g-wizard-step-dot {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mid);
  border-radius: 100px;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.g-wizard-step-dot.active {
  background: var(--aqua);
  color: var(--white);
}
.g-wizard-step-dot.done {
  background: rgba(22,154,176,.15);
  color: var(--aqua);
}

.g-wizard-panel {
  display: none;
  animation: fadeIn .3s ease;
}
.g-wizard-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.g-step-header {
  margin-bottom: 30px;
}
.g-step-num {
  display: inline-block;
  background: var(--aqua);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.g-step-header h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 6px;
}
.g-step-header p {
  font-size: 15px;
  color: var(--mid);
  margin: 0;
}

/* Radio / checkbox options */
.g-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.g-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.g-option-label input { display: none; }
.g-option-label:hover { border-color: var(--aqua); background: var(--aqua-light); }
.g-option-label.selected {
  border-color: var(--aqua);
  background: var(--aqua-light);
  color: var(--aqua);
}
.g-option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .18s, background .18s;
}
.g-option-label.selected .g-option-check {
  background: var(--aqua);
  border-color: var(--aqua);
}
.g-option-label.selected .g-option-check::after {
  content: '✓';
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

/* Yes/No options */
.g-yn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.g-yn-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: border-color .18s, background .18s;
}
.g-yn-label input { display: none; }
.g-yn-label:hover { border-color: var(--aqua); background: var(--aqua-light); }
.g-yn-label.selected { border-color: var(--aqua); background: var(--aqua-light); color: var(--aqua); }

/* Wizard nav buttons */
.g-wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.g-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  cursor: pointer;
  font-family: var(--font-main);
  transition: border-color .18s, color .18s;
}
.g-btn-back:hover { border-color: var(--dark); color: var(--dark); }
.g-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--aqua);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background .2s;
}
.g-btn-next:hover { background: var(--aqua-dark); }
.g-btn-final {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background .2s;
}
.g-btn-final:hover { background: var(--aqua); }

/* Summary card */
.g-summary-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.g-summary-card h4 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 16px;
}
.g-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.g-summary-row:last-child { border-bottom: none; }
.g-summary-row label { color: var(--mid); font-weight: 600; }
.g-summary-row span { font-weight: 700; color: var(--dark); }

/* Success state */
.g-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.g-success.active { display: block; }
.g-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.g-success h2 { font-size: 28px; font-weight: 900; margin: 0 0 12px; }
.g-success p { font-size: 16px; color: var(--mid); margin: 0 0 28px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .g-porque-grid { grid-template-columns: repeat(2, 1fr); }
  .g-banco-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .g-nav-links, .g-nav-actions { display: none; }
  .g-nav-hamburger { display: flex; }
  .g-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 99;
    gap: 4px;
  }
  .g-nav-links.open + .g-nav-actions {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    z-index: 99;
    gap: 10px;
  }
  .g-mv-grid         { grid-template-columns: 1fr; }
  .g-valores-grid    { grid-template-columns: repeat(2, 1fr); }
  .g-products-grid   { grid-template-columns: 1fr 1fr; }
  .g-process-grid    { grid-template-columns: 1fr 1fr; }
  .g-envases-grid    { grid-template-columns: 1fr 1fr; }
  .g-cert-grid       { grid-template-columns: 1fr; }
  .g-procesos-grid   { grid-template-columns: 1fr; }
  .g-indicadores-grid{ grid-template-columns: 1fr; }
  .g-contact-grid    { grid-template-columns: 1fr; }
  .g-options-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .g-section         { padding: 52px 0; }
  .g-hero            { padding: 52px 0 48px; }
  .g-valores-grid    { grid-template-columns: 1fr; }
  .g-products-grid   { grid-template-columns: 1fr; }
  .g-process-grid    { grid-template-columns: 1fr; }
  .g-envases-grid    { grid-template-columns: 1fr; }
  .g-porque-grid     { grid-template-columns: 1fr; }
  .g-banco-grid      { grid-template-columns: 1fr 1fr; }
  .g-options-grid    { grid-template-columns: 1fr 1fr; }
  .g-yn-grid         { grid-template-columns: 1fr; }
  .g-field-group     { grid-template-columns: 1fr; }
  .g-product-details { grid-template-columns: 1fr; }
  .g-tl-item         { min-width: 140px; }
  .g-footer-inner    { flex-direction: column; align-items: flex-start; }
}
