/* ===========================================================
   Presencia Virtual — Suizo moderno
   Estilos del sitio. Edita colores aquí en :root.
   =========================================================== */

:root {
  --bg: #f6f7f8;
  --ink: #111417;
  --ink-soft: #4c545b;
  --ink-faint: #7d868e;
  --line: #d8dde2;
  --blue: #2747c4;
  --blue-soft: #6e85ec;
  --dark: #111417;
  --dark-line: #2e343a;
  --dark-faint: #9aa3ab;
  --gutter: 56px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.sz-wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }

.sz-label {
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600;
}
.sz-label .sz-dot { color: var(--blue); }
.sz-label-light { color: var(--dark-faint); }

/* ---------- Botones ---------- */
.sz-btn {
  display: inline-block;
  background: var(--dark); color: var(--bg); border: none; cursor: pointer;
  padding: 12px 24px; font-size: 15px; font-weight: 600;
  font-family: inherit; border-radius: 4px; text-decoration: none;
  line-height: 1.2;
}
.sz-btn:hover { opacity: 0.9; }
.sz-btn.sz-accent { background: var(--blue); }
.sz-btn.sz-ghost { background: transparent; color: var(--ink); border: 1px solid #c3cad0; }

/* ---------- Nav ---------- */
.sz-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--gutter); border-bottom: 1px solid var(--line);
  max-width: 1200px; margin: 0 auto;
}
.sz-logo { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; text-decoration: none; }
.sz-logo span { color: var(--blue); }
.sz-nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.sz-nav-links a { text-decoration: none; }
.sz-nav-links a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.sz-hero { padding-block: 96px 88px; }
.sz-hero h1 {
  font-size: 76px; font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  margin: 24px 0 32px; max-width: 980px; text-wrap: balance;
}
.sz-hero h1 .sz-blue { color: var(--blue); }
.sz-hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 64px; }
.sz-hero p { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin: 0; text-wrap: pretty; }
.sz-hero-ctas { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }
.sz-hero-note { font-size: 13px; color: var(--ink-faint); margin-top: 14px; }

/* ---------- Secciones ---------- */
.sz-section { padding-block: 80px; border-top: 1px solid var(--line); }
.sz-sec-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; }
.sz-sec-grid h2,
.sz-h2-plain {
  font-size: 34px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; margin: 14px 0 10px;
}
.sz-sub { color: var(--ink-soft); font-size: 16px; margin: 0; }
.sz-sub-block { margin: 0 0 40px; }

/* ---------- Pasos ---------- */
.sz-steps { display: flex; flex-direction: column; }
.sz-step {
  display: grid; grid-template-columns: 80px 280px 1fr; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.sz-step:first-child { padding-top: 4px; }
.sz-step-n { font-size: 30px; font-weight: 700; color: var(--blue); letter-spacing: -0.04em; line-height: 1; }
.sz-step h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.sz-step p { font-size: 16px; color: var(--ink-soft); margin: 0; }

/* ---------- Incluye ---------- */
.sz-inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.sz-inc-item { padding: 24px 0; border-bottom: 1px solid var(--line); display: flex; gap: 18px; }
.sz-inc-item .sz-sq { width: 8px; height: 8px; background: var(--blue); margin-top: 7px; flex-shrink: 0; }
.sz-inc-item h3 { font-size: 17px; font-weight: 700; margin: 0 0 5px; letter-spacing: -0.01em; }
.sz-inc-item p { font-size: 16px; color: var(--ink-soft); margin: 0; }

/* ---------- Ejemplos / Portafolio ---------- */
.sz-port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 8px; }
.sz-port-meta { display: flex; justify-content: space-between; align-items: baseline; margin: 14px 0 4px; }
.sz-port-card h3 { font-size: 19px; font-weight: 700; margin: 0; letter-spacing: -0.015em; }
.sz-port-card .sz-tag { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.sz-port-card p { font-size: 16px; color: var(--ink-soft); margin: 4px 0 0; }
/* Imagen real del ejemplo (reemplaza a .sz-ph cuando tengas fotos) */
.sz-port-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border: 1px solid var(--line); display: block; }
/* Placeholder mientras no haya foto */
.sz-ph {
  aspect-ratio: 16 / 10; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, #e9ecef 0 12px, #e1e5e9 12px 24px);
  display: flex; align-items: center; justify-content: center;
}
.sz-ph span { font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-faint); letter-spacing: 0.05em; }

/* ---------- Precio ---------- */
.sz-price-row {
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 64px;
  background: var(--dark); color: var(--bg); padding: 72px; border-radius: 6px;
}
.sz-price-rule { background: var(--dark-line); width: 1px; }
.sz-price-row h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.025em; margin: 16px 0 0; }
.sz-price-note { font-size: 13px; color: var(--dark-faint); margin-top: 20px; }

