/* ==========================================================================
   ESMERALDA MONTERO — Custom CSS for WordPress/Elementor
   Only styles NOT achievable via Elementor native controls
   ========================================================================== */

/* ------------------------------------------------------------------
   DESIGN TOKENS (CSS Custom Properties)
   ------------------------------------------------------------------ */
:root {
  --primary: #11B798;
  --secondary: #112B47;
  --tertiary: #FEC20E;
  --black: #181818;
  --grey: #687176;
  --dark-blue: #1C2930;

  --primary-08: rgba(17, 183, 152, 0.08);
  --primary-12: rgba(17, 183, 152, 0.12);
  --primary-20: rgba(17, 183, 152, 0.20);
  --primary-30: rgba(17, 183, 152, 0.30);
  --primary-50: rgba(17, 183, 152, 0.50);
  --secondary-04: rgba(17, 43, 71, 0.04);
  --secondary-06: rgba(17, 43, 71, 0.06);
  --secondary-08: rgba(17, 43, 71, 0.08);
  --secondary-12: rgba(17, 43, 71, 0.12);
  --secondary-50: rgba(17, 43, 71, 0.50);
  --tertiary-15: rgba(254, 194, 14, 0.15);
  --tertiary-30: rgba(254, 194, 14, 0.30);
  --grey-30: rgba(104, 113, 118, 0.30);
  --grey-50: rgba(104, 113, 118, 0.50);
  --black-60: rgba(24, 24, 24, 0.60);
  --black-80: rgba(24, 24, 24, 0.80);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-30: rgba(255, 255, 255, 0.30);
  --white-50: rgba(255, 255, 255, 0.50);
  --white-70: rgba(255, 255, 255, 0.70);
  --white-85: rgba(255, 255, 255, 0.85);
  --white-90: rgba(255, 255, 255, 0.90);

  --bg: #ffffff;
  --bg-warm: #F8F9FA;
  --bg-cream: #F5F6F4;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --border: rgba(17, 43, 71, 0.10);
  --border-light: rgba(255, 255, 255, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.4s;
  --duration-fast: 0.2s;

  --shadow-sm: 0 2px 8px rgba(17, 43, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 43, 71, 0.08);
  --shadow-lg: 0 16px 48px rgba(17, 43, 71, 0.12);
  --shadow-glow: 0 0 30px rgba(17, 183, 152, 0.15);

  --header-h: 80px;
}

/* ------------------------------------------------------------------
   GEOMETRIC BORDER RADIUS (Signature asymmetric)
   ------------------------------------------------------------------ */
.geo-radius {
  border-radius: 20px 4px 20px 4px;
}

.geo-radius-alt {
  border-radius: 4px 20px 4px 20px;
}

/* ------------------------------------------------------------------
   SELECTION
   ------------------------------------------------------------------ */
::selection {
  background: var(--primary-20);
  color: var(--secondary);
}

/* ------------------------------------------------------------------
   SECTION LABEL (decorative line before text)
   ------------------------------------------------------------------ */
.em-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
}

.em-section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: skewX(-20deg);
}

.em-section-label--light {
  color: var(--tertiary);
}

.em-section-label--light::before {
  background: var(--tertiary);
}

/* ------------------------------------------------------------------
   REVEAL ANIMATIONS (scroll-triggered)
   ------------------------------------------------------------------ */
.em-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.em-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.em-reveal:nth-child(2) { transition-delay: 0.08s; }
.em-reveal:nth-child(3) { transition-delay: 0.16s; }
.em-reveal:nth-child(4) { transition-delay: 0.24s; }
.em-reveal:nth-child(5) { transition-delay: 0.32s; }
.em-reveal:nth-child(6) { transition-delay: 0.40s; }

/* ------------------------------------------------------------------
   HERO (prototipo v4 exacto)
   ------------------------------------------------------------------ */
section.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 !important;
  padding: 0;
}

section.hero .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.hero .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(17, 43, 71, 0.90) 0%,
      rgba(28, 41, 48, 0.78) 40%,
      rgba(17, 43, 71, 0.88) 100%
    );
  z-index: 1;
}

section.hero .hero__content {
  position: relative;
  z-index: 2;
  text-align: right;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Tagline */
section.hero .hero__tagline,
section.hero h1.hero__tagline,
section.hero h2.hero__tagline,
section.hero h3.hero__tagline,
section.hero h4.hero__tagline,
section.hero h5.hero__tagline,
section.hero h6.hero__tagline,
section.hero p.hero__tagline,
section.hero span.hero__tagline {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  color: #11B798 !important;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  padding: 0;
}

/* Title */
section.hero .hero__title,
section.hero h1.hero__title,
section.hero h2.hero__title,
section.hero h3.hero__title,
section.hero h4.hero__title,
section.hero h5.hero__title,
section.hero h6.hero__title,
section.hero p.hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.4rem, 5.2vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 24px;
  margin-top: 0;
  margin-left: auto;
  letter-spacing: -0.02em;
  padding: 0;
  max-width: 740px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.50);
}

section.hero .hero__highlight,
section.bio-intro .hero__highlight {
  color: #FEC20E !important;
}

section.hero .hero__title em {
  color: #FEC20E !important;
  font-style: italic;
}

/* Subtitle */
section.hero .hero__subtitle,
section.hero .hero__subtitle p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.225rem !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 680px;
  margin: 0 0 40px auto;
  font-weight: 300;
  padding: 0;
}

section.hero .hero__subtitle p:last-child {
  margin-bottom: 0;
}

section.hero .hero__subtitle strong {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 500;
}

/* "Esmerarda Montero" es un <h1> por semántica/SEO, pero debe verse idéntico al texto
   del subtítulo que lo rodea: se neutraliza el estilo de encabezado y se fuerza inline. */
section.hero .hero__subtitle h1.hero__subtitle-h1,
section.hero .hero__subtitle-h1 {
  display: inline;
  margin: 0;
  padding: 0;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  letter-spacing: inherit;
  text-transform: none;
  text-shadow: none;
}

/* CTAs */
section.hero .hero__ctas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

section.hero .hero__ctas a.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.hero .hero__ctas a.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.hero .hero__ctas a.btn:hover svg {
  transform: translateX(3px);
}

/* Primary button */
section.hero .hero__ctas a.btn.btn--primary {
  background: #11B798 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
}

section.hero .hero__ctas a.btn.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.hero .hero__ctas a.btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff !important;
  background: #11B798 !important;
}

section.hero .hero__ctas a.btn.btn--primary:hover::before {
  opacity: 1;
}

/* Outline light button */
section.hero .hero__ctas a.btn.btn--outline-light {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.30) !important;
  backdrop-filter: blur(4px);
  box-shadow: none;
}

section.hero .hero__ctas a.btn.btn--outline-light:hover {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.10) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Scroll hint */
section.hero .hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.50);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: hero-scroll-float 2.5s ease-in-out infinite;
}

section.hero .hero__scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes hero-scroll-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------------------------------
   BIO INTRO (prototipo v4 exacto)
   ------------------------------------------------------------------ */
/* Force full-width breakout from Elementor containers */
.elementor-widget-em_bio_intro,
.elementor-widget-em_hero_video {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_bio_intro > .elementor-widget-container,
.elementor-widget-em_hero_video > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.bio-intro {
  position: relative;
  padding: 120px 0 0;
  background: linear-gradient(135deg, #112B47 0%, #1C2930 60%, #0f1f2b 100%);
  overflow: hidden;
}

section.bio-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(17, 183, 152, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

section.bio-intro .bio-intro__container {
  position: relative;
  z-index: 1;
}

section.bio-intro .bio-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

section.bio-intro .bio-intro__content {
  color: #ffffff;
  padding-bottom: 120px;
}

section.bio-intro .bio-intro__label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  margin-bottom: 16px;
}

section.bio-intro .bio-intro__title,
section.bio-intro h2.bio-intro__title,
section.bio-intro h3.bio-intro__title,
section.bio-intro h4.bio-intro__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.1rem, 4vw, 3.2rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: -0.02em;
}

section.bio-intro .bio-intro__text {
  margin-bottom: 40px;
}

section.bio-intro .bio-intro__text p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

section.bio-intro .bio-intro__text p:last-child {
  margin-bottom: 0;
}

section.bio-intro .bio-intro__text strong {
  color: rgba(255, 255, 255, 0.85);
}

/* Button */
section.bio-intro .bio-intro__content a.btn.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  background: #11B798 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  line-height: 1;
}

section.bio-intro .bio-intro__content a.btn.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.bio-intro .bio-intro__content a.btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff !important;
  background: #11B798 !important;
}

section.bio-intro .bio-intro__content a.btn.btn--primary:hover::before {
  opacity: 1;
}

section.bio-intro .bio-intro__content a.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.bio-intro .bio-intro__content a.btn:hover svg {
  transform: translateX(3px);
}

/* Photo */
section.bio-intro .bio-intro__photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: end;
}

section.bio-intro .bio-intro__img {
  width: 100%;
  max-width: 570px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ------------------------------------------------------------------
   MEDIA PRESENCE (prototipo v4 exacto)
   ------------------------------------------------------------------ */
.elementor-widget-em_media_presence {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_media_presence > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.media-presence {
  background: #181818;
  padding: 80px 0;
}

section.media-presence .media-presence__label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  text-align: center;
  margin-bottom: 8px;
}

section.media-presence .media-presence__title,
section.media-presence h2.media-presence__title,
section.media-presence h3.media-presence__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  letter-spacing: -0.02em;
  padding: 0;
}

section.media-presence .media-presence__wall {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

section.media-presence .media-presence__track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: mediaPresenceScroll 55s linear infinite;
  width: max-content;
}

section.media-presence .media-presence__track:hover {
  animation-play-state: paused;
}

@keyframes mediaPresenceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

section.media-presence .media-presence__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.media-presence .media-presence__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.media-presence .media-presence__logo:hover {
  opacity: 1;
}

/* ------------------------------------------------------------------
   TESTIMONIALS v2 — Slider (testimonials-v2)
   ------------------------------------------------------------------ */
.elementor-widget-em_testimonials {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_testimonials > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.testimonials-v2 {
  padding: 120px 0;
  background: #181818;
  overflow: hidden;
}

section.testimonials-v2 .testimonials-v2__label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  text-align: center;
  width: 100%;
  margin-bottom: 16px;
}

section.testimonials-v2 .testimonials-v2__title,
section.testimonials-v2 h2.testimonials-v2__title,
section.testimonials-v2 h3.testimonials-v2__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  letter-spacing: -0.02em;
  padding: 0;
}

section.testimonials-v2 .testimonials-v2__slider {
  position: relative;
}

section.testimonials-v2 .testimonials-v2__track-wrap {
  overflow: hidden;
}

