/* =========================================================
   Método VEO Bilbao — hoja de estilos
   Estilo: luminoso y moderno
   ========================================================= */

:root {
  --bg:        #fbfaf7;
  --bg-soft:   #f4f1ea;
  --surface:   #ffffff;
  --ink:       #1f2330;
  --ink-soft:  #515667;
  --line:      #ece7dd;

  --brand:     #6a5cff;   /* violeta intuición */
  --brand-2:   #ff8a5c;   /* coral cálido */
  --brand-3:   #28c6c0;   /* turquesa claridad */
  --gold:      #e7b65a;

  --grad-hero: linear-gradient(135deg, #efeaff 0%, #fdeee6 55%, #e6faf8 100%);
  --grad-cta:  linear-gradient(120deg, #6a5cff 0%, #8a78ff 45%, #28c6c0 100%);
  --grad-soft: linear-gradient(135deg, #f6f2ff 0%, #fff4ec 100%);

  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 50px -24px rgba(40, 34, 90, .35);
  --shadow-sm: 0 8px 28px -16px rgba(40, 34, 90, .28);

  --maxw:      1120px;
  --font:      "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif:     "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0 0 1.1em; color: var(--ink-soft); }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap { width: min(var(--maxw), 92%); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .9rem;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  font-size: .98rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Navegación ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.brand:hover { text-decoration: none; }
.brand .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-cta);
  display: inline-block;
}
.brand img.logo { height: 72px; width: auto; display: block; }
.footer .brand img.logo { height: 64px; background: #fff; border-radius: 12px; padding: 8px 12px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: .4rem 4%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .85rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .btn { margin: .6rem 0; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(106,92,255,.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

/* Hero con imagen de fondo */
.hero.media-hero {
  background:
    linear-gradient(108deg, rgba(18,16,42,.94) 0%, rgba(26,23,64,.86) 40%, rgba(26,40,80,.58) 100%),
    url('img/collage.webp') center/cover no-repeat;
}
.hero.media-hero::after { display: none; }
.hero.media-hero .hero-inner { padding-block: clamp(4.5rem, 10vw, 8rem); }
.hero.media-hero h1,
.hero.media-hero .lead { color: #fff; }
.hero.media-hero .lead { color: rgba(255,255,255,.9); }
.hero.media-hero .eyebrow { color: #8fe3df; }
.hero p.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ---------- Secciones ---------- */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 680px; margin-bottom: 2.6rem; }
.center { text-align: center; margin-inline: auto; }

.soft { background: var(--grad-soft); }
.tint { background: #fff; }

/* ---------- Tarjetas / grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  background: var(--grad-soft);
}
.card h3 { margin-bottom: .4rem; }
.card p { margin-bottom: 0; font-size: .98rem; }
.card .more { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .92rem; }

/* lista con check */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.checks li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.checks li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--brand);
  font-size: 1rem;
}

/* dos columnas texto+imagen */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.split.rev > :first-child { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .split.rev > :first-child { order: 0; }
}
.media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--grad-cta);
  display: grid; place-items: center;
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.portrait { aspect-ratio: 4/5; }

/* ---------- Testimonios ---------- */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.quote p { font-size: 1rem; color: var(--ink); font-style: italic; }
.quote .who { font-style: normal; font-weight: 600; color: var(--brand); font-size: .92rem; margin: 0; }

/* ---------- Agenda / formaciones ---------- */
.agenda { display: grid; gap: 1rem; }
.event {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.event .when { font-weight: 700; color: var(--brand); font-size: .95rem; }
.event .what { font-weight: 600; color: var(--ink); }
.event .where { color: var(--ink-soft); font-size: .9rem; }
.event .tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3em .8em; border-radius: 999px; background: var(--grad-soft); color: var(--brand);
}
@media (max-width: 680px) {
  .event { grid-template-columns: 1fr; gap: .4rem; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--grad-cta);
  border-radius: var(--radius);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 560px; margin-inline: auto; }
.cta-banner .btn-ghost { background: #fff; }

/* ---------- info / contacto ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }
.info-grid h3 { font-family: var(--font); font-size: 1.02rem; margin-bottom: .3rem; }
.info-grid p { margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: #1c1b29;
  color: #c9c6da;
  padding: 3rem 0 2rem;
}
.footer a { color: #c9c6da; }
.footer a:hover { color: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer .brand { color: #fff; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer-links a { font-size: .92rem; }
.footer .copy { margin-top: 2rem; font-size: .82rem; color: #7d7a92; border-top: 1px solid #2c2b3c; padding-top: 1.2rem; }

/* utilidades */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tac { text-align: center; }
