/*
Theme Name: AMESMKT Theme
Theme URI: https://amesmkt.cl
Author: AMESMKT — Sebastián Rojas Banchero
Author URI: https://amesmkt.cl
Description: Tema personalizado para AMESMKT — Tu Partner Digital. Marketing digital para empresas. Diseño dark, SEO/AEO optimizado, sin plantillas.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: amesmkt
Tags: custom, dark, marketing, seo
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #ff4dd8;
  --pink-dark:   #bf42a8;
  --pink-dim:    rgba(255,77,216,.15);
  --pink-border: rgba(255,77,216,.3);
  --bg:          #141414;
  --bg2:         #1e1e1e;
  --bg3:         #242424;
  --bg4:         #2e2e2e;
  --border:      rgba(255,255,255,.08);
  --border2:     rgba(255,255,255,.14);
  --text:        #ffffff;
  --text2:       rgba(255,255,255,.65);
  --text3:       rgba(255,255,255,.35);
  --text4:       rgba(255,255,255,.2);
  --font:        'Inter', sans-serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(38px, 7vw, 84px); letter-spacing: -2px; }
h2 { font-size: clamp(26px, 4vw, 46px); letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; }
p  { line-height: 1.75; color: var(--text2); }

/* ============================================================
   LAYOUT UTILITARIOS
   ============================================================ */
.container   { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 700px;  margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ============================================================
   COMPONENTES GLOBALES — BOTONES
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink);
  color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: none;
  transition: background .2s, transform .1s;
}
.btn-primary:hover  { background: var(--pink-dark); }
.btn-primary:active { transform: scale(.98); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text2);
  font-weight: 500; font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border2);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.35); color: var(--text); }

/* ============================================================
   COMPONENTES GLOBALES — EYEBROW / LABELS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}
.eyebrow-centered {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.25rem;
}
.eyebrow-centered::before,
.eyebrow-centered::after {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--pink-border);
}

/* ============================================================
   COMPONENTES GLOBALES — CARDS
   ============================================================ */
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.card:hover { border-color: var(--pink-border); background: var(--bg4); }
.card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,77,216,.09) 0%, transparent 70%);
}

/* ============================================================
   COMPONENTES GLOBALES — BADGE / TAGS
   ============================================================ */
.tag-pink {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  background: var(--pink-dim);
  color: var(--pink);
  border: 1px solid var(--pink-border);
}

.pill {
  display: inline-block;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  color: var(--text3);
  letter-spacing: .04em;
}

