/* ============================================
   COACH PROFESIONAL CHILE - JACQUELINE BRICEÑO
   CSS principal compartido entre todas las páginas
   ============================================ */

:root {
  --bone: #fdfbf7;
  --cream: #f5efe6;
  --ink: #4a3829;
  --blue-deep: #1e3a5f;
  --blue-mid: #2c5282;
  --blue-soft: #4a7bb5;
  --blue-light: #e8f0f9;
  --ink-soft: #6b5544;
  --ink-light: #9b8775;
  --gold: #d4a574;
  --gold-deep: #b8864e;
  --terracotta: #c97b5a;
  --rose: #e8c5b0;
  --sage: #a8b59e;
  --warm-bg: #faf5ed;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow: 0 1px 2px rgba(74,56,41,.04), 0 8px 24px rgba(74,56,41,.06);
  --shadow-lg: 0 4px 12px rgba(74,56,41,.08), 0 24px 60px rgba(74,56,41,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: inherit; }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(20,17,15,.06);
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
  display: grid; place-items: center;
  color: var(--bone);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Fraunces', serif;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active { color: var(--ink); font-weight: 500; }

.nav-cta {
  background: var(--blue-deep);
  color: white !important;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: all .25s !important;
}

.nav-cta:hover { background: var(--blue-mid); transform: translateY(-1px); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ============ DROPDOWN ============ */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.7rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  border: 1px solid rgba(20,17,15,.06);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem !important;
  transition: background .2s;
}

.dropdown a:hover { background: #f7f6f3; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.25rem 2.4rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s cubic-bezier(.2,.9,.3,1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}
.btn-primary:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: linear-gradient(135deg, #d4a574, #c97b5a); color: white; }

.btn-dark { background: linear-gradient(135deg, #d4a574, #c97b5a); color: white; }
.btn-dark:hover { background: var(--gold-deep); transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(160, 125, 53, 0.4); }

/* ============ SECCIONES BASE ============ */
section {
  padding: 7rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-narrow { max-width: 900px; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.section-desc {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem 0;
  font-size: 0.85rem;
  color: var(--ink-light);
}
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs span { margin: 0 0.5rem; color: var(--ink-light); }

/* ============ PAGE HERO (para páginas internas) ============ */
.page-hero {
  padding: 5rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,163,90,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.page-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ PAIN CARDS ============ */
.pains-section { background: #ffffff; padding: 0; max-width: 100%; }
.pains-section section { padding: 6rem 2rem; }

.pain-category { margin-bottom: 3.5rem; }
.pain-category:last-child { margin-bottom: 0; }

.pain-category-title {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.pain-category-title::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-deep);
  flex-shrink: 0;
}

.pain-category-subtitle {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  margin-left: 3rem;
  letter-spacing: 0.02em;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-card {
  background: var(--warm-bg);
  border: 1px solid rgba(184,134,78,.15);
  padding: 2rem 2.25rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all .3s;
}

.pain-card:hover {
  border-color: var(--gold-deep);
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.pain-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--gold-deep);
  line-height: 0.5;
  margin-top: 0.85rem;
  flex-shrink: 0;
  font-style: italic;
}

.pain-card p {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}

/* ============ SOLUCIÓN BOX (después de dolores) ============ */
.solution-box {
  background: linear-gradient(135deg, #c97b5a 0%, #b8864e 100%);
  color: white;
  padding: 3.5rem 3rem;
  border-radius: 20px;
  margin-top: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,163,90,0.15), transparent 60%);
  pointer-events: none;
}

.solution-box h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--bone);
  margin-bottom: 1rem;
}

.solution-box h3 em { color: var(--gold); font-style: italic; }

.solution-box p {
  font-size: 1.2rem;
  color: rgba(250,250,247,0.85);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(20,17,15,.1);
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  line-height: 1.4;
}

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

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5f3ee;
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--gold-deep);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-deep);
  color: var(--bone);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-right: 3rem;
  font-size: 1.1rem;
}

.faq-answer p { margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============ BENEFITS LIST ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fafaf7;
  border-radius: 14px;
  border: 1px solid rgba(20,17,15,.06);
  transition: all .3s;
}

.benefit:hover {
  background: #fff;
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}

.benefit h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.benefit p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, #b8864e 0%, #c97b5a 100%);
  color: white;
  padding: 0;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,163,90,0.12), transparent 60%);
  pointer-events: none;
}

.cta-section section {
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--bone);
}

.cta-section h2 em { color: var(--gold); font-style: italic; }

.cta-section p {
  font-size: 1.25rem;
  color: rgba(250,250,247,0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  background: #4a3829;
  color: #faf5ed;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(250, 250, 247, 0.08);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(250, 250, 247, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a {
  color: rgba(250, 250, 247, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 247, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250, 250, 247, 0.5);
}

/* ============ LEAD WIDGET (captura) ============ */
.lead-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  font-family: 'Inter', sans-serif;
}

.lead-widget-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-deep), var(--terracotta));
  color: white;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(184, 134, 78, 0.35);
  transition: all .3s;
  font-family: inherit;
}