section.testimonials-v2 .testimonials-v2__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

section.testimonials-v2 .testimonials-v2__slide {
  flex: 0 0 25%;
  padding: 0 16px;
  box-sizing: border-box;
}

section.testimonials-v2 .testimonials-v2__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

section.testimonials-v2 .testimonials-v2__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

section.testimonials-v2 .testimonials-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.testimonials-v2 .testimonials-v2__card:hover .testimonials-v2__photo img {
  transform: scale(1.05);
}

section.testimonials-v2 .testimonials-v2__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

section.testimonials-v2 .testimonials-v2__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: #11B798;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 240px;
}

section.testimonials-v2 .testimonials-v2__quote {
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  position: relative;
  flex: 1;
  width: 100%;
}

section.testimonials-v2 .testimonials-v2__quote::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #212121;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

section.testimonials-v2 .testimonials-v2__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin: 0;
}

/* Navigation - arrows on sides */
section.testimonials-v2 .testimonials-v2__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0;
}

section.testimonials-v2 .testimonials-v2__arrow:hover {
  border-color: #11B798 !important;
  color: #11B798 !important;
  background: rgba(17, 183, 152, 0.08) !important;
}

section.testimonials-v2 .testimonials-v2__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

section.testimonials-v2 .testimonials-v2__arrow:disabled:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
}

section.testimonials-v2 .testimonials-v2__arrow--prev {
  left: -64px;
}

section.testimonials-v2 .testimonials-v2__arrow--next {
  right: -64px;
}

section.testimonials-v2 .testimonials-v2__arrow svg {
  width: 20px;
  height: 20px;
}

/* Dots centered below */
section.testimonials-v2 .testimonials-v2__dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

section.testimonials-v2 .testimonials-v2__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

section.testimonials-v2 .testimonials-v2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 0;
  box-shadow: none !important;
}

section.testimonials-v2 .testimonials-v2__dot--active {
  background: #11B798 !important;
  width: 24px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------
   TESTIMONIALS v2 — GRID LAYOUT
   ------------------------------------------------------------------ */
section.testimonials-v2.testimonials-v2--grid .testimonials-v2__grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

section.testimonials-v2.testimonials-v2--grid .testimonials-v2__slide {
  padding: 0;
}

section.testimonials-v2.testimonials-v2--grid .testimonials-v2__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

@media (max-width: 1024px) {
  section.testimonials-v2.testimonials-v2--grid .testimonials-v2__grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section.testimonials-v2.testimonials-v2--grid .testimonials-v2__grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  section.testimonials-v2.testimonials-v2--grid .testimonials-v2__grid-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ------------------------------------------------------------------
   TESTIMONIALS v2 — LIGHT VERSION
   ------------------------------------------------------------------ */
section.testimonials-v2.testimonials-v2--light {
  background: #ffffff;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__label {
  color: #11B798 !important;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__title,
section.testimonials-v2.testimonials-v2--light h2.testimonials-v2__title,
section.testimonials-v2.testimonials-v2--light h3.testimonials-v2__title {
  color: #112B47 !important;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__name {
  color: #112B47;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__role {
  color: #11B798;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__quote {
  background: #F8F9FA;
  border: 1px solid rgba(17, 43, 71, 0.08);
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__quote::before {
  background: #F8F9FA;
  border-top: 1px solid rgba(17, 43, 71, 0.08);
  border-left: 1px solid rgba(17, 43, 71, 0.08);
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__text {
  color: #687176;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__arrow {
  border-color: rgba(17, 43, 71, 0.15) !important;
  color: #112B47 !important;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__arrow:hover {
  border-color: #11B798 !important;
  color: #11B798 !important;
  background: rgba(17, 183, 152, 0.06) !important;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__arrow:disabled {
  opacity: 0.3;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__arrow:disabled:hover {
  border-color: rgba(17, 43, 71, 0.15) !important;
  color: #112B47 !important;
  background: transparent !important;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__dot {
  background: rgba(17, 43, 71, 0.15) !important;
}

section.testimonials-v2.testimonials-v2--light .testimonials-v2__dot--active {
  background: #11B798 !important;
}

/* ------------------------------------------------------------------
   TESTIMONIALS v2 — MINT VERSION (V3)
   ------------------------------------------------------------------ */
section.testimonials-v2.testimonials-v2--mint {
  background: #edf8f5;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__label {
  color: #11B798 !important;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__title,
section.testimonials-v2.testimonials-v2--mint h2.testimonials-v2__title,
section.testimonials-v2.testimonials-v2--mint h3.testimonials-v2__title {
  color: #112B47 !important;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__name {
  color: #112B47;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__role {
  color: #11B798;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__quote {
  background: #ffffffab;
  border: 1px solid rgba(17, 183, 152, 0.12);
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__quote::before {
  background: #f9fdfc;
  border-top: 1px solid rgba(17, 183, 152, 0.12);
  border-left: 1px solid rgba(17, 183, 152, 0.12);
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__text {
  color: #687176;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__arrow {
  border-color: rgba(17, 43, 71, 0.15) !important;
  color: #112B47 !important;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__arrow:hover {
  border-color: #11B798 !important;
  color: #11B798 !important;
  background: rgba(17, 183, 152, 0.06) !important;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__arrow:disabled {
  opacity: 0.3;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__arrow:disabled:hover {
  border-color: rgba(17, 43, 71, 0.15) !important;
  color: #112B47 !important;
  background: transparent !important;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__dot {
  background: rgba(17, 43, 71, 0.15) !important;
}

section.testimonials-v2.testimonials-v2--mint .testimonials-v2__dot--active {
  background: #11B798 !important;
}

/* ------------------------------------------------------------------
   PERSONAL BRANDS — Marcas Personales (prototipo v4 exacto)
   ------------------------------------------------------------------ */
.elementor-widget-em_personal_brands {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_personal_brands > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.personal-brands {
  background: #181818;
  padding: 120px 0;
}

section.personal-brands .personal-brands__label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  text-align: center;
  width: 100%;
  margin-bottom: 16px;
}

section.personal-brands .personal-brands__title,
section.personal-brands h2.personal-brands__title,
section.personal-brands h3.personal-brands__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  letter-spacing: -0.02em;
  padding: 0;
}

section.personal-brands .personal-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

section.personal-brands .personal-brands__card {
  text-align: center;
}

section.personal-brands .personal-brands__img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 16px;
}

section.personal-brands .personal-brands__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.personal-brands .personal-brands__card:hover .personal-brands__img {
  transform: scale(1.05);
}

section.personal-brands .personal-brands__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

section.personal-brands .personal-brands__role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  line-height: 20px;
}

/* ------------------------------------------------------------------
   TRUST BRANDS — Marcas Comerciales (trust-v2)
   ------------------------------------------------------------------ */
.elementor-widget-em_trust_brands {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_trust_brands > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.trust {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

section.trust .trust__label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

section.trust .trust__title,
section.trust h2.trust__title,
section.trust h3.trust__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #112B47 !important;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  letter-spacing: -0.02em;
  padding: 0;
}

section.trust .trust__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

section.trust .trust__wall {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

section.trust .trust__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
}

section.trust .trust__track:hover {
  animation-play-state: paused;
}

section.trust .trust__track--ltr {
  animation: trustScrollLTR 40s linear infinite;
}

section.trust .trust__track--rtl {
  animation: trustScrollRTL 40s linear infinite;
}

@keyframes trustScrollLTR {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes trustScrollRTL {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

section.trust .trust__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 110px;
  padding: 20px 40px;
  position: relative;
}

section.trust .trust__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(17, 43, 71, 0.08);
}

section.trust .trust__logo-img {
  height: 65px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.trust .trust__item:hover .trust__logo-img {
  transform: scale(1.12);
}

section.trust .trust__logo-img[alt="Junta Central Electoral"] {
  height: 100px;
  max-width: 220px;
}

/* ------------------------------------------------------------------
   SERVICES HOME — Como puedo ayudarte (prototipo v4 exacto)
   ------------------------------------------------------------------ */
.elementor-widget-em_services_home {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_services_home > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.services {
  padding: 120px 0;
  background: #ffffff;
}

section.services .services__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

section.services .services__intro-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  margin-bottom: 16px;
}

section.services .services__title,
section.services h2.services__title,
section.services h3.services__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  color: #112B47 !important;
  line-height: 1.15 !important;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.02em;
}

section.services .services__intro {
  color: #687176;
  font-size: 1rem;
  line-height: 1.75;
}

/* Cards */
section.services .services__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

section.services .services__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 6 / 7;
  cursor: pointer;
}

section.services .services__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.services .services__card:hover .services__card-img {
  transform: scale(1.05);
}

section.services .services__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.services .services__card:hover .services__card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.45) 100%);
}

section.services .services__card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  z-index: 1;
  transition: bottom 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.services .services__card:hover .services__card-content {
  bottom: 0;
}

section.services .services__card-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.40rem, 2vw, 1.40rem) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: -0.02em;
}

section.services .services__card-line {
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.50);
  margin-bottom: 16px;
}

section.services .services__card-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

section.services .services__card-btn {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              margin-top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: fit-content;
  border-radius: 9999px;
}

section.services .services__card:hover .services__card-btn {
  max-height: 60px;
  opacity: 1;
  margin-top: 24px;
}

/* Button inside card */
section.services a.services__card-btn.btn.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #11B798 !important;
  color: #ffffff !important;
  text-decoration: none;
  border: none;
  line-height: 1;
}

section.services a.services__card-btn.btn svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------------
   HUB V1 — Tienda hub (tienda-hub)
   ------------------------------------------------------------------ */
.elementor-widget-em_hub_v1 {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_hub_v1 > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.tienda-hub {
  padding: 100px 0;
  background: #ffffff;
}

section.tienda-hub .tienda-hub__header {
  text-align: center;
  margin-bottom: 64px;
}

section.tienda-hub .tienda-hub__label,
section.tienda-hub h1.tienda-hub__label,
section.tienda-hub h2.tienda-hub__label,
section.tienda-hub p.tienda-hub__label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 0;
}

section.tienda-hub .tienda-hub__title,
section.tienda-hub h2.tienda-hub__title,
section.tienda-hub h3.tienda-hub__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 3.5vw, 2.5rem) !important;
  font-weight: 600 !important;
  color: #112B47 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

section.tienda-hub .tienda-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

section.tienda-hub .tienda-hub__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: #F8F9FA;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.tienda-hub .tienda-hub__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(17, 43, 71, 0.10);
}

section.tienda-hub .tienda-hub__card-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: #112B47 !important;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.02em;
}

section.tienda-hub .tienda-hub__card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

section.tienda-hub .tienda-hub__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.tienda-hub .tienda-hub__card:hover .tienda-hub__card-img {
  transform: scale(1.05);
}

section.tienda-hub .tienda-hub__card-desc {
  color: #687176;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 28px;
  flex: 1;
}

section.tienda-hub .tienda-hub__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  line-height: 1;
  background: #11B798 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  border: none;
}