/* ============================================================
   COMPONENTES GLOBALES — TICKER
   ============================================================ */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: .9rem 0;
  position: relative; z-index: 1;
}
.ticker-inner {
  display: flex; gap: 2.5rem;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-inner.reverse { animation-direction: reverse; }
.ticker-item {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text4); white-space: nowrap;
  display: flex; align-items: center; gap: .7rem;
}
.ticker-item::before {
  content: ''; display: block;
  width: 4px; height: 4px;
  border-radius: 50%; background: var(--pink);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(20,20,20,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 17px; font-weight: 900;
  color: var(--pink); letter-spacing: -.3px;
  text-decoration: none;
}
.nav-logo span { color: var(--text3); font-weight: 400; font-size: 11px; margin-left: 6px; letter-spacing: 0; }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 13px; color: var(--text2);
  text-decoration: none;
  transition: color .2s; letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.current { color: var(--text); }
.nav-links a.current { color: var(--pink); }
.nav-cta {
  background: var(--pink); border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 13px; font-weight: 700; color: #fff;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--pink-dark); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--text2); padding: 4px;
}
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(20,20,20,.97);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column; gap: 1.25rem;
  z-index: 199;
}
.nav-mobile-menu a {
  font-size: 15px; color: var(--text2); text-decoration: none;
  transition: color .2s;
}
.nav-mobile-menu a:hover { color: var(--text); }
.nav-mobile-menu a.nav-cta-mobile {
  color: var(--pink); font-weight: 700;
}
.nav-mobile-menu.open { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand-name {
  font-size: 22px; font-weight: 900;
  color: var(--pink); margin-bottom: .5rem;
}
.footer-brand-sub {
  font-size: 12px; color: var(--text4);
  line-height: 1.65; margin-bottom: 1rem;
}
.footer-social {
  display: flex; gap: 10px; margin-top: .75rem;
}
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--pink-border); color: var(--pink); }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: 13px; color: var(--text3);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text3);
  text-decoration: none; margin-bottom: .6rem;
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--text); }
.footer-contact-item svg { flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-copy { font-size: 11px; color: var(--text4); }
.footer-note { font-size: 11px; color: var(--text4); font-style: italic; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: transform .2s, background .2s;
}
.wa-float:hover { transform: scale(1.08); background: #20b954; }

/* ============================================================
   PULSE ANIMACIÓN
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 110px 2rem 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: 18%; left: 50%;
  transform: translateX(-50%);
  width: 620px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,77,216,.11) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title em { font-style: normal; color: var(--pink); }
.hero-sub {
  font-size: 16px; color: var(--text2); line-height: 1.75;
  max-width: 500px; margin: 0 auto 2.25rem;
}
.hero-sub em { font-style: italic; color: var(--pink); }
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border2); border-radius: 20px;
  padding: 6px 14px; font-size: 12px; color: var(--text3);
  margin-top: 2.75rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-size: 42px; font-weight: 900; color: var(--pink);
  line-height: 1; margin-bottom: .35rem;
}
.stat-lbl { font-size: 13px; color: var(--text3); line-height: 1.5; }

/* ============================================================
   TAGLINE SECTION
   ============================================================ */
.tagline-section {
  position: relative; z-index: 1;
  text-align: center; padding: 5rem 0;
}
.tagline-text {
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 700; line-height: 1.55;
  max-width: 760px; margin: 0 auto;
  color: var(--text2);
}
.tagline-text strong { color: var(--text); }
.tagline-text em { font-style: italic; color: var(--pink); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px; margin-top: 2.75rem;
}
.svc-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; color: var(--pink);
  margin-bottom: .9rem;
}
.svc-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: .65rem; line-height: 1.3;
}
.svc-desc { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ============================================================
   DIAGNÓSTICO INTERACTIVO
   ============================================================ */
.diag-section {
  position: relative; z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diag-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative; overflow: hidden;
}
.diag-card::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,77,216,.12) 0%, transparent 70%);
  pointer-events: none;
}
.ap-wrap { display: flex; gap: 6px; margin-bottom: 1.6rem; }
.ap {
  flex: 1; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.1);
  transition: background .4s;
}
.ap.done   { background: var(--pink); }
.ap.active { background: rgba(255,77,216,.4); }
.ap-lbl {
  font-size: 11px; color: var(--text3);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .9rem;
}
.ap-q {
  font-size: 18px; font-weight: 700; color: var(--text);
  line-height: 1.35; margin-bottom: 1.3rem;
}
.ap-opts { display: flex; flex-direction: column; gap: 9px; }
.ap-opt {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 15px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer; text-align: left; width: 100%;
  transition: border-color .2s, background .2s, transform .1s;
}
.ap-opt:hover  { border-color: rgba(255,77,216,.4); background: #333; }
.ap-opt.sel    { border-color: var(--pink); background: #2a1f2a; }
.ap-opt:active { transform: scale(.99); }
.ap-ico {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 50%; background: #383838;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s, border-color .2s;
}
.ap-opt.sel .ap-ico {
  background: rgba(255,77,216,.15);
  border-color: rgba(255,77,216,.5);
}
.ap-t  { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
.ap-s  { font-size: 11px; color: var(--text3); margin-top: 2px; line-height: 1.4; }
.ap-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.4rem;
}
.ap-back {
  background: none; border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 9px 15px; font-size: 13px; color: var(--text3);
  cursor: pointer; font-family: var(--font);
  transition: border-color .2s, color .2s;
}
.ap-back:hover { border-color: rgba(255,255,255,.25); color: var(--text); }
.ap-next {
  background: var(--pink); border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px; font-size: 13px; font-weight: 700; color: #fff;
  cursor: pointer; font-family: var(--font);
  opacity: .3; pointer-events: none;
  transition: opacity .2s, background .2s, transform .1s;
}
.ap-next.rdy { opacity: 1; pointer-events: all; }
.ap-next.rdy:hover  { background: var(--pink-dark); }
.ap-next.rdy:active { transform: scale(.98); }
.ap-scr        { display: none; }
.ap-scr.active { display: block; }
.ap-res-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 20px;
  background: var(--pink-dim); color: var(--pink);
  border: 1px solid var(--pink-border);
  margin-bottom: .9rem;
}
.ap-res-title {
  font-size: 20px; font-weight: 900; color: var(--text);
  line-height: 1.3; margin-bottom: .65rem;
}
.ap-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: .65rem 0 .9rem; }
.ap-pill {
  font-size: 10px; padding: 3px 9px; border-radius: 20px;
  background: #333; border: 1px solid var(--border);
  color: var(--text3);
}
.ap-int-lbl {
  font-size: 10px; color: var(--text3); margin-bottom: 4px;
  letter-spacing: .05em; text-transform: uppercase;
}
.ap-int-bar {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.08);
  overflow: hidden; margin-bottom: 1.1rem;
}
.ap-int-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--pink-dark), var(--pink));
  transition: width .7s cubic-bezier(.4,0,.2,1);
  width: 0%;
}
.ap-div { height: 1px; background: var(--border); margin: .9rem 0; }
.ap-res-desc {
  font-size: 13px; color: var(--text2);
  line-height: 1.75; margin-bottom: 1.4rem;
}
.ap-res-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ap-wa {
  background: var(--pink); border: none;
  border-radius: var(--radius-md);
  padding: 12px 14px; font-size: 13px; font-weight: 700; color: #fff;
  cursor: pointer; font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  text-decoration: none; transition: background .2s;
}
.ap-wa:hover { background: var(--pink-dark); }
.ap-mail {
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--radius-md);
  padding: 12px 14px; font-size: 13px; font-weight: 500; color: var(--text2);
  cursor: pointer; font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.ap-mail:hover { border-color: rgba(255,255,255,.35); color: var(--text); }
