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

:root {
  /* ── NEW PALETTE: rosa · violeta · celeste · blanco · negro ── */
  --violet:        #6B3FA0;
  --violet-mid:    #8B5CC8;
  --violet-light:  #C4A8E8;
  --violet-pale:   #F0E8FF;
  --rose:          #E8668A;
  --rose-light:    #F7A8BE;
  --rose-pale:     #FDE8EF;
  --sky:           #7EC8E3;
  --sky-light:     #B8E4F2;
  --sky-pale:      #E8F7FC;
  --white:         #FFFFFF;
  --off-white:     #FAFBFF;
  --text-dark:     #111827;
  --text-mid:      #374151;
  --text-light:    #6B7280;

  /* legacy aliases for PHP/legal pages */
  --gold:          var(--violet);
  --gold-light:    var(--violet-mid);
  --beige:         var(--violet-light);
  --beige-light:   var(--violet-pale);
  --beige-pale:    var(--violet-pale);
  --cream:         var(--off-white);
  --sand:          #F3ECFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --nav-h: 72px;
  --section-pad: 100px;
  --container-w: 1160px;
  --container-narrow-w: 800px;
  --radius: 4px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 500; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  font-size: 14px;
  max-width: 600px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 40px rgba(107,63,160,0.3);
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner a { color: var(--rose-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-reject {
  padding: 8px 16px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn-cookie-accept { background: var(--rose); color: var(--white); }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(139,92,200,0.2);
}
.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
.nav-logo-text sup { font-size: 12px; }
.navbar.scrolled .nav-logo-text { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.navbar.scrolled .nav-links a:hover { color: var(--violet); }

.nav-cta {
  background: var(--violet) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 500 !important;
  border: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--rose) !important; }
.navbar.scrolled .nav-cta { background: var(--violet) !important; }
.navbar.scrolled .nav-cta:hover { background: var(--rose) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}
.navbar.scrolled .nav-hamburger span { background: var(--text-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -180px 0;   /* espacio extra ↑↓ para el rango de movimiento */
  background-size: cover;
  background-position: center;
  /* NO background-attachment:fixed — JS controla el transform */
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,8,50,0.75) 0%,
    rgba(42,16,80,0.45) 30%,
    rgba(107,63,160,0.25) 60%,
    rgba(232,102,138,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-title sup { font-size: 0.35em; vertical-align: super; }
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.hero-claim {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.hero-desc {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== BTNS ===== */
.btn-primary {
  display: inline-block;
  background: var(--violet);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--violet);
  padding: 13px 34px;
  border-radius: 40px;
  border: 1.5px solid var(--violet);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-secondary:hover { background: var(--violet); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad) 0; }
.section-light  { background: var(--off-white); }
.section-cream  { background: var(--violet-pale); }
.section-sand   { background: var(--sky-pale); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: var(--container-narrow-w); }

.section-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title sup { font-size: 0.5em; }
.section-title.left { text-align: left; }
.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 56px;
  font-weight: 300;
}
.lead {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}
p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-weight: 400; }

/* ===== MÉTODO ===== */
.metodo-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.metodo-text { display: flex; flex-direction: column; gap: 0; }
.metodo-oro {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 2px solid var(--violet-light);
  padding-left: 32px;
}
.oro-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.oro-letra {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 300;
  color: var(--violet);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.oro-item strong { display: block; font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }
.oro-item p { font-size: 14px; color: var(--text-light); margin: 0; }
.metodo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 560px;
  box-shadow: 0 20px 60px rgba(107,63,160,0.2);
}
.metodo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.metodo-image:hover img { transform: scale(1.03); }

/* ===== CÓMO FUNCIONA ===== */
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.paso {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(139,92,200,0.2);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.paso:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,63,160,0.15);
}
.paso-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 300;
  color: var(--rose);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 16px;
}
.paso h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.paso p { font-size: 15px; color: var(--text-mid); font-weight: 400; margin: 0; line-height: 1.7; }

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-overlay-dark {
  background: linear-gradient(135deg, rgba(42,16,80,0.75) 0%, rgba(107,63,160,0.6) 50%, rgba(232,102,138,0.65) 100%) !important;
}
.parallax-divider-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 1024px;
}
.parallax-divider-text blockquote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.parallax-divider-text cite {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  font-style: normal;
}

/* ===== PARA QUIÉN ===== */
.resonar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.resonar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(139,92,200,0.15);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.resonar-item:hover {
  border-color: var(--rose);
  box-shadow: 0 8px 30px rgba(232,102,138,0.12);
}
.resonar-icon {
  color: var(--rose);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}
.resonar-item p { font-size: 15px; color: var(--text-mid); font-weight: 400; margin: 0; line-height: 1.7; }
.para-quien-cta { text-align: center; }
.para-quien-cta p { font-family: var(--font-sans); font-style: italic; font-size: 20px; color: var(--text-dark); font-weight: 500; margin-bottom: 24px; }

/* ===== MARCELA ===== */
.marcela-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.marcela-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 580px;
  box-shadow: 0 20px 60px rgba(126,200,227,0.3);
}
.marcela-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.marcela-text { display: flex; flex-direction: column; gap: 4px; }
.marcela-credenciales {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.marcela-credenciales span {
  padding: 6px 16px;
  border-radius: 40px;
  border: 1.5px solid var(--sky);
  font-size: 13px;
  color: var(--violet);
  font-weight: 400;
  background: var(--white);
}

/* ===== TESTIMONIOS ===== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonio {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(139,92,200,0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s;
}
.testimonio:hover { box-shadow: 0 10px 40px rgba(107,63,160,0.12); }
.testimonio::before {
  content: '"';
  font-family: var(--font-sans);
  font-size: 64px;
  color: var(--rose);
  opacity: 0.6;
  line-height: 0.8;
  margin-bottom: -8px;
}
.testimonio-texto {
  font-family: var(--font-sans);
  font-style: italic;
   font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
  margin: 0;
}
.testimonio-autor {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid rgba(139,92,200,0.2);
  padding: 4px 0;
}
.faq-item summary {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--violet);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 20px;
  font-size: 15.5px;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* ===== CONTACTO ===== */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.contacto-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-transform: uppercase;
}
.form-group label span { color: var(--rose); }
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(139,92,200,0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107,63,160,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-status {
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
}
.form-status.success { background: #e8f5e9; color: #2e7d32; }
.form-status.error   { background: #fce4e4; color: #b00020; }

.contacto-info { display: flex; flex-direction: column; gap: 32px; padding-top: 8px; }
.contacto-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contacto-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contacto-info-item strong { display: block; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 4px; }
.contacto-info-item a, .contacto-info-item span { font-size: 15px; color: var(--text-mid); font-weight: 300; }
.contacto-info-item a:hover { color: var(--violet); }

/* ===== FOOTER ===== */
.footer {
  background: #1A0A2E;
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.footer-logo sup { font-size: 11px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--rose-light); }
.footer-credit p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-credit a { color: rgba(255,255,255,0.5); }
.footer-credit a:hover { color: var(--sky-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .metodo-grid { grid-template-columns: 1fr; gap: 48px; }
  .metodo-image { height: 420px; }
  .marcela-grid { grid-template-columns: 1fr; gap: 48px; }
  .marcela-image { height: 400px; }
  .pasos-grid { grid-template-columns: repeat(2, 1fr); }
  .resonar-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--off-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 20px; }
  .pasos-grid { grid-template-columns: 1fr; }
  .resonar-grid { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-inner { flex-direction: column; gap: 32px; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .container { padding: 0 20px; }
  .hero-title { font-size: 56px; }
}

/* ===== MOTIVOS DE CONSULTA ===== */
.motivos-intro {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(139,92,200,0.15);
}
.motivos-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-mid);
  margin-bottom: 12px;
}
.motivos-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 36px;
}
.motivos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.motivo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1.5px solid rgba(139,92,200,0.12);
  transition: box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}
.motivo-card:hover {
  border-color: var(--violet-light);
  box-shadow: 0 8px 28px rgba(107,63,160,0.1);
}
.motivo-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.motivo-card h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.motivo-card p {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* ===== PODCAST ===== */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.podcast-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(139,92,200,0.15);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.podcast-card:hover {
  box-shadow: 0 12px 40px rgba(107,63,160,0.13);
  transform: translateY(-4px);
}
.podcast-thumb {
  background: linear-gradient(135deg, var(--violet) 0%, var(--rose) 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.podcast-thumb-logo {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 16px;
  line-height: 1.3;
}
.podcast-thumb-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  opacity: 0.15;
}
.podcast-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.podcast-programa {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.podcast-titulo {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}
.podcast-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.podcast-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(139,92,200,0.1);
}
.podcast-fecha {
  font-size: 12px;
  color: var(--text-light);
}
.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1DB954;
  color: var(--white);
  padding: 7px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-spotify:hover {
  background: #17a349;
  transform: translateY(-1px);
}
.btn-spotify svg { flex-shrink: 0; }
.podcast-cta {
  text-align: center;
  margin-top: 8px;
}
.podcast-cta p {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .motivos-grid { grid-template-columns: repeat(4, 1fr); }
  .podcast-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .motivos-grid { grid-template-columns: repeat(2, 1fr); }
  .podcast-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .motivos-grid { grid-template-columns: repeat(2, 1fr); }
}
