/* ================================================================
   VIRGO GESTIÓN INTEGRAL — Stylesheet
   virgogestion.com.ar
   ================================================================ */

:root {
  --e1: #0a2218; --e2: #133828; --e3: #1f5a3e; --e4: #2e8058; --e5: #48aa78;
  --m1: #7ecba0; --m2: #a8dfc0; --m3: #d4f0e2; --m4: #edf8f3;
  --g:  #c9b46a; --g2: #e8d48e;
  --cr: #f8f4ec; --cr2: #eeead8; --cr3: #e0dac8;
  --ink: #18180e; --ink2: #3a3a28; --ink3: #6e6e58; --ink4: #a8a898;
  --wa: #25D366;
  --radius: 20px;
  --shadow: 0 12px 40px rgba(10,34,24,0.10);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cr);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--e4); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 56px;
  background: rgba(248,244,236,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,128,88,0.12);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(10,34,24,0.08); }
.nl { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nm {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--e2); display: flex; align-items: center;
  justify-content: center; font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 700; color: var(--m1);
  letter-spacing: 1px; border: 1.5px solid var(--e4);
  overflow: hidden;
}
.nm img { width: 100%; height: 100%; object-fit: cover; }
.nname { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--e1); }
.nmenu { display: flex; gap: 34px; list-style: none; }
.nmenu a { font-size: 13px; color: var(--ink2); text-decoration: none; transition: color .2s; }
.nmenu a:hover { color: var(--e4); }
.ncta {
  background: var(--e2); color: var(--m3) !important;
  padding: 9px 22px; border-radius: 100px; font-size: 13px;
  font-weight: 500; text-decoration: none; transition: background .22s;
  white-space: nowrap;
}
.ncta:hover { background: var(--e4); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 56px 80px;
  background: linear-gradient(135deg, var(--e1) 0%, var(--e2) 55%, var(--e3) 100%);
  position: relative; overflow: hidden; gap: 64px;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(72,170,120,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,180,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-l { flex: 1; max-width: 580px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(126,203,160,0.12); color: var(--m2);
  border: 1px solid rgba(126,203,160,0.22); border-radius: 100px;
  padding: 7px 18px; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--m1); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px); font-weight: 700;
  line-height: 1.05; color: white; margin-bottom: 24px;
}
.hero-h1 em { color: var(--m1); font-style: italic; }
.hero-h1 .alt { color: rgba(255,255,255,0.45); font-weight: 300; font-style: italic; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 36px; max-width: 480px; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 500;
  border: 1px solid;
}
.pill-vac { background: rgba(72,170,120,0.12); color: var(--m2); border-color: rgba(72,170,120,0.25); }
.pill-caba { background: rgba(201,180,106,0.1); color: var(--g2); border-color: rgba(201,180,106,0.25); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-main {
  background: var(--wa); color: white; padding: 14px 28px;
  border-radius: 100px; font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s; white-space: nowrap;
}
.btn-main:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-ghost {
  background: transparent; color: var(--m2); padding: 14px 28px;
  border-radius: 100px; font-size: 15px; font-weight: 400;
  text-decoration: none; border: 1px solid rgba(168,223,192,0.3);
  transition: all .25s; white-space: nowrap;
}
.btn-ghost:hover { background: rgba(168,223,192,0.08); border-color: var(--m2); }

.hero-r { flex: 0 0 360px; position: relative; z-index: 1; }
.hr-label { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(168,223,192,0.5); margin-bottom: 20px; }
.kpi-stack { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.kpi-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 20px 24px; display: flex; align-items: center; gap: 20px;
  transition: background .2s;
}
.kpi-item:hover { background: rgba(255,255,255,0.07); }
.kpi-val { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: white; line-height: 1; white-space: nowrap; }
.kpi-val .u { font-size: 22px; color: var(--m1); margin-left: 2px; }
.kpi-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.4; }
.zones { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.zones-label { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(168,223,192,0.5); margin-bottom: 12px; }
.zone-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.zpill {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,0.6);
}

/* ── SECTIONS COMMON ── */
section { padding: 100px 56px; }
.inner { max-width: 1200px; margin: 0 auto; }
.s-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--e4); margin-bottom: 16px; }
.s-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: var(--e1); line-height: 1.1; margin-bottom: 20px; }
.s-h2 em { color: var(--e4); font-style: italic; }
.s-lead { font-size: 16px; color: var(--ink3); max-width: 640px; margin-bottom: 56px; }