.ap-restart {
  display: block; margin: 1.1rem auto 0;
  background: none; border: none;
  font-size: 12px; color: var(--text4);
  cursor: pointer; font-family: var(--font);
  text-decoration: underline; transition: color .2s;
}
.ap-restart:hover { color: var(--text3); }

/* ============================================================
   RESEÑAS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px; margin-top: 2.5rem;
}
.rv-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.3rem;
}
.rv-stars {
  color: var(--pink); font-size: 12px;
  margin-bottom: .5rem; letter-spacing: 2px;
}
.rv-text {
  font-size: 13px; color: var(--text2);
  line-height: 1.65; margin-bottom: .7rem;
  font-style: italic;
}
.rv-author { font-size: 11px; font-weight: 700; color: var(--text3); }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border2); border-radius: 20px;
  padding: 6px 14px; font-size: 12px; color: var(--text3);
  margin-top: 1.75rem;
}
.reviews-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
}

/* ============================================================
   GLOSARIO BANNER
   ============================================================ */
.glosario-banner {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.glosario-title { font-size: 17px; font-weight: 700; color: var(--text); margin: .35rem 0; }
.glosario-sub   { font-size: 13px; color: var(--text3); }

/* ============================================================
   PAGE HERO (PÁGINAS INTERNAS)
   ============================================================ */
.page-hero {
  position: relative; z-index: 1;
  padding: 120px 0 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,77,216,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { max-width: 540px; margin: 0 auto; font-size: 16px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 2.5rem;
}
.blog-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s;
  text-decoration: none; color: inherit;
  display: block;
}
.blog-card:hover { border-color: var(--pink-border); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg4);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem; }
.blog-card-date {
  font-size: 11px; color: var(--text3);
  letter-spacing: .06em; margin-bottom: .5rem;
}
.blog-card-title {
  font-size: 17px; font-weight: 700; color: var(--text);
  line-height: 1.35; margin-bottom: .5rem;
}
.blog-card-excerpt {
  font-size: 13px; color: var(--text2);
  line-height: 1.65;
}
.blog-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--pink);
  margin-top: .75rem;
}