section.tienda-hub .tienda-hub__card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.tienda-hub .tienda-hub__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff !important;
}

section.tienda-hub .tienda-hub__card-btn:hover::before {
  opacity: 1;
}

section.tienda-hub .tienda-hub__card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.tienda-hub .tienda-hub__card-btn:hover svg {
  transform: translateX(3px);
}

/* ------------------------------------------------------------------
   SERVICIOS — service-list (prototipo v4 exacto)
   ------------------------------------------------------------------ */
section.service-list {
  padding: 120px 0;
  background: #F8F9FA;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

section.service-list .service-list__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798;
  text-align: center;
  margin-bottom: 16px;
}

section.service-list .service-list__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #112B47;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

section.service-list .service-list__desc {
  text-align: center;
  color: #687176;
  line-height: 1.75;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 64px;
}

section.service-list .service-list__header {
  margin-bottom: 64px;
}

section.service-list .service-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

section.service-list .service-list__grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

section.service-list .service-list__grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

section.service-list .service-list__card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.service-list .service-list__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

section.service-list .service-list__img-wrap {
  overflow: hidden;
  border-radius: 16px;
}

section.service-list .service-list__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.service-list .service-list__card:hover .service-list__img {
  transform: scale(1.04);
}

section.service-list .service-list__body {
  padding: 24px 0 8px;
}

section.service-list .service-list__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #112b47;
  margin-bottom: 12px;
  line-height: 1.3;
}

section.service-list .service-list__text {
  color: #687176;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

section.service-list .service-list__pricing {
  font-size: 0.9rem;
  font-weight: 600;
  color: #112B47;
  margin-bottom: 16px;
}

section.service-list .service-list__pricing span {
  font-weight: 400;
  color: #687176;
}

section.service-list .service-list__link,
section.service-list button.service-list__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #11B798 !important;
  text-decoration: none;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-appearance: none;
  appearance: none;
}

section.service-list .service-list__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.service-list .service-list__link:hover {
  gap: 10px;
  color: #11B798;
}

section.service-list .service-list__link:hover svg {
  transform: translateX(2px);
}

/* ------------------------------------------------------------------
   TALLERES — taller-list (dinámico desde WooCommerce)
   ------------------------------------------------------------------ */
section.taller-list {
  padding: 120px 0;
  background: #F8F9FA;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

section.taller-list .taller-list__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798;
  text-align: center;
  margin-bottom: 16px;
}

section.taller-list .taller-list__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #112B47;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

section.taller-list .taller-list__desc {
  text-align: center;
  color: #687176;
  line-height: 1.75;
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 64px;
}

section.taller-list .taller-list__header {
  margin-bottom: 64px;
}

section.taller-list .taller-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

section.taller-list .taller-list__grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

section.taller-list .taller-list__grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

section.taller-list .taller-list__card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.taller-list .taller-list__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

section.taller-list .taller-list__img-wrap {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

section.taller-list .taller-list__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Excepción: la imagen de marca personal se centra */
section.taller-list .taller-list__img[src*="marca-personal"] {
  object-position: center;
}

section.taller-list .taller-list__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 43, 71, 0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.taller-list .taller-list__card:hover .taller-list__img-overlay {
  opacity: 1;
}

section.taller-list .taller-list__img-icon {
  width: 64px;
  height: 64px;
  color: #ffffff;
}

section.taller-list .taller-list__img-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
}

section.taller-list .taller-list__card:hover .taller-list__img {
  transform: scale(1.04);
}

section.taller-list .taller-list__body {
  padding: 24px 0 8px;
}

section.taller-list .taller-list__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #112b47;
  margin-bottom: 12px;
  line-height: 1.3;
}

section.taller-list .taller-list__text {
  color: #687176;
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

section.taller-list .taller-list__text p {
  margin: 0 0 12px;
}

section.taller-list .taller-list__text p:last-child {
  margin-bottom: 0;
}

section.taller-list .taller-list__pricing {
  font-size: 0.9rem;
  font-weight: 600;
  color: #112B47;
  margin-bottom: 16px;
}

section.taller-list .taller-list__pricing span {
  font-weight: 400;
  color: #687176;
}

section.taller-list .taller-list__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #11B798;
  text-decoration: none;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.taller-list .taller-list__link:hover {
  gap: 10px;
  color: #11B798;
}

section.taller-list .taller-list__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.taller-list .taller-list__link:hover svg {
  transform: translateX(2px);
}

/* ------------------------------------------------------------------
   HERO SECTION — Overrides página Servicios
   ------------------------------------------------------------------ */
body.page-servicios section.services-hero .services-hero__container {
  grid-template-columns: 1.5fr 1fr;
}

body.page-servicios section.services-hero .services-hero__title,
body.page-servicios section.services-hero h1.services-hero__title,
body.page-servicios section.services-hero h2.services-hero__title,
body.page-servicios section.services-hero h3.services-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  letter-spacing: -0.02em !important;
  padding: 0 !important;
}

body.page-servicios section.services-hero .services-hero__text,
body.page-servicios section.services-hero .services-hero__text p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.5 !important;
  font-size: 1.3rem !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  body.page-servicios section.services-hero .services-hero__container,
  body.page-tienda section.services-hero .services-hero__container,
  body.page-galeria-de-medios section.services-hero .services-hero__container {
    grid-template-columns: 1fr !important;
    padding-top: calc(var(--header-h, 64px) + 48px);
    padding-bottom: 0px;
  }
}

/* ------------------------------------------------------------------
   HERO SECTION — Overrides página Talleres
   ------------------------------------------------------------------ */
body.page-talleres section.services-hero .services-hero__text,
body.page-talleres section.services-hero .services-hero__text p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.5 !important;
  font-size: 1.3rem !important;
  margin: 0 !important;
}

body.page-talleres section.services-hero .services-hero__title,
body.page-talleres section.services-hero h1.services-hero__title,
body.page-talleres section.services-hero h2.services-hero__title,
body.page-talleres section.services-hero h3.services-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4vw, 4rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  letter-spacing: -0.02em !important;
  padding: 0 !important;
}

body.page-paquetes-formacion-empresas section.services-hero .services-hero__title,
body.page-paquetes-formacion-empresas section.services-hero h1.services-hero__title,
body.page-paquetes-formacion-empresas section.services-hero h2.services-hero__title,
body.page-paquetes-formacion-empresas section.services-hero h3.services-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  letter-spacing: -0.02em !important;
  padding: 0 !important;
}

body.page-paquetes-formacion-empresas section.services-hero .services-hero__text,
body.page-paquetes-formacion-empresas section.services-hero .services-hero__text p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.55 !important;
  font-size: 1.2rem !important;
  margin: 0 !important;
}

body.page-paquetes-formacion-empresas section.services-hero .services-hero__text p + p {
  margin-top: 16px !important;
}

/* ------------------------------------------------------------------
   HERO SECTION — services-hero (prototipo v4 exacto)
   ------------------------------------------------------------------ */
.elementor-widget-em_hero_section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_hero_section > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.services-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Overlay */
section.services-hero .services-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

section.services-hero .services-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100%;
}

section.services-hero .services-hero__content {
  padding-right: 48px;
}

/* Label (H1 with label style) */
section.services-hero .services-hero__label,
section.services-hero h1.services-hero__label,
section.services-hero h2.services-hero__label,
section.services-hero h3.services-hero__label,
section.services-hero span.services-hero__label,
section.services-hero p.services-hero__label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #11B798 !important;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.4;
  padding: 0;
}

/* Title */
section.services-hero .services-hero__title,
section.services-hero h1.services-hero__title,
section.services-hero h2.services-hero__title,
section.services-hero h3.services-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 4vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.02em;
  padding: 0;
}

section.services-hero .hero__highlight {
  color: #FEC20E !important;
}

/* Description */
section.services-hero .services-hero__text,
section.services-hero .services-hero__text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-size: 1.1rem;
  margin: 0;
}

/* Link style button */
section.services-hero .services-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #11B798;
  margin-top: 32px;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}

section.services-hero .services-hero__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.services-hero .services-hero__link:hover {
  gap: 10px;
  color: #11B798;
}

section.services-hero .services-hero__link:hover svg {
  transform: translateX(2px);
}

/* Primary button style */
section.services-hero a.services-hero__btn.btn.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  background: #11B798 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  line-height: 1;
  margin-top: 32px;
}

section.services-hero a.services-hero__btn.btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff !important;
}

section.services-hero a.services-hero__btn.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.services-hero a.services-hero__btn.btn:hover svg {
  transform: translateX(3px);
}

/* Layout: text only */
section.services-hero.services-hero--text_only .services-hero__container {
  grid-template-columns: 1fr;
}

section.services-hero.services-hero--text_only .services-hero__content {
  padding-right: 0;
  display: flex;
  flex-direction: column;
}

section.services-hero.services-hero--text_only .services-hero__content[style*="center"] .services-hero__link,
section.services-hero.services-hero--text_only .services-hero__content[style*="center"] .services-hero__btn {
  align-self: center;
}

section.services-hero.services-hero--text_only .services-hero__content[style*="right"] .services-hero__link,
section.services-hero.services-hero--text_only .services-hero__content[style*="right"] .services-hero__btn {
  align-self: flex-end;
}

/* Figure / Image */
section.services-hero .services-hero__figure {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  height: 100%;
}

section.services-hero .services-hero__img {
  height: 90%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}

/* ------------------------------------------------------------------
   TRAYECTORIA (prototipo v4 exacto)
   ------------------------------------------------------------------ */