/* ── TIPOS ── */
.tipos-bg { background: var(--cr); }
.tipos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 0; }
.tipo-card {
  border-radius: var(--radius); padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.tipo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tipo-card.vac { background: linear-gradient(135deg, var(--e1), var(--e2)); }
.tipo-card.caba { background: linear-gradient(135deg, var(--e2), #1a3a28); }
.tipo-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(72,170,120,0.15) 0%, transparent 70%);
}
.tipo-icon { font-size: 36px; margin-bottom: 20px; }
.tipo-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--m2); margin-bottom: 8px; opacity: 0.6; }
.tipo-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.15; }
.tipo-desc { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.7; }
.tipo-zones { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tipo-zone { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 5px 13px; font-size: 12px; color: rgba(255,255,255,0.6); }
.tipo-list { list-style: none; margin-bottom: 32px; }
.tipo-list li { font-size: 13.5px; color: rgba(255,255,255,0.6); padding: 5px 0; display: flex; gap: 10px; }
.tipo-list li::before { content: '✓'; color: var(--m1); flex-shrink: 0; }
.tipo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: white; padding: 12px 24px;
  border-radius: 100px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .25s;
}
.tipo-btn:hover { background: #128C7E; transform: translateX(3px); }

/* ── SERVICIOS ── */
.svc-bg { background: var(--e1); }
.svc-bg .s-eyebrow { color: var(--m1); }
.svc-bg .s-h2 { color: white; }
.svc-bg .s-h2 em { color: var(--m1); }
.svc-bg .s-lead { color: rgba(255,255,255,0.45); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc {
  background: rgba(255,255,255,0.03); padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background .25s, border-color .25s;
}
.svc:hover { background: rgba(255,255,255,0.06); border-color: rgba(72,170,120,0.25); }
.svc-n { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: rgba(126,203,160,0.3); margin-bottom: 12px; line-height: 1; }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── PLANES ── */
.plans-bg { background: var(--cr2); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pc {
  background: white; border-radius: var(--radius); padding: 40px 32px;
  border: 1px solid var(--cr3); position: relative;
  transition: transform .3s, box-shadow .3s;
}
.pc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pc.star { background: var(--e1); border-color: var(--g); border-width: 1.5px; }
.pc-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--g); color: var(--e1); padding: 5px 18px;
  border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap;
}
.pc-tier { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--ink4); margin-bottom: 12px; }
.pc.star .pc-tier { color: var(--m2); }
.pc-pct { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 700; color: var(--e1); line-height: 1; }
.pc.star .pc-pct { color: white; }
.pcu { font-size: 36px; }
.pc-sub { font-size: 12px; color: var(--ink4); margin-bottom: 24px; font-style: italic; }
.pc.star .pc-sub { color: rgba(255,255,255,0.4); }
.pc-rule { height: 1px; background: var(--cr3); margin-bottom: 20px; }
.pc.star .pc-rule { background: rgba(255,255,255,0.1); }
.pf { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink2); padding: 5px 0; }
.pc.star .pf { color: rgba(255,255,255,0.7); }
.y { color: var(--e4); font-weight: 600; flex-shrink: 0; }
.pc.star .y { color: var(--m1); }
.n { color: var(--ink4); flex-shrink: 0; }
.nt { color: var(--ink4); text-decoration: line-through; }
.pc.star .nt { color: rgba(255,255,255,0.25); }
.pc-btn {
  display: block; text-align: center; margin-top: 28px;
  background: var(--e2); color: var(--m3); padding: 13px 20px;
  border-radius: 100px; font-size: 13px; font-weight: 500;
  text-decoration: none; transition: background .22s;
}
.pc-btn:hover { background: var(--wa); }
.pc.star .pc-btn { background: var(--wa); color: white; }
.pc.star .pc-btn:hover { background: #128C7E; }
.plans-notice {
  background: rgba(201,180,106,0.1); border: 1px solid rgba(201,180,106,0.25);
  border-radius: 14px; padding: 20px 24px; font-size: 13.5px; color: var(--ink3); line-height: 1.7;
}

/* ── META ── */
.meta-sec { background: var(--cr); }
.meta-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.meta-text p { font-size: 15px; color: var(--ink2); margin-bottom: 20px; }
.roi-box {
  background: var(--e1); border-radius: 16px; padding: 28px 32px;
  display: flex; align-items: center; gap: 24px; margin-top: 32px;
}
.roi-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--m1); white-space: nowrap; }
.roi-lbl { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.meta-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.meta-table th { background: var(--e1); color: var(--m2); padding: 11px 14px; text-align: left; font-size: 11px; letter-spacing: 1px; }
.meta-table td { padding: 11px 14px; border-bottom: 1px solid var(--cr3); color: var(--ink2); }
.meta-table td.hl { color: var(--e3); font-weight: 600; }

/* ── ONBOARDING ── */
.onb-bg { background: var(--cr2); }
.onb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.onb-card { background: white; border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--cr3); }
.onb-n { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; color: var(--e3); line-height: 1; margin-bottom: 12px; }
.onb-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--e1); margin-bottom: 10px; }
.onb-desc { font-size: 13.5px; color: var(--ink3); line-height: 1.7; }

/* ── CONDICIONES ── */
.cond-bg { background: var(--e1); }
.cond-bg .s-eyebrow { color: var(--m1); }
.cond-bg .s-h2 { color: white; }
.cond-bg .s-h2 em { color: var(--m1); }
.cond-bg .s-lead { color: rgba(255,255,255,0.45); }
.cond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.cond-item { display: flex; gap: 16px; padding: 22px 24px; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.03); transition: background .2s; }
.cond-item:hover { background: rgba(255,255,255,0.06); }
.cond-check { width: 28px; height: 28px; background: rgba(126,203,160,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--m1); flex-shrink: 0; margin-top: 2px; }
.cond-t { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--e1); padding: 80px 56px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.fi { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.fb-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fb-logo-img { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--e4); }
.fb-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.fb { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: white; }
.fd { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 20px; line-height: 1.7; }
.fe { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 6px; transition: color .2s; }
.fe:hover { color: var(--m1); }
.fch { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.fl { list-style: none; }
.fl li { margin-bottom: 10px; }
.fl a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.fl a:hover { color: var(--m1); }
.fbot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 12px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 8px; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.wa-tip {
  background: var(--e1); color: white; padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0;
  transform: translateX(8px); transition: all .3s; pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform .25s, box-shadow .25s;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nmenu { gap: 20px; }
  .hero { padding: 90px 24px 60px; gap: 40px; flex-direction: column; min-height: auto; }
  .hero-r { flex: none; width: 100%; }
  section { padding: 72px 24px; }
  .tipos-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .meta-cols { grid-template-columns: 1fr; gap: 40px; }
  .onb-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 56px 24px 32px; }
  .fi { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  nav { padding: 0 18px; }
  .nmenu { display: none; }
  .hero { padding: 80px 18px 48px; }
  section { padding: 56px 18px; }
  .plans-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .onb-grid { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 18px; right: 18px; }
}