/* SINGLE POST */
.post-content {
  position: relative; z-index: 1;
  padding: 3rem 0 5rem;
}
.post-content .container-sm { max-width: 720px; }
.post-body { font-size: 16px; line-height: 1.8; color: var(--text2); }
.post-body h2, .post-body h3 { color: var(--text); margin: 2rem 0 .75rem; }
.post-body p  { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { margin: 1rem 0 1.25rem 1.5rem; color: var(--text2); }
.post-body li { margin-bottom: .4rem; }
.post-body a  { color: var(--pink); text-decoration: underline; }
.post-body blockquote {
  border-left: 3px solid var(--pink);
  padding: .75rem 1.25rem;
  background: var(--bg3); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0; color: var(--text2); font-style: italic;
}
.post-body strong { color: var(--text); }
.post-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 12px; color: var(--text3);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%; background: var(--pink-dim);
  border: 1px solid var(--pink-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
}
.contact-info-label {
  font-size: 11px; color: var(--text3);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 14px; color: var(--text);
  font-weight: 500; text-decoration: none;
  transition: color .2s;
}
.contact-info-value:hover { color: var(--pink); }

/* Formulario de contacto (WPForms) */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font); font-size: 14px;
  color: var(--text);
  transition: border-color .2s;
}
.wpforms-field input:focus,
.wpforms-field textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.wpforms-field label {
  font-size: 12px; color: var(--text3);
  letter-spacing: .05em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.wpforms-submit-container .wpforms-submit {
  background: var(--pink); border: none;
  border-radius: var(--radius-md);
  padding: 13px 28px; font-size: 14px; font-weight: 700; color: #fff;
  cursor: pointer; font-family: var(--font);
  transition: background .2s;
}
.wpforms-submit-container .wpforms-submit:hover { background: var(--pink-dark); }

/* ============================================================
   SERVICIOS — PÁGINA COMPLETA
   ============================================================ */
.service-full {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.5rem; align-items: start;
  transition: border-color .25s;
}
.service-full:hover { border-color: var(--pink-border); }
.service-full-num {
  font-size: 32px; font-weight: 900;
  color: var(--pink-border); line-height: 1;
}
.service-full-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin-bottom: .6rem;
}
.service-full-desc { font-size: 14px; color: var(--text2); line-height: 1.75; }
.service-full-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem;
}

/* ============================================================
   TIENDA — GLOSARIO
   ============================================================ */
.product-hero {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  margin-bottom: 3rem;
}
.product-cover {
  background: linear-gradient(135deg, var(--bg4), #2a1f2a);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--pink-border);
  overflow: hidden;
}
.product-cover img { width: 100%; height: 100%; object-fit: cover; }
.product-price {
  font-size: 28px; font-weight: 900; color: var(--pink);
  margin: .75rem 0 1.25rem;
}

/* ============================================================
   ACERCA DE
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  margin-bottom: 4rem;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-img-wrap img { width: 100%; }
.timeline { margin-top: 1.5rem; }
.timeline-item {
  display: flex; gap: 1rem;
  padding-bottom: 1.5rem;
  border-left: 1px solid var(--border);
  margin-left: .75rem; padding-left: 1.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -5px; top: 5px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--pink);
}
.timeline-year {
  font-size: 11px; font-weight: 700; color: var(--pink);
  letter-spacing: .06em; white-space: nowrap;
  min-width: 40px;
}
.timeline-text { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ============================================================
   FAQ (AEO)
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-question {
  font-size: 16px; font-weight: 700; color: var(--text);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font);
}
.faq-question .faq-icon {
  color: var(--pink); font-size: 20px; flex-shrink: 0;
  transition: transform .3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--text2); line-height: 1.75;
  display: none; padding-top: .75rem;
}
.faq-answer.open { display: block; }

/* ============================================================
   404
   ============================================================ */
.error-404 {
  position: relative; z-index: 1;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 6rem 2rem;
}
.error-404 .code {
  font-size: 120px; font-weight: 900;
  color: var(--pink-border); line-height: 1;
  margin-bottom: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .contact-grid   { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .product-hero   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #site-nav { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { padding: 100px 1.25rem 60px; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-pad { padding: 3.5rem 0; }
  .container, .container-sm { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .glosario-banner { flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ap-res-actions { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