.elementor-widget-em_trayectoria {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_trayectoria > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.trayectoria {
  padding: 120px 0;
}

section.trayectoria .trayectoria__label {
  display: block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #11B798 !important;
  text-align: left;
  margin-bottom: 16px;
}

section.trayectoria .trayectoria__title,
section.trayectoria h2.trayectoria__title,
section.trayectoria h3.trayectoria__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #112B47 !important;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

/* Intro paragraphs */
section.trayectoria .trayectoria__intro {
  margin-bottom: 48px;
}

section.trayectoria .trayectoria__intro p {
  color: #687176;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

section.trayectoria .trayectoria__intro p:last-child {
  margin-bottom: 0;
}

section.trayectoria .trayectoria__intro strong {
  color: #181818;
  font-weight: 600;
}

/* Two-column grid */
section.trayectoria .trayectoria__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

section.trayectoria .trayectoria__content p {
  color: #687176;
  line-height: 1.80;
  font-size: 1rem;
  margin-bottom: 16px;
}

section.trayectoria .trayectoria__content strong {
  color: #181818;
  font-weight: 600;
}

section.trayectoria .trayectoria__highlight {
  color: #11B798;
  font-weight: 600;
}

section.trayectoria .trayectoria__list {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

section.trayectoria .trayectoria__list li {
  position: relative;
  padding-left: 24px;
  color: #687176;
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 8px;
}

section.trayectoria .trayectoria__list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #11B798;
  font-weight: 600;
}

/* Blockquote */
section.trayectoria .trayectoria__quote {
  margin-top: 32px;
  padding: 32px 40px;
  border-left: 4px solid #11B798;
  background: rgba(17, 183, 152, 0.08);
  border-radius: 0 16px 16px 0;
}

section.trayectoria .trayectoria__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #112B47;
  margin-bottom: 0;
}

/* Expandable text */
section.trayectoria .trayectoria__expandable {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.trayectoria .trayectoria__expandable.trayectoria__expandable--open {
  max-height: 3000px;
  opacity: 1;
  margin-top: 20px;
}

section.trayectoria .trayectoria__expandable p:last-child,
section.trayectoria .trayectoria__visible p:last-child {
  display: inline;
}

/* Toggle button - inline with last word */
section.trayectoria .trayectoria__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 0 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: inherit;
  font-weight: 600;
  color: #11B798 !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  box-shadow: none !important;
  outline: none !important;
  min-height: 0;
  transition: gap 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  vertical-align: baseline;
}

section.trayectoria .trayectoria__toggle:hover {
  gap: 10px;
  background: none !important;
  background-color: transparent !important;
  color: #11B798 !important;
}

section.trayectoria .trayectoria__toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.trayectoria .trayectoria__toggle.trayectoria__toggle--open svg {
  transform: rotate(180deg);
}

/* Photo mobile (hidden on desktop) */
section.trayectoria .trayectoria__photo-mobile {
  display: none;
}

/* Photo column */
section.trayectoria .trayectoria__photo {
  position: sticky;
  top: calc(var(--header-h, 80px) + 32px);
}

section.trayectoria .trayectoria__img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

section.trayectoria .trayectoria__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CTA button */
section.trayectoria a.trayectoria__btn.btn.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  background: #11B798 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  line-height: 1;
  margin-top: 32px;
}

section.trayectoria a.trayectoria__btn.btn.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.trayectoria a.trayectoria__btn.btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff !important;
  background: #11B798 !important;
}

section.trayectoria a.trayectoria__btn.btn.btn--primary:hover::before {
  opacity: 1;
}

section.trayectoria a.trayectoria__btn.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.trayectoria a.trayectoria__btn.btn:hover svg {
  transform: translateX(3px);
}

/* ------------------------------------------------------------------
   HERO ABOUT (prototipo v4 exacto)
   ------------------------------------------------------------------ */
.elementor-widget-em_hero_about {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_hero_about > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.about-hero {
  position: relative;
  padding-top: var(--header-h, 80px);
  background: radial-gradient(ellipse at 50% 40%, #4a4f54 0%, #2a2d31 70%, #222527 100%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
}

section.about-hero .about-hero__name {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 1.3em;
  line-height: 0.85;
  user-select: none;
  margin: 0;
  padding: 0;
}

section.about-hero .about-hero__name-line {
  font-family: 'Impact', 'Arial Narrow', sans-serif;
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #11B798;
  white-space: nowrap;
  display: inline;
  line-height: 0.85;
}

section.about-hero .about-hero__name-line + .about-hero__name-line::before {
  content: ' ';
}

section.about-hero .about-hero__name--outline {
  color: transparent;
  -webkit-text-stroke: 2px #11B798;
}

section.about-hero .about-hero__figure {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

section.about-hero .about-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* ------------------------------------------------------------------
   HERO ABOUT — V2 (Playfair Display, elegante)
   ------------------------------------------------------------------ */
section.about-hero.about-hero--v2 .about-hero__name {
  flex-direction: column;
  align-items: center;
  gap: 0;
  bottom: 4%;
  line-height: 1;
}

section.about-hero.about-hero--v2 .about-hero__name-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  display: block;
  line-height: 0.85;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.7), 0 2px 12px rgba(0, 0, 0, 0.5);
}

section.about-hero.about-hero--v2 .about-hero__name--outline {
  font-weight: 400;
  -webkit-text-stroke: 1px #11B798;
  text-shadow: none;
}

section.about-hero.about-hero--v2 .about-hero__name::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(17, 183, 152, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ------------------------------------------------------------------
   BIO EXPANDABLE TEXT
   ------------------------------------------------------------------ */
.em-bio-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}

.em-bio-expandable--open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 16px;
}

/* ------------------------------------------------------------------
   CARD HOVER EFFECTS
   ------------------------------------------------------------------ */
.em-card-hover {
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.em-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.em-card-hover .elementor-image img {
  transition: transform var(--duration) var(--ease);
}

.em-card-hover:hover .elementor-image img {
  transform: scale(1.03);
}

/* ------------------------------------------------------------------
   GLASS EFFECT
   ------------------------------------------------------------------ */
.em-glass {
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ------------------------------------------------------------------
   SHADOW UTILITIES
   ------------------------------------------------------------------ */
.em-shadow-sm { box-shadow: var(--shadow-sm); }
.em-shadow-md { box-shadow: var(--shadow-md); }
.em-shadow-lg { box-shadow: var(--shadow-lg); }
.em-shadow-glow { box-shadow: var(--shadow-glow); }

/* ------------------------------------------------------------------
   BUTTON ENHANCEMENTS (pill shape + hover lift)
   ------------------------------------------------------------------ */
.em-btn-primary .elementor-button {
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  transition: all var(--duration) var(--ease);
}

.em-btn-primary .elementor-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
}

.em-btn-outline-light .elementor-button {
  backdrop-filter: blur(4px);
  transition: all var(--duration) var(--ease);
}

.em-btn-outline-light .elementor-button:hover {
  border-color: #ffffff !important;
  background: var(--white-10) !important;
  transform: translateY(-2px);
}

/* ------------------------------------------------------------------
   ASTRA OVERRIDES — Reset Astra defaults that conflict
   ------------------------------------------------------------------ */
.header ul,
.header ol,
.footer ul,
.footer ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header a,
.footer a {
  text-decoration: none;
  color: inherit;
  box-shadow: none;
}

.header a:hover,
.header a:focus,
.footer a:hover,
.footer a:focus {
  text-decoration: none;
  box-shadow: none;
  outline: none;
  color: inherit;
}

.header img,
.footer img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------------
   CONTAINER (base utility)
   ------------------------------------------------------------------ */
.container {
  max-width: var(--container, 1280px);
  margin: 0 auto;
  padding-left: var(--gutter, 24px);
  padding-right: var(--gutter, 24px);
}

/* ------------------------------------------------------------------
   BUTTONS (base)
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration) var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff;
}

.btn--secondary {
  background: var(--secondary);
  color: #ffffff;
}

.btn--secondary:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--white-30);
  backdrop-filter: blur(4px);
}

.btn--outline-light:hover {
  border-color: #ffffff;
  background: var(--white-10);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------ */
header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              height var(--duration) var(--ease);
}

header.header.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  height: 68px;
}

.header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.header .header__logo {
  flex-shrink: 0;
  height: 55px;
  position: relative;
  display: block;
}

.header .header__logo-img {
  height: 100%;
  width: auto;
  transition: opacity var(--duration) var(--ease);
  display: block;
}

.header .header__logo-img--contrast {
  position: relative;
}

.header .header__logo-img--principal {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.header.header--scrolled .header__logo-img--contrast {
  opacity: 0;
}

.header.header--scrolled .header__logo-img--principal {
  opacity: 1;
}

/* Nav */
.header .header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header .header__nav-logo {
  display: none;
}

.header .header__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.header .header__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s var(--ease),
              background 0.2s var(--ease);
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.header .header__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #11B798;
  border-radius: 1px;
  transform: scaleX(0) skewX(-20deg);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header .header__link:hover {
  color: rgba(255, 255, 255, 1);
}

.header .header__link:hover::after,
.header .header__link.header__link--active::after {
  transform: scaleX(1) skewX(-20deg);
}

.header.header--scrolled .header__link {
  color: #112B47;
}

.header.header--scrolled .header__link:hover {
  color: #11B798;
  background: rgba(17, 183, 152, 0.08);
}

.header.header--scrolled .header__link:hover::after {
  background: #11B798;
}

/* Header CTA */
.header a.header__cta.btn.btn--primary {
  padding: 8px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border-radius: 9999px;
  line-height: 1.4;
  background: #11B798;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.header a.header__cta.btn.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header a.header__cta.btn.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff;
}

.header a.header__cta.btn.btn--primary:hover::before {
  opacity: 1;
}

/* Hamburger */
.header .header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 10000;
  cursor: pointer;
  border: none !important;
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
  color: transparent !important;
  line-height: 1;
  min-height: 0;
}

.header .header__toggle:hover,
.header .header__toggle:focus,
.header .header__toggle:active {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  color: transparent !important;
}

.header .header__toggle .header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.header.header--scrolled .header__toggle .header__toggle-bar {
  background: #112B47;
}

.header .header__toggle.header__toggle--active .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header .header__toggle.header__toggle--active .header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header .header__toggle.header__toggle--active .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header .header__toggle.header__toggle--active .header__toggle-bar {
  background: #ffffff;
}

/* ------------------------------------------------------------------
   HEADER DROPDOWN SUBMENU
   ------------------------------------------------------------------ */
/* Link wrap (desktop: inline, mobile: flex row) */
.header .header__link-wrap {
  display: flex;
  align-items: center;
}

.header .header__chevron-btn {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  box-shadow: none !important;
  outline: none !important;
  min-height: 0;
}