.lead-widget-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 134, 78, 0.5);
}

.lead-widget-toggle svg { stroke: white; }

.lead-widget.open .lead-widget-toggle { display: none; }

.lead-widget-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(74, 56, 41, 0.25);
  border: 1px solid rgba(184, 134, 78, 0.15);
  padding: 0;
  display: none;
  overflow: hidden;
  animation: slideUp .35s cubic-bezier(.2,.9,.3,1);
}

.lead-widget.open .lead-widget-panel { display: block; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lead-widget-header {
  background: linear-gradient(135deg, var(--gold-deep), var(--terracotta));
  color: white;
  padding: 1.25rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.lead-widget-header strong {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.lead-widget-header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.4;
}

.lead-widget-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.lead-widget-close:hover { background: rgba(255,255,255,0.3); }

.lead-widget-form {
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lead-widget-form input,
.lead-widget-form select {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(74,56,41,0.15);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--bone);
  outline: none;
  transition: border .2s;
}

.lead-widget-form input:focus,
.lead-widget-form select:focus {
  border-color: var(--gold-deep);
  background: white;
}

.lead-widget-submit {
  background: var(--whatsapp);
  color: white;
  border: none;
  padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  margin-top: 0.3rem;
}

.lead-widget-submit:hover { background: var(--whatsapp-dark); }

.lead-widget-fineprint {
  font-size: 0.72rem;
  color: var(--ink-light);
  text-align: center;
  margin: 0.3rem 0 0 0;
}

@media (max-width: 480px) {
  .lead-widget { bottom: 16px; right: 16px; left: 16px; }
  .lead-widget-panel { width: auto; left: 0; right: 0; }
  .lead-widget-toggle { padding: 0.75rem 1.1rem; font-size: 0.88rem; }
  .lead-widget-label { display: inline; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .8s ease-out both; }

/* Scroll reveal — visibles por defecto (animación opcional) */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ============ TWO COLUMN CONTENT ============ */
.content-two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.content-two-col h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.content-two-col h2 em { font-style: italic; color: var(--gold-deep); }

.content-two-col p {
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.content-image {
  aspect-ratio: 4/5;
  border-radius: 12px 12px 110px 110px;
  background: linear-gradient(135deg, #f5f3ee, #faf9f5);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 220px;
  margin: 0;
  position: sticky;
  top: 100px;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.content-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201,163,90,0.08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.placeholder-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  color: rgba(160, 125, 53, 0.25);
  font-weight: 300;
  font-style: italic;
}

/* ============ ARTICLE STYLE (blog) ============ */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.article-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin: 3rem 0 1.25rem;
  color: var(--ink);
  font-weight: 400;
}

.article-content h3 {
  font-size: 1.4rem;
  margin: 2.25rem 0 1rem;
  color: var(--ink);
  font-weight: 500;
}

.article-content h4 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--ink);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.article-content p { margin-bottom: 1.4rem; }

.article-content ul, .article-content ol {
  margin: 1.4rem 0 1.4rem 1.5rem;
}

.article-content li { margin-bottom: 0.7rem; }

.article-content blockquote {
  border-left: 3px solid var(--gold-deep);
  padding: 1rem 0 1rem 1.75rem;
  margin: 2rem 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
}

.article-content strong { color: var(--ink); font-weight: 600; }

.article-meta {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(20,17,15,.08);
  font-size: 0.9rem;
  color: var(--ink-light);
}

.article-meta time { color: var(--gold-deep); font-weight: 500; }

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(20,17,15,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all .35s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-deep);
}

.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-style: italic;
  opacity: 0.9;
}

.blog-card-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }

.blog-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-card-link {
  color: var(--gold-deep);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============ RELATED LINKS ============ */
.related-links {
  background: #f7f6f3;
  padding: 0;
  max-width: 100%;
}

.related-links section { padding: 5rem 2rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.related-card {
  background: white;
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(20,17,15,.06);
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.related-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.related-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-style: italic;
  flex-shrink: 0;
}

.related-card h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.2rem; }
.related-card p { font-size: 0.82rem; color: var(--ink-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(20,17,15,.08);
    box-shadow: var(--shadow);
  }

  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0 0.5rem 1rem;
    border: none;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .has-dropdown:hover .dropdown { transform: none; }
  .has-dropdown.active .dropdown { display: block; }

  section { padding: 4.5rem 1.5rem; }
  .pains-grid { grid-template-columns: 1fr; }
  .pain-category-subtitle { margin-left: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; gap: 3rem; }
  .content-image { max-width: 220px; margin: 0 auto; position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 568px) {
  section { padding: 4rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .solution-box { padding: 2.5rem 1.75rem; }
}

/* ============ WHATSAPP FLOTANTE ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: pulse 2.5s infinite;
  transition: transform .3s;
  overflow: hidden;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg {
  width: 32px !important;
  height: 32px !important;
  fill: white !important;
  display: block;
}

@keyframes pulse {
  0% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 568px) {
  .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg { width: 28px !important; height: 28px !important; }
}
