/* ══════════════════════════════════════════════════════════════════════════
   PB AGROBIO — styles.css
   Estilos del sitio web oficial. Paleta de marca: verde oscuro, lima, verde.
   Tipografía: Be Vietnam Pro (Google Fonts)
   ══════════════════════════════════════════════════════════════════════════ */


:root {
  --dark: #1C3B34;
  --c1: #0f2420;
  --c2: #4CC35A;
  --c3: #CBEA49;
  --c4: #2E7D4E;
  --c5: #1a5c3a;
  --text: #e8f0ec;
  --muted: #8aab96;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(203, 234, 73, 0.15);
  --radius: 16px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(28, 59, 52, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

nav.scrolled {
  background: rgba(15, 36, 32, 0.97);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c3), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
}

.nav-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.nav-name span {
  color: var(--c3);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c3);
  background: rgba(203, 234, 73, 0.1);
}

.nav-cta {
  background: var(--c3);
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}

a.nav-cta.active {
  background: var(--c2) !important;
  color: white !important;
}

.nav-cta:hover {
  background: var(--c2) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 24px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-drone-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center center !important;
  background-image: url(img/drone-hero.jfif);
}

.hero-drone-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10, 28, 24, 0.95) 0%,
      rgba(10, 28, 24, 0.85) 35%,
      rgba(10, 28, 24, 0.50) 60%,
      rgba(10, 28, 24, 0.15) 100%),
    linear-gradient(to top, rgba(10, 28, 24, 0.7) 0%, transparent 40%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(76, 195, 90, .06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(203, 234, 73, .04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .02;
  z-index: 2;
  background-image: linear-gradient(var(--c3) 1px, transparent 1px),
    linear-gradient(90deg, var(--c3) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 60px;
}

.hero-left {
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

.hero-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203, 234, 73, .12);
  border: 1px solid rgba(203, 234, 73, .3);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c3);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 680px;
}

.hero-title em {
  font-style: normal;
  color: var(--c3);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--c3);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--c2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 195, 90, .3);
}

.btn-ghost {
  background: transparent;
  color: var(--c3);
  border: 1.5px solid var(--c3);
}

.btn-ghost:hover {
  background: rgba(203, 234, 73, .1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {}

.stat-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c3);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(15, 36, 32, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 24px;
  width: 260px;
  transition: transform .3s, border-color .3s;
  cursor: pointer;
}

.hero-card:hover {
  transform: translateX(-6px);
  border-color: var(--c3);
}

.hc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hc-bit .hc-tag {
  color: var(--c3);
}

.hc-bgn .hc-tag {
  color: var(--c2);
}

.hc-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hc-name span {
  color: var(--c3);
}

.hc-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SECTIONS SHARED ── */
section {
  padding: 100px 24px;
}

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(203, 234, 73, .1);
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NOSOTROS ── */
#nosotros {
  background: var(--c1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.metric-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.metric-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c3);
  display: block;
}

.metric-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pillar-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PRODUCTOS ── */
#productos {
  background: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.product-card {
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.bit-card {
  background: linear-gradient(135deg, rgba(203, 234, 73, .08), rgba(15, 36, 32, .6));
  border-color: rgba(203, 234, 73, .3);
}

.bgn-card {
  background: linear-gradient(135deg, rgba(76, 195, 90, .08), rgba(15, 36, 32, .6));
  border-color: rgba(76, 195, 90, .3);
}

.prod-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bit-card .prod-label {
  color: var(--c3);
}

.bgn-card .prod-label {
  color: var(--c2);
}

.prod-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.prod-title span {
  color: var(--c3);
}

.bgn-card .prod-title span {
  color: var(--c2);
}

.prod-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}

.feat-icon {
  color: var(--c3);
  flex-shrink: 0;
  font-weight: 900;
  margin-top: 2px;
}

.bgn-card .feat-icon {
  color: var(--c2);
}

.compatibility {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.compat-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
  background: rgba(203, 234, 73, .1);
  color: var(--c3);
  border: 1px solid rgba(203, 234, 73, .2);
}

.bgn-card .compat-tag {
  background: rgba(76, 195, 90, .1);
  color: var(--c2);
  border-color: rgba(76, 195, 90, .2);
}

/* ── COMO FUNCIONA ── */
#como-funciona {
  background: var(--c1);
}

.mech-tabs {
  display: flex;
  gap: 8px;
  margin: 36px 0 40px;
}

.mech-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all .2s;
  font-family: inherit;
}

.mech-tab.active {
  background: var(--c3);
  color: var(--dark);
  border-color: var(--c3);
}

.mech-panel {
  display: none;
}

.mech-panel.active {
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--c3);
  opacity: .2;
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CULTIVOS (calendario) ── */
#cultivos-section {
  background: var(--dark);
}

.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}

.cat-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all .2s;
  font-family: inherit;
}

.cat-tab.active {
  background: var(--c3);
  color: var(--dark);
  border-color: var(--c3);
}

#crops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.crop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}

.crop-card:hover,
.crop-card.selected {
  border-color: var(--c3);
  background: rgba(203, 234, 73, .08);
}

.crop-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}

.crop-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.crop-cat {
  font-size: 11px;
  color: var(--muted);
}

#calendar-panel {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
}

#calendar-panel.open {
  display: block;
}

.cal-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}