.header .header__chevron-btn:hover,
.header .header__chevron-btn:focus,
.header .header__chevron-btn:active {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.header.header--scrolled .header__chevron-btn {
  color: #112B47;
}

.header.header--scrolled .header__chevron-btn:hover,
.header.header--scrolled .header__chevron-btn:focus {
  color: #112B47 !important;
}

.header .header__item--has-children {
  position: relative;
}

.header .header__chevron {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.header .header__item--has-children:hover .header__chevron,
.header .header__chevron-btn:hover .header__chevron {
  transform: rotate(180deg);
}

.header .header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 4px 16px 4px 16px;
  box-shadow: 0 8px 24px rgba(17, 43, 71, 0.08), 0 2px 8px rgba(17, 43, 71, 0.04);
  border: 1px solid rgba(17, 43, 71, 0.06);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

@media (min-width: 769px) {
  .header .header__item--has-children:hover > .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.header .header__submenu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .header__submenu-link {
  display: block;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #112B47;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.header .header__submenu-link:hover {
  color: #11B798;
  background: rgba(17, 183, 152, 0.06);
}

/* Dropdown on scrolled header - same style */
.header.header--scrolled .header__submenu {
  background: rgba(255, 255, 255, 0.98);
}

/* ------------------------------------------------------------------
   HEADER DROPDOWN — MOBILE
   ------------------------------------------------------------------ */
@media (max-width: 768px) {
  .header .header__item--has-children {
    position: relative;
    flex-direction: column;
    align-items: center;
  }

  .header .header__item--has-children:hover > .header__submenu:not(.header__submenu--open) {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .header .header__submenu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header .header__submenu--open {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }

  .header .header__submenu-link {
    color: rgba(255, 255, 255, 0.60);
    font-size: 1rem;
    padding: 8px 24px;
    text-align: center;
  }

  .header .header__submenu-link:hover {
    color: #ffffff;
    background: transparent;
  }

  .header .header__chevron {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header .header__chevron--open {
    transform: rotate(180deg);
  }

  .header .header__item--has-children:hover .header__chevron {
    transform: none;
  }

  .header .header__chevron--open,
  .header .header__item--has-children:hover .header__chevron--open {
    transform: rotate(180deg);
  }
}

/* ------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------ */
footer.footer {
  background: var(--secondary);
  padding: 64px 0 32px;
}

.footer .footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr) 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer .footer__tagline {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer .footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0 0;
}

.footer .footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.50);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}

.footer .footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer .footer__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer .footer__nav-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.footer .footer__nav-link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
  transition: color 0.2s var(--ease);
  display: inline-block;
  text-decoration: none;
}

.footer .footer__nav-link:hover {
  color: var(--primary);
}

.footer .footer__contact-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 12px;
}

.footer .footer__contact-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .footer__copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.70);
}

.footer .footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .footer__legal-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.70);
  transition: color var(--duration) var(--ease);
  text-decoration: none;
}

.footer .footer__legal-link:hover {
  color: var(--primary);
}

.footer .footer__legal-sep {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.70);
}

/* ------------------------------------------------------------------
   HIGHLIGHT TEXT (Tertiary color for emphasis)
   ------------------------------------------------------------------ */
.em-highlight {
  color: var(--tertiary);
}

.em-highlight-primary {
  color: var(--primary);
}

/* ------------------------------------------------------------------
   PODCAST PLAY ICON OVERLAY
   ------------------------------------------------------------------ */
.em-podcast-card .em-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 43, 71, 0.40);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.em-podcast-card:hover .em-play-icon {
  opacity: 1;
}

/* ------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   ------------------------------------------------------------------ */
/* ------------------------------------------------------------------
   RESPONSIVE — 1024px
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root {
    --gutter: 20px;
    --header-h: 72px;
  }

  /* Bio Intro 1024px */
  section.bio-intro .bio-intro__grid {
    gap: 40px;
  }

  /* Media Presence 1024px */
  section.media-presence {
    padding: 32px 0;
  }
  section.media-presence .media-presence__track {
    gap: 48px;
  }
  section.media-presence .media-presence__logo {
    height: 32px;
  }
  section.media-presence .media-presence__title,
  section.media-presence h2.media-presence__title {
    margin: 0 auto 32px;
  }

  .footer .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ------------------------------------------------------------------
   RESPONSIVE — 768px
   ------------------------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  /* Hub V1 responsive 768px */
  section.tienda-hub {
    padding: 64px 0;
  }
  section.tienda-hub .tienda-hub__header {
    margin-bottom: 40px;
  }
  section.tienda-hub .tienda-hub__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Servicios responsive 768px */
  section.service-list {
    padding: 80px 0;
  }
  section.service-list .service-list__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  section.service-list .service-list__grid--cols-2,
  section.service-list .service-list__grid--cols-4 {
    grid-template-columns: 1fr;
  }

  /* Talleres responsive 768px */
  section.taller-list {
    padding: 80px 0;
  }
  section.taller-list .taller-list__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  section.taller-list .taller-list__grid--cols-2,
  section.taller-list .taller-list__grid--cols-4 {
    grid-template-columns: 1fr;
  }

  /* Hero Section responsive 768px */
  section.services-hero {
    height: auto !important;
    min-height: 400px;
  }
  section.services-hero .services-hero__container {
    grid-template-columns: 1fr !important;
    padding-top: calc(var(--header-h, 64px) + 48px);
    padding-bottom: 80px;
  }
  section.services-hero .services-hero__content {
    padding-right: 0;
    text-align: center;
    padding-bottom: 24px;
    max-width: none !important;
    margin: 0 !important;
  }
  section.services-hero .services-hero__link {
    justify-content: center;
  }
  section.services-hero a.services-hero__btn.btn {
    margin-left: auto;
    margin-right: auto;
  }
  section.services-hero .services-hero__figure {
    justify-content: center;
    height: auto;
  }
  section.services-hero .services-hero__img {
    height: auto;
    width: 70%;
    max-width: 400px;
  }
  /* Mobile order */
  section.services-hero.services-hero--mobile-image_first .services-hero__content {
    order: 2;
  }
  section.services-hero.services-hero--mobile-image_first .services-hero__figure {
    order: 1;
    padding-top: calc(var(--header-h, 64px) + 24px);
  }
  section.services-hero.services-hero--mobile-text_first .services-hero__content {
    order: 1;
  }
  section.services-hero.services-hero--mobile-text_first .services-hero__figure {
    order: 2;
  }

  /* Trayectoria responsive 768px */
  section.trayectoria {
    padding: 64px 0;
  }
  section.trayectoria .trayectoria__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  section.trayectoria .trayectoria__photo {
    display: none;
  }
  section.trayectoria .trayectoria__photo-mobile {
    display: block;
    max-width: 400px;
    margin: 0 auto 24px;
  }
  section.trayectoria .trayectoria__photo-mobile .trayectoria__img-wrap {
    border-radius: 20px;
    overflow: hidden;
  }
  section.trayectoria .trayectoria__photo-mobile .trayectoria__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  section.trayectoria .trayectoria__quote {
    padding: 24px 32px;
  }

  /* Hero About responsive 768px */
  section.about-hero {
    min-height: 70vh;
  }
  section.about-hero .about-hero__figure {
    max-width: 520px;
  }
  section.about-hero .about-hero__name {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    bottom: 3%;
  }
  section.about-hero .about-hero__name-line {
    font-size: clamp(3rem, 12vw, 6rem);
    display: block;
  }
  section.about-hero.about-hero--v2 .about-hero__name-line {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
  section.about-hero.about-hero--v2 .about-hero__name {
    bottom: 3%;
  }

  /* Testimonials responsive 768px */
  section.testimonials-v2 {
    padding: 80px 0;
  }
  section.testimonials-v2 .testimonials-v2__title,
  section.testimonials-v2 h2.testimonials-v2__title {
    margin-bottom: 48px;
  }
  section.testimonials-v2 .testimonials-v2__slide {
    flex: 0 0 50%;
  }
  section.testimonials-v2 .testimonials-v2__slider {
    padding: 0;
  }
  section.testimonials-v2 .testimonials-v2__arrow {
    display: none;
  }

  /* Personal Brands responsive 768px */
  section.personal-brands {
    padding: 80px 0;
  }
  section.personal-brands .personal-brands__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Trust Brands responsive 768px */
  section.trust {
    padding: 64px 0;
  }
  section.trust .trust__title,
  section.trust h2.trust__title {
    margin-bottom: 32px;
  }
  section.trust .trust__item {
    width: 190px;
    height: 90px;
    padding: 16px 28px;
  }
  section.trust .trust__logo-img {
    height: 50px;
  }

  /* Services Home responsive 768px */
  section.services {
    padding: 80px 0;
  }
  section.services .services__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section.services .services__intro-col {
    text-align: center;
  }
  section.services .services__title,
  section.services h2.services__title {
    text-align: center;
  }
  section.services .services__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  section.services .services__cards {
    grid-template-columns: 1fr;
  }
  section.services .services__card-title {
    font-size: 1.6rem !important;
  }
  section.services .services__card-content {
    padding: 24px;
    bottom: 0;
  }
  section.services .services__card-btn {
    max-height: 60px;
    opacity: 1;
    margin-top: 24px;
  }

  /* Bio Intro responsive 768px */
  section.bio-intro {
    padding: 80px 0 0;
  }
  section.bio-intro .bio-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section.bio-intro .bio-intro__content {
    order: 1;
    padding-bottom: 0;
  }
  section.bio-intro .bio-intro__photo {
    order: 2;
    justify-content: center;
  }
  section.bio-intro .bio-intro__img {
    max-width: 400px;
  }
  section.bio-intro .bio-intro__label {
    display: block;
    text-align: center;
  }
  section.bio-intro .bio-intro__title,
  section.bio-intro h2.bio-intro__title,
  section.bio-intro h3.bio-intro__title {
    text-align: center;
  }
  section.bio-intro .bio-intro__text p {
    text-align: center;
  }
  section.bio-intro .bio-intro__content a.btn,
  section.bio-intro .bio-intro__content a.btn.btn--primary {
    display: flex;
    width: fit-content;
    margin: 0 auto !important;
  }

  /* Hero responsive 768px */
  section.hero .hero__content {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  section.hero .hero__title,
  section.hero h1.hero__title,
  section.hero h2.hero__title,
  section.hero h3.hero__title {
    font-size: clamp(2.2rem, 5vw, 2.5rem) !important;
  }
  section.hero p.hero__subtitle {
    font-size: 1rem !important;
  }
  section.hero .hero__scroll-hint {
    display: none;
  }

  /* Media Presence 768px */
  section.media-presence {
    padding: 48px 0;
  }
  section.media-presence .media-presence__track {
    gap: 40px;
  }
  section.media-presence .media-presence__logo {
    height: 26px;
  }

  /* Mobile nav overlay */
  .header .header__toggle {
    display: flex;
  }

  .header .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(17, 43, 71, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h, 64px) + 24px) 32px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease),
                visibility var(--duration) var(--ease);
  }

  .header .header__nav.header__nav--open {
    opacity: 1;
    visibility: visible;
  }

  .header.header--nav-open,
  .header.header--nav-open.header--scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header .header__nav-logo {
    display: block;
    height: var(--header-h, 64px);
    width: auto;
    max-width: 190px;
    position: absolute;
    top: 0;
    left: var(--gutter, 20px);
    object-fit: contain;
    object-position: left center;
  }

  .header .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .header .header__item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header .header__link {
    font-size: 1rem;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    text-transform: uppercase;
  }

  .header .header__link::after {
    display: none;
  }

  .header .header__nav--open .header__link {
    color: rgba(255, 255, 255, 0.85);
  }

  /* Link wrap: text left, chevron right */
  .header .header__link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header .header__link-wrap .header__link {
    flex: 1;
  }

  .header .header__chevron-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none;
    appearance: none;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
  }

  .header .header__chevron-btn:hover,
  .header .header__chevron-btn:focus,
  .header .header__chevron-btn:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
  }

  /* Submenu mobile */
  .header .header__submenu-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    padding: 10px 0 10px 20px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .header .header__submenu-link:hover {
    color: #11B798;
    background: transparent;
  }

  .header .header__cta {
    margin-top: 24px;
    align-self: flex-start;
  }

  header.header .header__toggle.header__toggle--active .header__toggle-bar {
    background: #ffffff;
  }

  /* Footer responsive */
  .footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .footer .footer__tagline {
    max-width: none;
    margin: 0;
  }

  .footer .footer__logo {
    margin: 0 0 16px;
  }

  .footer .footer__nav-list {
    align-items: flex-start;
  }

  .footer .footer__contact-item {
    justify-content: flex-start;
  }

  .footer .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }
}

