/* =========================================
   Paz & Finanzas — Landing Page
   Paleta: Dusty lavender (calm, introspective, elegant)
   Tipos: Lora (títulos) + Be Vietnam Pro (cuerpo)
========================================= */

/* Tipografías: Lora (títulos) + Be Vietnam Pro (cuerpo) */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap");

:root{
  --bg:#faf9fb;                /* very subtle warm-cool white */
  --surface:#f5f3f7;           /* soft lavender-tinted off-white */

  --text:#1f1a22;              /* soft dark with purple undertone */
  --muted:#6a6370;             /* lavender-tinted gray */
  --border:#e2dde6;            /* soft lavender border */

  --primary:#2d2633;           /* deep plum for contrast */
  --primary-contrast:#ffffff;

  --accent:#9a8fa8;            /* dusty lavender - calm, introspective, elegant */
  --accent-soft:#ece8f0;       /* very light lavender for backgrounds */
  --accent-hover:#867a96;      /* deeper lavender for hover states */

  --radius:16px;
  --shadow:0 12px 28px rgba(45,38,51,0.1);      /* lavender-tinted shadow */
  --shadow-sm:0 8px 18px rgba(45,38,51,0.07);

  --container:1100px;
}

/* Sage green palette (alternative) */
[data-theme="green"]{
  --bg:#fafcfb;
  --surface:#f4f7f5;

  --text:#1a1f1c;
  --muted:#5c6660;
  --border:#dce5df;

  --primary:#2a3530;
  --primary-contrast:#ffffff;

  --accent:#7d9a8c;
  --accent-soft:#e8f0eb;
  --accent-hover:#6a8578;

  --shadow:0 12px 28px rgba(42,53,48,0.1);
  --shadow-sm:0 8px 18px rgba(42,53,48,0.07);
}

/* Dusty blue palette (1:1 therapy) */
[data-theme="blue"]{
  --bg:#f8fafc;               /* subtle blue-tinted white */
  --surface:#eef3f7;          /* soft blue-grey surface */

  --text:#1a2433;             /* dark with blue undertone */
  --muted:#5a6b7a;            /* blue-grey for secondary text */
  --border:#d0dbe5;           /* visible blue-tinted border */

  --primary:#1e3a5f;          /* deep navy - trust, depth */
  --primary-contrast:#ffffff;

  --accent:#6b8cae;           /* clear dusty blue - more saturated */
  --accent-soft:#dce8f2;      /* light blue tint for backgrounds */
  --accent-hover:#527799;     /* deeper blue on hover */

  --shadow:0 12px 28px rgba(30,58,95,0.12);
  --shadow-sm:0 8px 18px rgba(30,58,95,0.08);
}

/* =====================
   Reset + base
===================== */
*,
*::before,
*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Be Vietnam Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

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

a{
  color:inherit;               /* evita azul default */
  text-decoration:none;        /* evita subrayado default */
}
a:hover{ text-decoration:none; }

/* =====================
   Layout helpers
===================== */
.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.container-narrow{
  max-width: 600px;
}

.section{ padding:56px 0; }
.section.alt{ background:var(--surface); }

.center{ text-align:center; }
.muted{ color:var(--muted); }

/* =====================
   Typography
===================== */
h1,h2,h3{ margin:0; letter-spacing:-0.01em; }

h1,h2{
  font-family:"Lora", Georgia, serif;
  font-weight:700;
}

h1{
  font-size:clamp(2.1rem, 3.8vw, 3.35rem);
  line-height:1.05;
}

h2{
  font-size:clamp(1.55rem, 2.6vw, 2.2rem);
  line-height:1.15;
}

h3{
  font-family:"Be Vietnam Pro", sans-serif;
  font-weight:650;
  font-size:1.1rem;
  line-height:1.3;
}

p{ margin:0; }

.lead{
  margin-top:16px;
  color:var(--muted);
  font-size:1.05rem;
  max-width:72ch;
}