.timeline-table {
  border-collapse: collapse;
  min-width: 900px;
  width: 100%;
}

.timeline-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.timeline-table td {
  padding: 4px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  border-right: 1px solid rgba(255, 255, 255, .04);
}

.stage-cell {
  font-size: 11px;
  white-space: nowrap;
}

.stage-badge {
  display: block;
  width: 100%;
  padding: 5px 4px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

/* When colspan=1, round both sides; when >1 it stretches edge to edge */
td[colspan="1"] .stage-badge {
  border-radius: 50px;
  width: calc(100% - 8px);
  margin: 0 4px;
}

td[colspan="1"] .prod-pill-wrap {
  border-radius: 50px;
}

.prod-pill-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 5px 4px;
  box-sizing: border-box;
  border-radius: 0;
  min-height: 28px;
  flex-wrap: wrap;
}

.prod-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  margin: 1px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}

.prod-pill:hover {
  transform: scale(1.05);
  opacity: .9;
}

/* Rounded ends only on single-month spans */
td[colspan="1"] .prod-pill {
  border-radius: 50px;
}

#prod-tooltip {
  position: fixed;
  background: var(--c1);
  border: 1px solid var(--c3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  max-width: 220px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

#prod-tooltip.visible {
  opacity: 1;
}

.legend-section {
  margin-top: 24px;
}

.legend-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legend-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .1s;
}

.legend-chip:hover {
  transform: scale(1.05);
}

.prod-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.prod-modal-overlay.open {
  display: flex;
}

.prod-modal {
  background: var(--c1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.prod-modal h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.prod-modal p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.prod-modal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prod-modal li {
  font-size: 13px;
  padding-left: 16px;
  position: relative;
}

.prod-modal li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c3);
}

.modal-close {
  display: block;
  margin-top: 24px;
  background: var(--c3);
  color: var(--dark);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}

/* ── RESULTADOS ── */
#resultados {
  background: var(--c1);
}

.results-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0;
}

.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}

.kpi-val {
  font-size: 3rem;
  font-weight: 900;
  color: var(--c3);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.results-cta {
  background: linear-gradient(135deg, var(--c4), var(--c5));
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(76, 195, 90, .3);
}

.results-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.results-cta p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ── INSTAGRAM ── */
#instagram {
  background: var(--dark);
}

.ig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.ig-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ig-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c3), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  border: 3px solid var(--c3);
  background-image: url(img/PB-Verde-3-fondo-blanco.png);
  background-size: cover;
  background-position: center;
}

.ig-name {
  font-size: 1.1rem;
  font-weight: 800;
}

.ig-handle {
  font-size: 13px;
  color: var(--muted);
}

.ig-stats {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}

.ig-stat-val {
  font-weight: 700;
  color: var(--c3);
}

.ig-stat-label {
  font-size: 12px;
  color: var(--muted);
}

.ig-follow-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.4s;
}

.ig-follow-btn:hover {
  transform: scale(1.1);
  transition: ease;
}

.ig-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.ig-post {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
}

.ig-post:hover .ig-overlay {
  opacity: 1;
}

.ig-post-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 32, .8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  gap: 6px;
}

.ig-overlay-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c3);
  letter-spacing: .08em;
}

.ig-overlay-text {
  font-size: 12px;
  text-align: center;
  padding: 0 12px;
  color: var(--text);
}

/* ── CONTACTO ── */
#contacto {
  background: var(--c1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-input,
.form-textarea,
.form-select {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--c3);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(203, 234, 73, .1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
}

.contact-val a {
  color: var(--c3);
  text-decoration: none;
}

.contact-val a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: var(--c1);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--white);
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c3), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--dark);
}

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(203, 234, 73, .08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--c3);
  letter-spacing: .06em;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--c3);
}

.footer-links {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-copy span {
  color: var(--c3);
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .hero-cards {
    display: none;
  }

  .about-grid,
  .products-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .results-kpis {
    grid-template-columns: 1fr;
  }

  .ig-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
}



/* ── Fichas de producto — versión minimalista ──────────────────────── */
.ficha-section {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
}

.ficha-header {
  margin-bottom: 32px;
}

.ficha-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid currentColor;
  opacity: 0.75;
}

.ficha-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
}

.ficha-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.6;
}

.ficha-kpis {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.ficha-kpi {
  text-align: left;
}

.ficha-kpi-val {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.ficha-kpi-lab {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
  display: block;
}

.ficha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

@media (max-width: 700px) {
  .ficha-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.ficha-card {
  background: none;
  border: none;
  border-left: 2px solid var(--border);
  border-radius: 0;
  padding: 0 0 0 18px;
}

.ficha-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.ficha-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.ficha-card ul {
  list-style: none;
  padding: 0;
}

.ficha-card ul li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.55;
}

.ficha-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-size: 11px;
  opacity: 0.4;
}

.ficha-mecanism {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.ficha-step {
  flex: 1;
  min-width: 120px;
  padding: 0 20px 0 0;
  text-align: left;
}

.ficha-step+.ficha-step {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.ficha-step-num {
  font-size: 11px;
  font-weight: 900;
  opacity: 0.5;
  margin-bottom: 6px;
  display: block;
}

.ficha-step-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.ficha-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.ficha-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.ficha-tag {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  background: none;
  color: var(--muted);
  border: 1px solid var(--border);
}

.ficha-divider {
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}

.senasa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}