/* ------------------------------------------------------------------
   RESPONSIVE — 480px
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
  section.hero .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  section.hero .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  section.personal-brands .personal-brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Hero Section responsive 480px */
  section.services-hero .services-hero__img {
    width: 85%;
    max-width: none;
  }

  /* Servicios responsive 480px */
  section.service-list .service-list__img {
    height: 220px;
  }

  /* Talleres responsive 480px */
  section.taller-list .taller-list__img {
    height: 220px;
  }

  /* Trayectoria responsive 480px */
  section.trayectoria .trayectoria__quote {
    padding: 20px 24px;
  }

  /* Hero About responsive 480px */
  section.about-hero {
    min-height: 40vh;
  }
  section.about-hero .about-hero__figure {
    max-width: 90%;
  }
  section.about-hero .about-hero__name-line {
    font-size: clamp(2rem, 15vw, 8rem);
  }
  section.about-hero .about-hero__name {
    bottom: 4%;
  }
  section.about-hero.about-hero--v2 .about-hero__name-line {
    font-size: clamp(2rem, 12vw, 4rem);
  }

  section.testimonials-v2 .testimonials-v2__slide {
    flex: 0 0 100%;
  }
}

/* ------------------------------------------------------------------
   PAQUETES DE FORMACIÓN — paq-empresas
   ------------------------------------------------------------------ */
section.paq-empresas {
  padding: 0 0 120px;
}

section.paq-empresas .paq-empresas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

section.paq-empresas .paq-empresas__card {
  display: flex;
  flex-direction: column;
}

section.paq-empresas .paq-empresas__card-img {
  position: relative;
  height: 480px;
  overflow: hidden;
}

section.paq-empresas .paq-empresas__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

section.paq-empresas .paq-empresas__card:hover .paq-empresas__card-img img {
  transform: scale(1.04);
}

section.paq-empresas .paq-empresas__card-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  opacity: 0.9;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.paq-empresas .paq-empresas__card:hover .paq-empresas__card-overlay {
  opacity: 0.6;
}

section.paq-empresas .paq-empresas__card-body {
  padding: 32px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

section.paq-empresas .paq-empresas__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #112b47;
  margin-bottom: 12px;
  line-height: 1.3;
}

section.paq-empresas .paq-empresas__card-text {
  color: #687176;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}

section.paq-empresas .paq-empresas__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  background: #11B798;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  line-height: 1;
  border: none;
  align-self: flex-start;
}

section.paq-empresas .paq-empresas__card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.paq-empresas .paq-empresas__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  background: #11B798 !important;
  color: #ffffff !important;
}

section.paq-empresas .paq-empresas__card-btn:hover::before {
  opacity: 1;
}

section.paq-empresas .paq-empresas__card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.paq-empresas .paq-empresas__card-btn:hover svg {
  transform: translateX(3px);
}

/* Footer */
section.paq-empresas .paq-empresas__footer {
  text-align: center;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(17, 43, 71, 0.08);
}

section.paq-empresas .paq-empresas__footer-text {
  color: #687176;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

section.paq-empresas .paq-empresas__footer-text strong {
  color: #112B47;
  font-weight: 600;
}

section.paq-empresas .paq-empresas__footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  background: #11B798;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  line-height: 1;
  border: none;
}

section.paq-empresas .paq-empresas__footer-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.paq-empresas .paq-empresas__footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  color: #ffffff;
}

section.paq-empresas .paq-empresas__footer-btn:hover::before {
  opacity: 1;
}

section.paq-empresas .paq-empresas__footer-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section.paq-empresas .paq-empresas__footer-btn:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  section.paq-empresas {
    padding-bottom: 80px;
  }

  section.paq-empresas .paq-empresas__grid {
    grid-template-columns: 1fr;
  }

  section.paq-empresas .paq-empresas__card-img {
    height: 380px;
  }

  section.paq-empresas .paq-empresas__card-title {
    font-size: 1.4rem;
  }

  section.paq-empresas .paq-empresas__card-text {
    font-size: 16px;
  }

  section.paq-empresas .paq-empresas__footer {
    margin-top: 56px;
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  section.paq-empresas .paq-empresas__card-img {
    height: 320px;
  }
}

/* ------------------------------------------------------------------
   PAQUETES — Modal + Formulario de cotización
   ------------------------------------------------------------------ */
.paq-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.paq-modal--open {
  opacity: 1;
  visibility: visible;
}

.paq-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 43, 71, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.paq-modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  max-width: 580px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(17, 43, 71, 0.20);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.paq-modal--open .paq-modal__dialog {
  transform: translateY(0);
}

.paq-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 8px !important;
  border-radius: 8px !important;
  color: #687176 !important;
  transition: color 0.3s ease, background 0.3s ease;
  box-shadow: none !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  min-height: 0 !important;
}

.paq-modal__close:hover {
  color: #112B47 !important;
  background: rgba(17, 43, 71, 0.06) !important;
}

.paq-modal__close svg {
  width: 20px;
  height: 20px;
}

.paq-modal__header {
  margin-bottom: 32px;
}

.paq-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #112B47;
  margin-bottom: 8px;
  line-height: 1.3;
}

.paq-modal__desc {
  color: #687176;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Form */
.paq-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.paq-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.paq-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #112B47;
  margin-bottom: 6px;
}

.paq-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d9dce0;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #112B47;
  background: #ffffff;
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  height: auto;
  min-height: 48px;
  white-space: normal;
  overflow: visible;
}

.paq-form__input:focus {
  outline: none;
  border-color: #11B798;
}

.paq-form__input.paq-form__input--error {
  border-color: #e74c3c;
}

.paq-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.paq-form__submit {
  align-self: flex-start;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 16px 36px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px !important;
  background: #11B798 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
  line-height: 1 !important;
}

.paq-form__submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35) !important;
  background: #11B798 !important;
  color: #ffffff !important;
}

.paq-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.paq-form__submit svg {
  width: 16px;
  height: 16px;
}

/* Result modal */
.paq-modal__dialog--result {
  text-align: center;
  max-width: 440px;
  padding: 56px 48px;
}

.paq-modal__result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.paq-modal__result-icon--success {
  background: rgba(17, 183, 152, 0.12);
  color: #11B798;
}

.paq-modal__result-icon--error {
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
}

.paq-modal__result-icon svg {
  width: 32px;
  height: 32px;
}

.paq-modal__result-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #112B47;
  margin-bottom: 12px;
  line-height: 1.3;
}

.paq-modal__result-text {
  color: #687176;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive modal */
@media (max-width: 768px) {
  .paq-modal__dialog {
    padding: 36px 24px;
    width: 94%;
  }

  .paq-form__row {
    grid-template-columns: 1fr;
  }

  .paq-modal__dialog--result {
    padding: 40px 24px;
  }
}

/* ------------------------------------------------------------------
   HERO CONFERENCE — conf-hero
   ------------------------------------------------------------------ */
.elementor-widget-em_hero_conference {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.elementor-widget-em_hero_conference > .elementor-widget-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

section.conf-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

section.conf-hero .conf-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

section.conf-hero .conf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

section.conf-hero .conf-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 80px 20px;
}

section.conf-hero .conf-hero__heading {
  font-family: 'Impact', 'Arial Narrow', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
  user-select: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

section.conf-hero .conf-hero__heading-line {
  display: block;
}

section.conf-hero .conf-hero__heading-sep {
  display: inline-block;
  margin: 0 0.15em;
  font-size: 0.6em;
  vertical-align: middle;
}

section.conf-hero .conf-hero__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section.conf-hero {
    height: 500px !important;
    padding: 96px 20px;
  }

  section.conf-hero .conf-hero__heading {
    font-size: clamp(2.2rem, 10vw, 4rem);
    margin-bottom: 32px;
  }

  section.conf-hero .conf-hero__heading-sep {
    display: none;
  }

  section.conf-hero .conf-hero__text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  section.conf-hero .conf-hero__heading {
    font-size: clamp(1.8rem, 13vw, 3.5rem);
  }
}

/* ------------------------------------------------------------------
   CONFERENCE LIST (widget)
   ------------------------------------------------------------------ */
section.conf-list {
  padding: 100px 0 120px;
}

.conf-list__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.conf-list__header {
  text-align: center;
  margin-bottom: 64px;
}

.conf-list__label {
  display: block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary) !important;
  margin-bottom: 16px;
}

.conf-list__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--secondary) !important;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 20px;
}

.conf-list__desc {
  color: var(--grey) !important;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.conf-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.conf-list__card {
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.conf-list__card:hover {
  box-shadow: 0 8px 32px rgba(17, 43, 71, 0.10);
  transform: translateY(-4px);
}

.conf-list__card-img {
  position: relative;
  height: 370px;
  overflow: hidden;
}

.conf-list__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
  border-radius: 0 !important;
}

.conf-list__card:hover .conf-list__card-img img {
  transform: scale(1.04);
}

.conf-list__card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.conf-list__card-img-content {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
}

.conf-list__card-img-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  margin-bottom: 8px;
}

.conf-list__card-img-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.3;
  margin: 0 !important;
  padding: 0 !important;
}

