/* ==========================================================================
   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: left;
  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;
  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;
  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;
}

/* CTAs */
section.hero .hero__ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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(4, 1fr);
  gap: 24px;
}

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(3, 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;
}

/* ------------------------------------------------------------------
   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);
}

/* ------------------------------------------------------------------
   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);
}

/* ------------------------------------------------------------------
   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: 85%;
  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: 800px;
  margin: 0 auto;
}

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

/* ------------------------------------------------------------------
   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;
    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;
  }

  /* Hero Section responsive 768px */
  section.services-hero {
    height: auto !important;
    min-height: 500px;
  }
  section.services-hero .services-hero__container {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h, 64px) + 48px);
    padding-bottom: 0;
  }
  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;
  }

  /* 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;
  }

  /* 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.testimonials-v2 .testimonials-v2__slide {
    flex: 0 0 100%;
  }
}