.section-lead{
  margin-top:12px;
  color:var(--muted);
  max-width:72ch;
}

/* Para usar Times sólo en una palabra/frase dentro de un título */
.emphasis{
  font-family:"Lora", Georgia, serif;
  font-style:italic;
}

/* =====================
   Header + Nav
===================== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,249,251,0.92);  /* match lavender bg */
  backdrop-filter:blur(10px);
  border-bottom:0;
  min-height: 64px;
  overflow: visible;
  isolation: isolate;
}

[data-theme="green"] .site-header{
  background:rgba(250,252,251,0.92);  /* match sage bg */
}

[data-theme="blue"] .site-header{
  background:rgba(248,250,252,0.92);  /* match dusty blue bg */
}

/* Theme toggle button */
.theme-toggle{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle:hover{
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.site-header::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-1px; /* place the divider just outside the header */
  height:1px;
  background:var(--border);
  pointer-events:none;
  z-index:0; /* keep line beneath header content */
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  /* Slightly more breathing room so header divider doesn't visually clip CTA */
  padding-block: 16px;
  position: relative;
  z-index: 1; /* ensure content sits above the divider */
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:650;
}

.brand-logo{
  height:34px;  /* ajusta si lo necesitas */
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:var(--text);
  font-weight:500;
  font-size:0.96rem;
  padding:8px 2px;
  border-bottom:1px solid transparent;
}

.nav a:hover{
  border-bottom-color: var(--accent);
}

.nav-cta{
  padding: 10px 14px !important;
  border-radius: 999px;

  /* ❌ quita el border real */
  border: none;

  /* ✅ borde visual estable */
  box-shadow: inset 0 0 0 1px var(--border);

  background: #fff;
  font-weight: 650;
  line-height: 1;

  position: relative;
  z-index: 2;
}

.nav-cta:hover{
  border-color: var(--accent);
}

/* =====================
   Buttons
===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  transition:transform .06s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover{ text-decoration:none; }
.btn:active{ transform:translateY(1px); }

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:var(--shadow-sm);
  font-size: 1.05rem;
  padding: 14px 28px;
}

.btn-primary:hover{
  background:var(--accent-hover);
  box-shadow:var(--shadow);
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--border);
}

.btn-secondary:hover{
  border-color: var(--accent);
}

.btn-block{ width:100%; }

.btn-lg{
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* =====================
   CTA Section
===================== */
.cta-section{
  padding: 72px 0;
  background: var(--surface);
}

.cta-box{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.cta-label{
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.cta-title{
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
}

.cta-details{
  margin: 28px 0 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-detail{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-detail svg{
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.cta-box .btn{
  margin-bottom: 20px;
}

.cta-note{
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 520px){
  .cta-section{
    padding: 56px 0;
  }

  .cta-details{
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .cta-box .btn{
    width: 100%;
  }
}

/* =====================
   Hero
===================== */
.hero{
  padding:72px 0 48px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:start;
  max-width: 720px;
}

/* Two-column hero layout */
.hero-grid-two-col{
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  align-items: center;
  gap: 48px;
}

.hero-image{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img{
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image-placeholder{
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 50%, var(--accent-hover) 100%);
  border-radius: var(--radius);
  opacity: 0.6;
}

@media (max-width: 900px){
  .hero-grid-two-col{
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 600px;
  }

  .hero-image{
    order: -1;
  }

  .hero-image-placeholder{
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }
}

.hero-content{
  text-align: left;
}

.hero-content h1{
  line-height: 1.12;
}

/* Centered hero variant (no image, minimal) */
.hero-centered{
  text-align: center;
  padding: 96px 0 72px;
}

.hero-centered h1{
  margin: 0 0 24px;
  line-height: 1.2;
}

.hero-centered .hero-subtitle{
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-supporting{
  margin: 32px auto 0;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-content .cta-row{
  margin-top:28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-bullets{
  margin:16px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.hero-bullets li{ margin:8px 0; }

.hero-cta-wrapper{
  margin-top: 32px;
}

.hero-details{
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* =====================
   Tension Section (therapy page)
===================== */
.tension-section{
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Centered header above columns */
.tension-header{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.tension-header h2{
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.3;
}

.tension-header p{
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.tension-header p:last-child{
  margin-bottom: 0;
}

.tension-grid{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.tension-lead{
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.tension-content h2{
  margin: 0 0 32px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.3;
}

.tension-content p{
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.tension-questions{
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.tension-questions li{
  position: relative;
  margin: 0 0 16px;
  padding: 16px 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.tension-questions li:last-child{
  margin-bottom: 0;
}

/* Centered closing statement below columns */
.tension-close{
  text-align: center;
  max-width: 640px;
  margin: 48px auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.tension-aside{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tension-aside img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.tension-aside .tension-questions{
  margin: 0;
}

.tension-aside .tension-close{
  margin-top: 0;
}

@media (max-width: 900px){
  .tension-header{
    margin-bottom: 36px;
  }

  .tension-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tension-aside{
    gap: 24px;
    order: -1;
  }

  .tension-aside img{
    max-width: 320px;
    margin: 0 auto;
  }

  .tension-questions li{
    padding: 14px 16px;
  }

  .tension-close{
    margin-top: 36px;
  }
}

/* =====================
   Clarity Section (therapy page - what it is/isn't)
===================== */
.clarity-section{
  padding: 80px 0;
  background: var(--surface);
}

.clarity-section h2{
  margin: 0 0 48px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

.clarity-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.clarity-card{
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.clarity-icon{
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.clarity-icon svg{
  width: 24px;
  height: 24px;
}

.clarity-yes .clarity-icon{
  background: rgba(107, 140, 174, 0.15);
}

.clarity-yes .clarity-icon svg{
  color: var(--accent);
}

.clarity-no .clarity-icon{
  background: rgba(90, 107, 122, 0.12);
}

.clarity-no .clarity-icon svg{
  color: var(--muted);
}

.clarity-card-intro{
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.clarity-list{
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.clarity-list li{
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.clarity-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.clarity-yes .clarity-list li::before{
  background: var(--accent);
}

.clarity-no .clarity-list li{
  color: var(--muted);
}

.clarity-no .clarity-list li::before{
  background: var(--muted);
  opacity: 0.5;
}

.clarity-card-highlight{
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--accent);
}

.clarity-footer{
  max-width: 640px;
  margin: 48px auto 0;
  padding: 32px 48px;
  text-align: left;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.clarity-footer-intro{
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.clarity-footer-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clarity-footer-list li{
  position: relative;
  padding-left: 32px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
}

.clarity-footer-list li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: var(--accent);
}

@media (max-width: 900px){
  .clarity-grid{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 520px){
  .clarity-section{
    padding: 56px 0;
  }

  .clarity-section h2{
    margin-bottom: 32px;
  }

  .clarity-card{
    padding: 24px;
  }

  .clarity-card p{
    font-size: 1rem;
  }

  .clarity-footer{
    margin-top: 32px;
    padding: 24px;
  }

  .clarity-footer-intro{
    font-size: 1rem;
  }

  .clarity-footer-list li{
    font-size: 1rem;
  }
}

/* =====================
   Session Section (therapy page - what happens)
===================== */
.session-section{
  padding: 80px 0;
  background: var(--bg);
}

.session-section h2{
  margin: 0 0 48px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

/* Session content: single column centered */
.session-content{
  max-width: 700px;
  margin: 0 auto;
}

.session-not-intro{
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.session-not-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.session-not-list li{
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

.session-not-list li::before{
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--border);
}

/* Right column: What it IS */
.session-is-lead{
  margin: 0 0 24px;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text);
}

.session-is-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.session-is-list li{
  position: relative;
  padding-left: 32px;
  margin: 14px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.session-is-list li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.85rem;
  color: var(--accent);
}

/* Outcome box */
.session-outcome{
  max-width: 640px;
  margin: 48px auto 0;
  padding: 28px 36px;
  text-align: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.session-outcome p{
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 900px){
  .session-content{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .session-section{
    padding: 56px 0;
  }

  .session-section h2{
    margin-bottom: 32px;
  }

  .session-not{
    padding: 24px;
  }

  .session-is-lead{
    font-size: 1.05rem;
  }

  .session-is-list li{
    font-size: 1rem;
  }

  .session-outcome{
    margin-top: 32px;
    padding: 24px;
  }

  .session-outcome p{
    font-size: 1rem;
  }
}

/* =====================
   Filter Section (therapy page - final self-check)
===================== */
.filter-section{
  padding: 80px 0;
  background: var(--bg);
}

.filter-section h2{
  margin: 0 0 48px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

.filter-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.filter-card{
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.filter-card-intro{
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.filter-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-list li{
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.filter-list li::before{
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.85rem;
}

/* Yes card: accent color bullets */
.filter-yes .filter-list li{
  color: var(--text);
}

.filter-yes .filter-list li::before{
  content: "✦";
  color: var(--accent);
}

/* No card: muted styling */
.filter-no .filter-list li{
  color: var(--muted);
}

.filter-no .filter-list li::before{
  content: "—";
  color: var(--border);
}

.filter-close{
  text-align: center;
  max-width: 640px;
  margin: 48px auto 0;
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 900px){
  .filter-grid{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 520px){
  .filter-section{
    padding: 56px 0;
  }

  .filter-section h2{
    margin-bottom: 32px;
  }

  .filter-card{
    padding: 24px;
  }

  .filter-close{
    margin-top: 32px;
    font-size: 1rem;
  }
}

/* =====================
   CTA Therapy Section (therapy page - booking)
===================== */
.cta-therapy-section{
  padding: 80px 0;
  background: var(--bg);
}

.cta-therapy-box{
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-therapy-box h2{
  margin: 0 0 32px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--primary);
}

.cta-therapy-body{
  margin-bottom: 32px;
}

.cta-therapy-body p{
  margin: 0 0 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

.cta-therapy-body p:last-child{
  margin-bottom: 0;
}

.cta-therapy-box .btn{
  margin-bottom: 16px;
}

.cta-therapy-note{
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 520px){
  .cta-therapy-section{
    padding: 56px 0;
  }

  .cta-therapy-box{
    padding: 32px 24px;
  }

  .cta-therapy-box h2{
    margin-bottom: 24px;
  }

  .cta-therapy-body p{
    font-size: 1rem;
  }
}

/* =====================
   Testimonials Therapy Section (blue palette)
===================== */
.testimonios-therapy{
  background: var(--surface);
}

.testimonios-therapy .testimonial-card{
  background: var(--bg);
  border: 1px solid var(--border);
}

/* Aha Section Therapy styles moved after base .aha-section for specificity */

/* "Eyebrow" pill - enhanced for visibility */
.eyebrow{
  display:inline-block;
  font-size:.88rem;
  font-weight: 600;
  color: var(--text);
  border:1px solid var(--border);
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.eyebrow::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.eyebrow{
  padding-left: 28px;
}

/* =====================
   Aha moment sections
===================== */
.aha-section{
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aha-section-alt{
  background: var(--surface);
}

.aha-section-final{
  background: var(--primary);
  border-color: var(--primary);
}

.aha-section-final .aha-text{
  color: #fff;
}

.aha-section-final .aha-text em{
  color: var(--accent-soft);
}

/* Aha Section Therapy (strong blue background) */
.aha-section-therapy{
  background: var(--primary);
  border-color: var(--primary);
}

.aha-section-therapy .aha-text{
  color: #fff;
}

.aha-section-therapy .aha-text em{
  color: var(--accent-soft);
}

.aha-text{
  margin: 0;
  text-align: center;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--text);
}

.aha-text em{
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 520px){
  .aha-section{
    padding: 36px 0;
  }

  .aha-text{
    font-size: 1.15rem;
  }
}

/* Decision push section (motivational moment before closing) */
.decision-push{
  padding: 64px 0;
  background: var(--primary);
}

.decision-push-headline{
  margin: 0 0 8px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.decision-push-sub{
  margin: 0 0 24px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--accent-soft);
  font-style: italic;
}

.decision-push-text{
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 520px){
  .decision-push{
    padding: 48px 0;
  }
}

.decision-push-link{
  margin: 0;
}

.decision-push-link a{
  color: var(--accent-soft);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.decision-push-link a:hover{
  opacity: 0.8;
}

/* Closing section (honest farewell) */
.closing-section{
  padding: 72px 0;
}

.closing-section h2{
  margin-bottom: 32px;
}

.closing-text{
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: left;
}

.closing-text p{
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.closing-text p:last-child{
  margin-bottom: 0;
}

/* Decision section (combined validation + silent cost) */
.decision-section{
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.decision-headline{
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--accent-hover);
  position: relative;
  display: inline-block;
}

.decision-headline::before{
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
}

.decision-transition{
  margin: 40px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.decision-close{
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.decision-close strong{
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

/* =====================
   Bridge Section (YES/NO columns)
===================== */
.bridge-headline{
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 48px;
}

.bridge-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.bridge-col{
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.bridge-col h3{
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.bridge-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.bridge-col li{
  padding: 10px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.bridge-col li:last-child{
  border-bottom: none;
}

.bridge-yes{
  background: #f8fdf9;
}

.bridge-yes h3{
  color: #4a7c59;
}

.bridge-no{
  background: #fdf8f8;
}

.bridge-no h3{
  color: #8c5a5a;
}

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

/* =====================
   Map Section (course modules)
===================== */
.map-modules{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.map-number{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
}

.map-module p{
  margin: 0;
  padding-top: 4px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.map-template{
  margin-top: 56px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.map-template h3{
  margin: 0 0 16px;
  font-size: 1.25rem;
  color: var(--text);
}

.map-template-lead{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-template .checklist-single{
  text-align: left;
  max-width: 320px;
  margin: 0 auto 24px;
}

.map-template-note{
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}

/* =====================
   Cards (base)
===================== */
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.card-title{
  margin:0 0 12px 0;
  font-family:"Lora", Georgia, serif;
  font-size:1.5rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.card-list{ margin:0 0 18px; }

.card-item{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:10px;
  padding:10px 0;
  border-top:1px solid var(--border);
}

.card-item:first-child{
  border-top:none;
  padding-top:0;
}

.card-item dt{
  color:var(--muted);
  font-size:.92rem;
}

.card-item dd{
  margin:0;
  font-weight:650;
}

.microcopy{
  font-size:.9rem;
  color:var(--muted);
  margin-top:12px;
}

/* =====================
   Grids + lists
===================== */
.grid-2{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.checklist{
  margin:0;
  padding-left:18px;
}

.checklist li{
  margin:10px 0;
  color:var(--muted);
}

.checklist-single{
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}

.checklist-single li{
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
  font-size: 1.05rem;
  color: var(--text);
}

.checklist-single li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Quoted inner dialogue style */
.checklist-quotes li{
  font-style: italic;
  color: var(--muted);
}

.checklist-quotes li::before{
  font-style: normal;
}

/* "Not for you" tags */
.not-for-you{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.not-for-you-label{
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.not-for-you-tags{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tag{
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Para quién - 3-column layout with images */
#para-quien .container{
  text-align: center;
}

.para-quien-grid{
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 32px;
  align-items: start;
}

.para-quien-image{
  position: sticky;
  top: 100px;
}

.para-quien-image img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.para-quien-content{
  text-align: center;
}

@media (max-width: 1100px){
  .para-quien-grid{
    grid-template-columns: 200px 1fr 200px;
    gap: 24px;
  }
}

@media (max-width: 900px){
  .para-quien-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .para-quien-image{
    position: static;
    display: flex;
    justify-content: center;
  }

  .para-quien-image img{
    max-width: 280px;
  }

  /* Hide second image on mobile to avoid repetition */
  .para-quien-image:last-child{
    display: none;
  }
}

.callout{
  margin-top:22px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-sm);
}

/* Feature cards with numbered indicators */
.cards{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  counter-reset: feature-counter;
}

.feature-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 22px 22px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .12s ease, box-shadow .2s ease, border-color .2s ease;
  counter-increment: feature-counter;
  position: relative;
}

.feature-card::before{
  content: counter(feature-counter);
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.feature-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color: var(--accent);
}

.feature-card:hover::before{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.feature-card h3{
  padding-right: 40px;
}

/* Icon-based feature cards (no numbers) */
.cards-icon{
  counter-reset: none;
}

.cards-icon .feature-card{
  text-align: center;
  padding: 28px 22px;
}

.cards-icon .feature-card::before{
  display: none;
}

.cards-icon .feature-card h3{
  padding-right: 0;
}

.feature-icon{
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}

.feature-icon svg{
  width: 26px;
  height: 26px;
  color: var(--accent);
  transition: color .2s ease;
}

.feature-card:hover .feature-icon{
  background: var(--accent);
  border-color: var(--accent);
}

.feature-card:hover .feature-icon svg{
  color: #fff;
}

/* Numbered icon cards */
.cards-numbered .feature-card{
  position: relative;
}

.step-number{
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.step-number::before{
  content: "Paso ";
}

.feature-card p{
  margin-top:10px;
  color:var(--muted);
}

/* Info grid */
.info-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.info-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-sm);
}

.info-item p{
  margin-top:8px;
  color:var(--muted);
}

/* About - simplified 2-column */
.about-simple{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 700px;
}

.about-subtitle{
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-promise-inline{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.about-promise-inline strong{
  color: var(--text);
}

@media (max-width: 600px){
  .about-simple{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo{
    display: flex;
    justify-content: center;
  }
}

/* =====================
   CTA sección "Lo que te llevas"
===================== */
#que-te-llevas .center {
  margin-top: 56px; /* separa el botón de las cards */
}
/* =====================
   Formato del curso (simplified)
===================== */
.format-simple{
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.format-item{
  flex: 1;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.format-label{
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.format-value{
  display: block;
  margin-top: 6px;
  font-weight: 650;
  font-size: 1.05rem;
}

.temario-compact{
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.temario-compact h3{
  margin-bottom: 8px;
}

.temario-compact p{
  color: var(--muted);
  line-height: 1.6;
}

.temario-list-simple{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.temario-list-simple li{
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.temario-list-simple li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text);
}

@media (max-width: 520px){
  .temario-list-simple{
    grid-template-columns: 1fr;
  }
}

/* =====================
   Sobre mí (3 columnas)
===================== */
.about-3col{
  display: grid;
  grid-template-columns: 140px 1fr 0.85fr;
  gap: 24px;
  align-items: start;
}

/* Foto */
.about-photo{
  padding-top: 6px; /* baja un poquito la foto para alinear con el título */
}

.avatar{
  width: 160px;
  height: 160px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

/* Texto legible (clave) */
.about-lead,
.about-body{
  max-width: 68ch; /* evita líneas larguísimas */
}

.about-body{
  margin-top: 14px;
  color: var(--muted);
}

/* Promesa */
.promise-card{
  box-shadow: var(--shadow);
}

.about-promise .promise-card p{
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px){
  .about-3col{
    grid-template-columns: 1fr;
  }

  .about-photo{
    padding-top: 0;
  }

  .avatar{
    width: 120px;
    height: 120px;
  }
}
/* =====================
   Registro / Pricing
===================== */
.pricing-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
}

.pricing-card{
  padding: 22px;
  transition: transform .12s ease, box-shadow .2s ease;
}

/* Primary offering - more prominent */
.pricing-card:first-child{
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: var(--shadow);
  padding-top: 28px;
}

.pricing-card:first-child::before{
  content: "Más popular";
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 650;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.pricing-price{
  margin: 10px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-main{
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Lora", Georgia, serif;
}

.price-sub{
  color: var(--muted);
  font-weight: 500;
}

/* Fechas */
.dates{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.dates-title{
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.dates-block{
  margin-top: 12px;
}

.dates-label{
  margin: 0;
  color: var(--text);
}

.dates-list{
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
}

.dates-list li{
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: var(--muted);
}

.dates-list li::before{
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
}

/* Beneficios (terapia) */
.benefits{
  margin: 14px 0 16px;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.benefits li{
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 900px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}

/* =====================
   Preguntas frecuentes
===================== */
.faq{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.faq details{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.faq summary{
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 22px;
}

.faq summary::-webkit-details-marker{
  display: none;
}

/* Icono sutil (+ / −) */
.faq summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 600;
  color: var(--muted);
}

.faq details[open] summary::after{
  content: "–";
}

.faq details[open]{
  border-color: var(--accent);
}

.faq details p{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

/* =====================
   Testimonials
===================== */
.testimonials{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial{
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before{
  content: """;
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: "Lora", Georgia, serif;
  font-size: 3rem;
  color: var(--accent-soft);
  line-height: 1;
}

.testimonial p{
  margin: 0;
  padding-top: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}

.testimonial cite{
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

@media (max-width: 900px){
  .testimonials{
    grid-template-columns: 1fr;
  }
}

/* Image-based testimonials (scrollable) */
.testimonials-images{
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial-scroll{
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-soft) transparent;
}

.testimonial-scroll::-webkit-scrollbar{
  width: 6px;
}

.testimonial-scroll::-webkit-scrollbar-track{
  background: transparent;
}

.testimonial-scroll::-webkit-scrollbar-thumb{
  background: var(--accent-soft);
  border-radius: 3px;
}

.testimonial-scroll::-webkit-scrollbar-thumb:hover{
  background: var(--accent);
}

.testimonial-scroll img{
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px){
  .testimonials-images{
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =====================
   Footer
===================== */
.site-footer{
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding-top: 32px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Marca */
.footer-name{
  font-family: "Lora", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.footer-location{
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Columnas */
.footer-title{
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li{
  margin: 8px 0;
}

.footer-list a{
  color: var(--text);
  font-size: 0.95rem;
}

.footer-list a:hover{
  color: var(--accent);
}

/* Footer buttons */
.footer-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.footer-btn:hover{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.footer-btn svg{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Línea inferior */
.footer-bottom{
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy{
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =====================
   Accent utilities (opcional)
===================== */
.accent{ color:var(--accent); }
.divider{
  width:60px;
  height:2px;
  background:var(--accent);
  margin:24px 0;
}

/* =====================
   Responsive
===================== */
@media (max-width: 900px){
  .section{ padding:44px 0; }
  .hero-grid,
  .about{ grid-template-columns:1fr; }
  .grid-2,
  .cards,
  .info-grid{ grid-template-columns:1fr; }
}

@media (max-width: 520px){
  .btn{ width:100%; }
  .hero-content .cta-row{ flex-direction:column; }

  /* Header responsivo móvil */
  .header-inner{
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .brand{
    flex: 1;
  }

  /* Mobile menu toggle */
  .nav-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
  }

  .nav{
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }

  .nav.active{
    display: flex;
  }

  .nav a{
    font-size: 0.95rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child{
    border-bottom: none;
  }

  .nav-cta{
    margin-top: 8px;
    padding: 12px 14px !important;
    text-align: center;
    border-radius: 12px;
  }

  /* Hero adjustments */
  .hero{
    padding: 48px 0 32px;
  }

  .hero-content h1{
    font-size: 1.75rem;
  }
}

/* Hide toggle on larger screens */
@media (min-width: 521px){
  .nav-toggle{
    display: none;
  }
}