.conf-list__card-body {
  padding: 28px 36px 40px !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.conf-list__card-body p,
.conf-list__card-body ul,
.conf-list__card-body h3 {
  margin-top: 0 !important;
}

.conf-list__card-desc {
  color: var(--grey) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.conf-list__card-section {
  margin-bottom: 32px !important;
  margin-top: 0 !important;
}

.conf-list__card-section-label {
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary) !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.conf-list__card-section-text {
  color: var(--grey) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.conf-list__card-results {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.conf-list__card-results li {
  color: var(--grey) !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  padding-left: 20px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  position: relative;
}

.conf-list__card-results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.conf-list__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  line-height: 1 !important;
  border: none !important;
  align-self: flex-start;
  margin-top: auto;
  cursor: pointer;
}

.conf-list__card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.conf-list__card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  background: var(--primary) !important;
  color: #ffffff !important;
}

.conf-list__card-btn:hover::before {
  opacity: 1;
}

.conf-list__card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease);
}

.conf-list__card-btn:hover svg {
  transform: translateX(3px);
}

/* ── Conference Modal ── */
.conf-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.conf-modal--open {
  opacity: 1;
  visibility: visible;
}

.conf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 43, 71, 0.65);
  backdrop-filter: blur(4px);
}

.conf-modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  box-shadow: 0 24px 64px rgba(17, 43, 71, 0.20);
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.conf-modal--open .conf-modal__dialog {
  transform: translateY(0);
}

.conf-modal__dialog--result {
  max-width: 420px;
  text-align: center;
  padding: 56px 40px 48px;
}

.conf-modal__close {
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  border-radius: 50%;
  padding: 0 !important;
  color: var(--grey) !important;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  box-shadow: none !important;
}

.conf-modal__close:hover {
  color: var(--secondary) !important;
  background: rgba(17, 43, 71, 0.06) !important;
}

.conf-modal__close svg {
  width: 20px;
  height: 20px;
}

.conf-modal__header {
  margin-bottom: 28px;
}

.conf-modal__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--secondary) !important;
  margin-bottom: 8px;
}

.conf-modal__desc {
  color: var(--grey) !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

.conf-modal__result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.conf-modal__result-icon--success {
  background: rgba(17, 183, 152, 0.12);
  color: var(--primary);
}

.conf-modal__result-icon--error {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.conf-modal__result-icon svg {
  width: 28px;
  height: 28px;
}

.conf-modal__result-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: var(--secondary) !important;
  margin-bottom: 8px;
}

.conf-modal__result-text {
  color: var(--grey) !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ── Conference Form ── */
.conf-form__field {
  margin-bottom: 16px;
  flex: 1;
}

.conf-form__row {
  display: flex;
  gap: 16px;
}

.conf-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.conf-form__input {
  width: 100%;
  padding: 12px 16px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--secondary);
  background: #ffffff;
  border: 1.5px solid #d9dce0 !important;
  border-radius: 8px !important;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: auto;
  min-height: 48px;
  line-height: 1.4 !important;
}

.conf-form__input:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(17, 183, 152, 0.12);
}

.conf-form__input--error {
  border-color: #dc3545 !important;
}

.conf-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23687176' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px !important;
  white-space: normal;
  overflow: visible;
}

.conf-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 8px;
  line-height: 1 !important;
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
}

.conf-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  background: var(--primary) !important;
  color: #ffffff !important;
}

.conf-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.conf-form__submit svg {
  width: 16px;
  height: 16px;
}

/* ── Conference List Responsive ── */
@media (max-width: 768px) {
  section.conf-list {
    padding: 72px 0 80px;
  }

  .conf-list__header {
    margin-bottom: 48px;
  }

  .conf-list__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .conf-list__card-img {
    height: 280px;
  }

  .conf-list__card-body {
    padding: 28px 24px 32px;
  }

  .conf-list__card-img-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .conf-list__card-img-title {
    font-size: 1.2rem !important;
  }

  .conf-list__card-img-subtitle {
    font-size: 0.95rem;
  }

  .conf-form__row {
    flex-direction: column;
    gap: 0;
  }

  .conf-modal__dialog {
    padding: 40px 24px 32px;
  }
}

/* ------------------------------------------------------------------
   FORMULARIO DE SOLICITUD (widget conf-solicitud)
   ------------------------------------------------------------------ */
section.conf-solicitud {
  padding: 120px 0;
}

.conf-solicitud__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.conf-solicitud__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.conf-solicitud__label {
  display: block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary) !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
}

.conf-solicitud__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--secondary) !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  letter-spacing: -0.02em;
}

.conf-solicitud__text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--grey) !important;
  border-left: 3px solid var(--primary);
  padding-left: 24px;
  margin: 0 !important;
}

.conf-solicitud__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.conf-solicitud__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.conf-solicitud__field-label {
  display: block;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--secondary) !important;
  margin-bottom: 6px !important;
  margin-top: 0 !important;
}

.conf-solicitud__input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px !important;
  border: 1.5px solid #d9dce0 !important;
  border-radius: 8px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--secondary);
  background: #ffffff;
  transition: border-color 0.4s var(--ease);
  height: auto;
  min-height: 48px;
  line-height: 1.4 !important;
}

.conf-solicitud__input:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(17, 183, 152, 0.12);
}

.conf-solicitud__input--error {
  border-color: #dc3545 !important;
}

.conf-solicitud__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23687176' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px !important;
  white-space: normal;
  overflow: visible;
}

.conf-solicitud__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 16px rgba(17, 183, 152, 0.25);
  line-height: 1 !important;
  position: relative;
  overflow: hidden;
}

.conf-solicitud__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.conf-solicitud__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 183, 152, 0.35);
  background: var(--primary) !important;
  color: #ffffff !important;
}

.conf-solicitud__submit:hover::before {
  opacity: 1;
}

.conf-solicitud__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.conf-solicitud__submit svg {
  width: 16px;
  height: 16px;
}

/* Page-specific: Galería de medios hero image */
body.page-recursos section.services-hero .services-hero__title,
body.page-recursos section.services-hero h1.services-hero__title,
body.page-recursos section.services-hero h2.services-hero__title,
body.page-recursos section.services-hero h3.services-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.02em;
  padding: 0;
}

body.page-recursos section.services-hero .services-hero__text p {
  margin-bottom: 16px !important;
}

body.page-recursos section.services-hero .services-hero__text p:last-child {
  margin-bottom: 0 !important;
}

body.page-galeria-de-medios section.services-hero .services-hero__img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}

@media (max-width: 768px) {
  section.conf-solicitud {
    padding: 72px 0 80px;
  }

  .conf-solicitud__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .conf-solicitud__row {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   GALERÍA DE MEDIOS (widget)
   ------------------------------------------------------------------ */
section.media-gallery {
  padding: 100px 0 120px;
}

.media-gallery__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.media-gallery__header {
  text-align: center;
  margin-bottom: 64px;
}

.media-gallery__label {
  display: block;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary) !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
}

.media-gallery__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto 20px !important;
}

.media-gallery__desc {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto !important;
}

.media-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.media-gallery__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px !important;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.4s var(--ease);
}

.media-gallery__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.media-gallery__card-logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-gallery__card-logo img {
  max-width: 140px !important;
  max-height: 60px !important;
  object-fit: contain;
  border-radius: 0 !important;
}

.media-gallery__card-name {
  font-size: 1rem !important;
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.3;
  margin: 0 !important;
}

.media-gallery__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--primary) !important;
  text-decoration: none !important;
  margin-top: auto;
}

.media-gallery__card-link:hover {
  color: var(--primary) !important;
}

.media-gallery__card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.media-gallery__card-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .media-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section.media-gallery {
    padding: 72px 0 80px;
  }

  .media-gallery__header {
    margin-bottom: 48px;
  }

  .media-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .media-gallery__card {
    padding: 24px 20px;
  }
}

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

/* ==========================================================================
   BLOG ARCHIVE
   ========================================================================== */
section.blog-archive {
  padding: 80px 0 120px !important;
  background: #F8F9FA;
}

.blog-archive__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.blog-archive__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
}

.blog-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  display: flex !important;
  flex-direction: column !important;
}

.blog-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}

.blog-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05) !important;
}

.blog-card__body {
  padding: 28px 28px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.blog-card__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--secondary, #112B47) !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.blog-card__title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-card__title a:hover {
  color: var(--primary, #11B798) !important;
}

.blog-card__excerpt {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--grey, #687176) !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  flex: 1 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.blog-card__link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--primary, #11B798) !important;
  text-decoration: none !important;
  transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  text-transform: none !important;
}

.blog-card__link:hover {
  gap: 12px !important;
  color: var(--primary, #11B798) !important;
  background: none !important;
}

.blog-card__link svg {
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-card__link:hover svg {
  transform: translateX(2px) !important;
}

@media (max-width: 1024px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
  }
}

@media (max-width: 640px) {
  section.blog-archive {
    padding: 60px 0 80px !important;
  }

  .blog-archive__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .blog-card__body {
    padding: 24px 24px 28px !important;
  }
}

/* ==========================================================================
   BLOG SINGLE — Hero + Content + Sidebar + Share + Author
   ========================================================================== */
section.blog-hero {
  position: relative !important;
  width: 100% !important;
  min-height: 570px !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
}

.blog-hero__bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.blog-hero__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.blog-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(17, 43, 71, 0.95) 0%,
    rgba(17, 43, 71, 0.85) 40%,
    rgba(17, 43, 71, 0.7) 100%
  ) !important;
  z-index: 1 !important;
}

.blog-hero__content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 120px 24px 64px !important;
}

.blog-hero__label,
a.blog-hero__label,
.elementor-kit-5 a.blog-hero__label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--primary, #11B798) !important;
  margin-bottom: 20px !important;
  text-decoration: none !important;
  display: block !important;
}

a.blog-hero__label:hover {
  opacity: 0.8 !important;
}

.blog-hero__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  max-width: 800px !important;
  margin-bottom: 28px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  letter-spacing: -0.2px !important;
}