/* Planes (anual vs mensual) */
.sz-price-intro { font-size: 16px; color: var(--dark-faint); margin: 14px 0 24px; max-width: 380px; }
.sz-plans { display: flex; flex-direction: column; gap: 14px; }
.sz-plan { border: 1px solid var(--dark-line); border-radius: 6px; padding: 20px 22px; }
.sz-plan-featured { border-color: var(--blue-soft); background: rgba(110, 133, 236, 0.1); }
.sz-plan-badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: 12px;
}
.sz-plan-price { font-size: 48px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.sz-plan-price small { font-size: 15px; font-weight: 500; color: var(--dark-faint); letter-spacing: 0; }
.sz-plan-price-sm { font-size: 30px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; color: var(--bg); }
.sz-plan-price-sm small { font-size: 14px; font-weight: 500; color: var(--dark-faint); letter-spacing: 0; }
.sz-plan-setup { font-size: 14px; color: var(--dark-faint); margin-top: 9px; }
.sz-plan-save { font-size: 14px; font-weight: 600; color: var(--blue-soft); margin-top: 14px; }
.sz-plan-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark-faint); margin-bottom: 10px;
}
.sz-price-bullets { list-style: none; margin: 6px 0 32px; padding: 0; display: flex; flex-direction: column; }
.sz-price-bullets li {
  padding: 13px 0; border-bottom: 1px solid var(--dark-line); font-size: 16px; display: flex; gap: 14px;
}
.sz-price-bullets li::before { content: "→"; color: var(--blue-soft); }

/* ---------- FAQ ---------- */
.sz-faq-list { margin-top: 8px; }
.sz-faq-item { border-bottom: 1px solid var(--line); }
.sz-faq-q {
  width: 100%; display: flex; align-items: baseline; gap: 24px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 22px 0;
  font-family: inherit; font-size: 17px; font-weight: 600; color: var(--ink);
}
.sz-faq-text { flex: 1; }
.sz-faq-idx { font-size: 17px; color: var(--blue); font-weight: 700; }
.sz-faq-mark { color: var(--ink-faint); font-size: 18px; width: 16px; text-align: center; }
.sz-faq-a {
  max-width: 640px; color: var(--ink-soft); font-size: 16px; line-height: 1.6;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.sz-faq-a > p { overflow: hidden; margin: 0; padding: 0 48px 0 44px; }
.sz-faq-item.is-open .sz-faq-a { grid-template-rows: 1fr; }
.sz-faq-item.is-open .sz-faq-a > p { padding-bottom: 24px; }

/* ---------- Contacto ---------- */
.sz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.sz-contact-grid h2 { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin: 14px 0 14px; line-height: 1.1; }
.sz-contact-grid .sz-sub { font-size: 16px; margin: 0 0 32px; max-width: 420px; }
.sz-alt { display: flex; flex-direction: column; gap: 12px; font-size: 16px; font-weight: 600; }
.sz-alt a { color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.sz-alt a:hover span:last-child { text-decoration: underline; }
.sz-alt-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%; background: rgba(39, 71, 196, 0.1); color: var(--blue);
}
.sz-alt-ic svg { width: 19px; height: 19px; display: block; }
.sz-form { display: flex; flex-direction: column; gap: 12px; }
.sz-input {
  background: #fff; border: 1px solid #c3cad0; border-radius: 4px;
  padding: 14px 16px; font-size: 16px; color: var(--ink); font-family: inherit;
}
.sz-input::placeholder { color: var(--ink-faint); }
.sz-input:focus { outline: 2px solid var(--blue); outline-offset: -1px; border-color: var(--blue); }
textarea.sz-input { resize: vertical; min-height: 100px; }
.sz-form .sz-btn { align-self: flex-start; }
.sz-form-status { font-size: 16px; color: var(--blue); font-weight: 600; margin: 4px 0 0; }

/* ---------- Footer ---------- */
.sz-footer {
  border-top: 1px solid var(--line); padding: 28px 0; display: flex;
  justify-content: space-between; font-size: 13px; color: var(--ink-faint);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  :root { --gutter: clamp(28px, 8vw, 40px); }
  .sz-nav { padding-block: 20px; }
  .sz-nav-links { display: none; }
  .sz-hero { padding-block: 56px 48px; }
  .sz-hero h1 { font-size: 44px; }
  .sz-hero-row { flex-direction: column; align-items: stretch; gap: 28px; }
  .sz-hero p { max-width: none; }
  .sz-section { padding-block: 48px; }
  .sz-sec-grid { grid-template-columns: 1fr; gap: 28px; }
  .sz-sec-grid h2, .sz-h2-plain, .sz-contact-grid h2 { font-size: 28px; }
  .sz-step { grid-template-columns: 1fr; gap: 6px; }
  .sz-inc-grid { grid-template-columns: 1fr; gap: 0; }
  .sz-port-grid { grid-template-columns: 1fr; }
  .sz-price-row { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; }
  .sz-price-rule { display: none; }
  .sz-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .sz-footer { flex-direction: column; gap: 8px; }
  .sz-faq-q { gap: 16px; }
  .sz-faq-a > p { padding-inline: 0; }
}

@media (max-width: 480px) {
  .sz-hero h1 { font-size: 36px; }
  .sz-hero-ctas { flex-direction: column; align-items: stretch; }
  .sz-hero-ctas .sz-btn { text-align: center; }
}