.blog-hero__meta {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.blog-hero__author {
  font-weight: 500 !important;
  color: #ffffff !important;
}

.blog-hero__separator {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: var(--primary, #11B798) !important;
  flex-shrink: 0 !important;
}

.blog-hero__date {
  font-weight: 400 !important;
}

/* ── Blog Body ── */
section.blog-body {
  padding: 80px 0 100px !important;
  background: #ffffff !important;
}

.blog-single__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.blog-body__grid {
  display: grid !important;
  grid-template-columns: 1fr 340px !important;
  gap: 64px !important;
  align-items: start !important;
}

/* ── Article Content ── */
.blog-content {
  max-width: 100% !important;
}

.blog-content p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: var(--secondary, #112B47) !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.blog-content p strong {
  font-weight: 600 !important;
  color: var(--secondary, #112B47) !important;
}

.blog-content p:first-child {
  font-size: 1.15rem !important;
  font-weight: 500 !important;
}

.blog-content h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  color: var(--secondary, #112B47) !important;
  margin-top: 48px !important;
  margin-bottom: 20px !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}

.blog-content h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--secondary, #112B47) !important;
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}

.blog-content hr,
article.blog-content hr,
.blog-content > hr {
  border: none !important;
  border-top: 1px solid rgba(17, 43, 71, 0.1) !important;
  margin: 48px 0 !important;
  padding: 0 !important;
  height: 0 !important;
  background: none !important;
  background-color: transparent !important;
  opacity: 1 !important;
  outline: none !important;
  box-shadow: none !important;
}

.blog-content blockquote {
  border-left: 3px solid var(--primary, #11B798) !important;
  padding-left: 24px !important;
  margin: 32px 0 !important;
  font-style: italic !important;
  color: var(--grey, #687176) !important;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 24px !important;
  padding-left: 24px !important;
}

.blog-content li {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: var(--secondary, #112B47) !important;
  margin-bottom: 8px !important;
}

.blog-content a {
  color: var(--primary, #11B798) !important;
  text-decoration: underline !important;
}

.blog-content a:hover {
  color: var(--secondary, #112B47) !important;
}

.blog-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
  margin: 32px 0 !important;
}

/* ── Author Box ── */
.blog-author,
.blog-content .blog-author,
article.blog-content .blog-author {
  margin-top: 48px !important;
  padding: 32px !important;
  background: #F8F9FA !important;
  border-radius: 12px !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 24px !important;
  align-items: center !important;
  border: none !important;
  box-shadow: none !important;
}

.blog-author__avatar,
.blog-author img.blog-author__avatar,
.blog-content .blog-author img.blog-author__avatar {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.blog-author__info {
  flex: 1 !important;
}

.blog-author__name,
.blog-author .blog-author__name,
.blog-author__info p.blog-author__name {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #112B47 !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}

.blog-author__bio,
.blog-author .blog-author__bio,
.blog-author__info p.blog-author__bio {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  color: #687176 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Share Section ── */
.blog-share {
  margin-top: 56px !important;
  padding-top: 40px !important;
  border-top: 1px solid rgba(17, 43, 71, 0.1) !important;
}

.blog-share__label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--grey, #687176) !important;
  margin-bottom: 20px !important;
}

.blog-share__icons {
  display: flex !important;
  gap: 12px !important;
}

.blog-share__link,
a.blog-share__link,
.blog-share__icons a.blog-share__link,
.elementor-kit-5 a.blog-share__link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
  background: #F8F9FA !important;
  color: #112B47 !important;
  text-decoration: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-share__link:hover,
a.blog-share__link:hover,
.blog-share__icons a.blog-share__link:hover,
.elementor-kit-5 a.blog-share__link:hover {
  background: #11B798 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.blog-share__link svg,
a.blog-share__link svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
}

/* ── Sidebar ── */
.blog-sidebar {
  position: sticky !important;
  top: 100px !important;
}

.blog-sidebar__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--secondary, #112B47) !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  padding-bottom: 16px !important;
  border-bottom: 2px solid var(--primary, #11B798) !important;
}

.blog-sidebar__list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-sidebar__item {
  display: flex !important;
  gap: 16px !important;
  align-items: flex-start !important;
}

.blog-sidebar__item-img {
  width: 80px !important;
  height: 60px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
}

.blog-sidebar__item-content {
  flex: 1 !important;
}

.blog-sidebar__item-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--secondary, #112B47) !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

.blog-sidebar__item-title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.blog-sidebar__item-title a:hover {
  color: var(--primary, #11B798) !important;
}

.blog-sidebar__item-date {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8rem !important;
  color: var(--grey, #687176) !important;
}

/* ── Blog Single Responsive ── */
@media (max-width: 1024px) {
  .blog-body__grid {
    grid-template-columns: 1fr 280px !important;
    gap: 48px !important;
  }
}

@media (max-width: 768px) {
  section.blog-hero {
    min-height: 380px !important;
  }

  .blog-hero__content {
    padding: 100px 24px 48px !important;
  }

  .blog-hero__title {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }

  section.blog-body {
    padding: 48px 0 72px !important;
  }

  .blog-body__grid {
    grid-template-columns: 1fr !important;
    gap: 56px !important;
  }

  .blog-sidebar {
    position: static !important;
    border-top: 1px solid rgba(17, 43, 71, 0.1) !important;
    padding-top: 40px !important;
  }

  .blog-content p {
    font-size: 1rem !important;
  }

  .blog-author {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }
}


/* ==========================================================================
   PODCAST LIST — Episode Cards
   ========================================================================== */

.podcast-eps {
  padding: 80px 0;
}
.podcast-eps__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.podcast-eps__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ep-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  padding: 20px 24px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.ep-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.ep-card--featured {
  padding: 28px 28px;
}

.ep-card__thumb {
  width: 120px;
  min-width: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.ep-card--featured .ep-card__thumb {
  width: 140px;
  min-width: 140px;
}
.ep-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.ep-card__content {
  flex: 1;
  min-width: 0;
}
.ep-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.ep-card__ep-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.ep-card--featured .ep-card__ep-num {
  background: rgba(0,0,0,0.2);
}
.ep-card__duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.ep-card--featured .ep-card__duration {
  color: rgba(255,255,255,0.85);
}
.ep-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.35;
}
.ep-card--featured .ep-card__name {
  font-size: 17px;
}
.ep-card__summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-card--featured .ep-card__summary {
  color: rgba(255,255,255,0.8);
  -webkit-line-clamp: 2;
}

.ep-card__action {
  flex-shrink: 0;
}
.ep-card__play-btn {
  width: 48px;
  height: 48px;
  background: #181818;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.ep-card:hover .ep-card__play-btn {
  transform: scale(1.08);
}
.ep-card__play-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}
.ep-card__listen-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #1eba54;
  border: none;
  padding: 8px 20px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.ep-card:hover .ep-card__listen-btn {
  background: #169643;
  transform: scale(1.04);
}

.podcast-eps__spotify-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.podcast-eps__spotify-link a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1eba54 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.podcast-eps__spotify-link a:hover {
  opacity: 0.8;
}
.podcast-eps__spotify-link svg {
  width: 24px;
  height: 24px;
  fill: #1eba54;
}

@media (max-width: 640px) {
  .podcast-eps {
    padding: 60px 0;
  }
  .ep-card {
    flex-wrap: wrap;
    padding: 16px;
    gap: 14px;
  }
  .ep-card--featured {
    padding: 20px;
  }
  .ep-card__thumb {
    width: 90px;
    min-width: 90px;
  }
  .ep-card--featured .ep-card__thumb {
    width: 100px;
    min-width: 100px;
  }
  .ep-card__name {
    font-size: 14px;
  }
  .ep-card--featured .ep-card__name {
    font-size: 15px;
  }
  .ep-card__summary {
    display: none;
  }
  .ep-card--featured .ep-card__summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
  .ep-card__action {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .ep-card--featured .ep-card__action {
    top: 20px;
    right: 20px;
  }
}


/* ==========================================================================
   CONTACT INFO — 3 Cards
   ========================================================================== */

.contact-info {
  padding: 80px 0;
}
.contact-info__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid rgba(17,43,71,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.contact-card__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #687176;
  margin-bottom: 16px;
}
.contact-card__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #181818;
  line-height: 1.7;
  margin-bottom: 4px;
}
.contact-card__text a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card__text a:hover {
  color: #11B798;
}

.contact-card__btn {
  display: inline-block;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1.5px solid;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-card__btn:hover {
  background: #11B798;
  color: #fff !important;
}

@media (max-width: 768px) {
  .contact-info {
    padding: 60px 0;
  }
  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-card {
    padding: 32px 24px;
  }
}

/* ════════════════════════════════════════════
   Layout split: info + formulario (página Contacto)
════════════════════════════════════════════ */
.ci-split {
  background: #F7F9FC;
  padding: 80px 0;
}
.ci-split__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Columna izquierda ── */
.ci-split__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.ci-split__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #11B7981f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-split__icon svg {
  width: 20px;
  height: 20px;
}
.ci-split__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4b4b4b;
  line-height: 1.6;
}
.ci-split__text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #112B47;
  margin-bottom: 3px;
}
.ci-split__text a {
  color: #4b4b4b;
  text-decoration: none;
  transition: color 0.2s;
}
.ci-split__text a:hover { color: #11B798; }

.ci-split__map {
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #dde3ea;
}
.ci-split__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* ── Columna derecha: formulario ── */
.ci-split__form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.ci-split__form-title {
  font-family: 'Playfair Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #112B47;
  margin-bottom: 6px;
}
.ci-split__form-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}
.ci-split__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ci-split__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.ci-split__field--full {
  grid-column: 1 / -1;
}
.ci-split__field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #112B47;
  margin-bottom: 5px;
}
.ci-split__field input,
.ci-split__field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  border: 1.5px solid #dde3ea;
  border-radius: 6px;
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.ci-split__field input:focus,
.ci-split__field textarea:focus {
  border-color: #11B798;
  background: #fff;
}
.ci-split__field textarea {
  resize: vertical;
  min-height: 110px;
}
.ci-split__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 16px rgba(17,183,152,0.25);
  line-height: 1 !important;
  position: relative;
  overflow: hidden;
}
.ci-split__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.ci-split__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17,183,152,0.35);
  background: var(--primary) !important;
  color: #ffffff !important;
}
.ci-split__btn:hover::before { opacity: 1; }
.ci-split__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.ci-split__btn svg {
  width: 16px;
  height: 16px;
}

.ci-split__input--error {
  border-color: #e53e3e !important;
  background: #fff5f5 !important;
}

@media (max-width: 768px) {
  .ci-split { padding: 60px 0 !important; }
  .ci-split__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ci-split__row { grid-template-columns: 1fr; }
  .ci-split__form-wrap { padding: 28px 20px; }
}

/* ── Páginas legales (Política de Privacidad + Términos y Condiciones) ── */
.page-politica-de-privacidad .elementor-widget-text-editor h2,
.page-politica-de-privacidad .elementor-widget-text-editor h3,
.page-terminos-y-condiciones .elementor-widget-text-editor h2,
.page-terminos-y-condiciones .elementor-widget-text-editor h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.2px;
}

.page-politica-de-privacidad .elementor-widget-text-editor ol,
.page-politica-de-privacidad .elementor-widget-text-editor ul,
.page-terminos-y-condiciones .elementor-widget-text-editor ol,
.page-terminos-y-condiciones .elementor-widget-text-editor ul {
  margin: 0 0 1.2em 2em;
}

/* reCAPTCHA v3: ocultar insignia globalmente, se activa solo donde hay formularios v3 */
.grecaptcha-badge { visibility: hidden !important; bottom: 80px !important; }

/* Selector fecha+hora en formulario de consultoría */
.srv-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) {
  .srv-datetime-row { grid-template-columns: 1fr; }
}
