:root {
  --eq-blue: #062B4F;
  --eq-blue-dark: #041F3A;
  --eq-gold: #D4AF37;
  --eq-gold-light: #E6C56A;
  --eq-green: #2F6F64;
  --eq-cream: #FFF9F0;
  --eq-white: #FFFFFF;
  --eq-text: #333333;
}

/* GENERAL */
.eq-home {
  background: var(--eq-cream);
  color: var(--eq-text);
  font-family: "Lato", sans-serif;
  overflow: hidden;
  margin: 0;
}

.eq-home h1,
.eq-home h2,
.eq-home h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--eq-blue);
  line-height: 1.08;
}

.eq-home p {
  color: var(--eq-text);
  line-height: 1.6;
}

/* HERO / PORTADA */
.eq-hero {
  padding: 35px 6% 45px;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff9f0 100%);
}

.eq-hero__content {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 35px;
  align-items: center;
}

.eq-hero__text {
  max-width: 620px;
}

.eq-gold-line {
  width: 220px;
  height: 1px;
  background: var(--eq-gold);
  margin-bottom: 32px;
  position: relative;
}

.eq-gold-line span {
  width: 28px;
  height: 28px;
  border: 1px solid var(--eq-gold);
  border-radius: 50%;
  position: absolute;
  right: -14px;
  top: -14px;
}

.eq-hero h1 {
  font-size: clamp(50px, 4.8vw, 76px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--eq-blue);
}

.eq-hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

/* BOTONES */
.eq-hero__buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.eq-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
}

.eq-btn:hover {
  transform: translateY(-3px);
}

.eq-btn--primary {
  background: var(--eq-blue);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(6, 43, 79, 0.18);
}

.eq-btn--primary:hover {
  background: var(--eq-blue-dark);
  color: #ffffff;
}

.eq-btn--secondary {
  background: transparent;
  color: var(--eq-gold);
  border: 1px solid var(--eq-gold);
}

.eq-btn--secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--eq-gold);
}

.eq-btn--gold {
  background: var(--eq-gold);
  color: white;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.25);
}

.eq-btn--gold:hover {
  background: #C79B25;
  color: white;
}

/* BENEFICIOS BAJO BOTONES */
.eq-benefits {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.eq-benefits div {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 180px;
}

.eq-benefits span {
  color: var(--eq-gold);
  font-size: 28px;
}

.eq-benefits p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

/* IMAGEN PRINCIPAL COMPLETA Y DESVANECIDA */
.eq-hero__image {
  width: 100%;
  max-width: 690px;
  height: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  z-index: 1;
}

.eq-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  display: block;
  opacity: 0.98;

  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 86%, transparent 100%);
  -webkit-mask-composite: source-in;

  mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 86%, transparent 100%);
  mask-composite: intersect;
}

.eq-hero__image::after {
  display: none;
}
/* SECCIONES GENERALES */
.eq-section {
  padding: 45px 6% 75px;
  background: var(--eq-cream);
  position: relative;
  z-index:2;
}

.eq-section__header {
  text-align: left;
  max-width: 1250px;
  margin: 0 auto 45px;
}
.eq-section__header h2 {
  font-size: clamp(36px, 4vw, 54px);
  margin: 0 0 10px;
  color: var(--eq-green);
}

.eq-section__header p {
  font-size: 18px;
  color: #555555;
  margin: 0;
  max-width: 520px;
}

/* TARJETAS DE TERAPIAS */
.eq-cards {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.eq-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(6, 43, 79, 0.08);
  transition: all 0.3s ease;
}

.eq-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(6, 43, 79, 0.13);
}

.eq-card__icon {
  width: 62px;
  height: 62px;
  border: 1px dashed var(--eq-gold);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--eq-gold);
  font-size: 28px;
}

.eq-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
  color: var(--eq-blue);
}

.eq-card p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* SOBRE MÍ */
.eq-about {
  padding: 70px 8%;
  background: #fffdf8;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.eq-about__image img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 40px rgba(6, 43, 79, 0.12);
  display: block;
}

.eq-about h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin: 0 0 20px;
  color: var(--eq-green);
}

.eq-about p {
  font-size: 18px;
  line-height: 1.7;
}

.eq-about strong {
  color: var(--eq-green);
  font-size: 18px;
}

/* TESTIMONIOS */
.eq-testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eq-testimonial {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(6, 43, 79, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.eq-testimonial p {
  font-size: 16px;
  line-height: 1.6;
}

.eq-testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--eq-blue);
}

.eq-testimonial span {
  color: var(--eq-gold);
}

/* CTA AGENDA */
.eq-cta {
  background: var(--eq-blue);
  color: white;
  text-align: center;
  padding: 65px 6%;
}

.eq-cta h2 {
  color: white;
  font-size: clamp(36px, 4vw, 56px);
  margin: 0 0 14px;
}

.eq-cta p {
  color: rgba(255,255,255,0.86);
  font-size: 18px;
  margin-bottom: 28px;
}

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
  .eq-hero {
    min-height: auto;
    padding: 60px 6%;
  }

  .eq-hero__content,
  .eq-about {
    grid-template-columns: 1fr;
  }

  .eq-hero__text {
    max-width: 100%;
    text-align: center;
  }

  .eq-gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  .eq-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .eq-hero__buttons {
    justify-content: center;
  }

  .eq-benefits {
    justify-content: center;
  }

  .eq-hero__image {
    max-width: 650px;
    height: 470px;
  }

  .eq-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .eq-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .eq-about__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .eq-about__text {
    text-align: center;
  }
}

/* RESPONSIVE CELULAR */
@media (max-width: 650px) {
  .eq-hero {
    padding: 45px 6% 55px;
  }

  .eq-hero h1 {
    font-size: 40px;
  }

  .eq-hero p {
    font-size: 17px;
  }

  .eq-hero__image {
    height: 360px;
    max-width: 100%;
  }

  .eq-hero__buttons {
    flex-direction: column;
  }

  .eq-btn {
    width: 100%;
    text-align: center;
  }

  .eq-cards {
    grid-template-columns: 1fr;
  }

  .eq-benefits {
    flex-direction: column;
    align-items: center;
  }

  .eq-section {
    padding: 55px 6%;
  }

  .eq-about {
    padding: 55px 6%;
  }
}
/* Alinear título de Terapias Holísticas a la izquierda */
.eq-home .eq-therapies .eq-section__header {
  text-align: left !important;
  max-width: 1250px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 45px !important;
}

.eq-home .eq-therapies .eq-section__header h2 {
  text-align: left !important;
}

.eq-home .eq-therapies .eq-section__header p {
  text-align: left !important;
  max-width: 520px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.eq-therapies {
  margin-top: -50px;
}
/* CORRECCIÓN FINAL: separar hero de terapias */
.eq-home .eq-hero {
  padding-top: 35px !important;
  padding-bottom: 120px !important;
  min-height: auto !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

.eq-home .eq-hero__content {
  align-items: center !important;
}

.eq-home .eq-hero__image {
  max-width: 680px !important;
  height: 500px !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

.eq-home .eq-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  opacity: 0.98 !important;
}

.eq-home .eq-therapies {
  margin-top: 0 !important;
  padding-top: 70px !important;
  position: relative !important;
  z-index: 20 !important;
  background: #fff9f0 !important;
}

.eq-home .eq-therapies .eq-section__header {
  position: relative !important;
  z-index: 21 !important;
}

.eq-home .eq-cards {
  position: relative !important;
  z-index: 22 !important;
}
/* COLOR GENERAL DE TODA LA PÁGINA */
html,
body,
.site,
.site-content,
.ast-container,
#content,
#primary,
.entry-content,
.eq-home,
.eq-hero,
.eq-section,
.eq-therapies,
.eq-about,
.eq-testimonials {
  background-color: #FFF9F0 !important;
}

/* Quitar fondos blancos de secciones internas */
.eq-hero {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 30%),
    linear-gradient(180deg, #FFF9F0 0%, #FFF9F0 100%) !important;
}

.eq-section,
.eq-about {
  background: #FFF9F0 !important;
}
/* FORZAR FONDO CREMA EN TODO EL SITIO */
html,
body,
body.ast-theme-transparent-header,
.site,
#page,
.site-content,
#content,
.ast-container,
#primary,
main,
article,
.entry-content,
.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.eq-home,
.eq-hero,
.eq-section,
.eq-therapies,
.eq-about,
.eq-testimonials {
  background: #FFF9F0 !important;
  background-color: #FFF9F0 !important;
}

/* Fondo específico de la página de inicio */
body.home,
body.page,
body.page-id-13,
body.page-id-18 {
  background: #FFF9F0 !important;
}

/* Quitar fondo blanco de Astra dentro del contenido */
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-page-builder-template .site-content,
.ast-page-builder-template .entry-content {
  background: #FFF9F0 !important;
}

/* Mantener tarjetas claritas para que resalten */
.eq-card,
.eq-testimonial {
  background: #FFFDF8 !important;
}
/* AJUSTE FINAL IMAGEN PORTADA */
.eq-home .eq-hero__content {
  grid-template-columns: 48% 52% !important;
  max-width: 1300px !important;
  gap: 35px !important;
}

.eq-home .eq-hero__image {
  width: 100% !important;
  max-width: 760px !important;
  height: 560px !important;
  margin: 0 auto !important;
  position: relative !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.eq-home .eq-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1.08) !important;
  opacity: 0.98 !important;
  display: block !important;
}
/* ==================================================
   CORRECCIÓN DEFINITIVA DE PORTADA
   Imagen más grande, difuminada y sin espacio excesivo
================================================== */

/* Quitar el espacio excesivo debajo de la portada */
.eq-home .eq-hero {
  min-height: auto !important;
  padding: 25px 6% 5px !important;
  overflow: hidden !important;
  background: #FFF9F0 !important;
}

/* Dar más espacio a la imagen */
.eq-home .eq-hero__content {
  width: 100% !important;
  max-width: 1350px !important;
  grid-template-columns: 45% 55% !important;
  gap: 20px !important;
  align-items: center !important;
}

/* Contenedor de la imagen */
.eq-home .eq-hero__image {
  width: 100% !important;
  max-width: 830px !important;
  height: 620px !important;
  margin: 0 auto -10px !important;
  position: relative !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Imagen principal más grande */
.eq-home .eq-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(1.13) !important;
  transform-origin: center center !important;
  opacity: 1 !important;
  display: block !important;

  /* Quitar la máscara anterior */
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Difuminado suave en los cuatro lados */
.eq-home .eq-hero__image::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: -2px !important;
  z-index: 2 !important;
  pointer-events: none !important;

  background:
    linear-gradient(
      to right,
      #FFF9F0 0%,
      rgba(255, 249, 240, 0.45) 5%,
      transparent 12%,
      transparent 88%,
      rgba(255, 249, 240, 0.45) 95%,
      #FFF9F0 100%
    ),
    linear-gradient(
      to bottom,
      #FFF9F0 0%,
      rgba(255, 249, 240, 0.30) 4%,
      transparent 10%,
      transparent 88%,
      rgba(255, 249, 240, 0.55) 96%,
      #FFF9F0 100%
    ) !important;
}

/* Acercar Terapias Holísticas a la portada */
.eq-home .eq-therapies {
  margin-top: 0 !important;
  padding-top: 20px !important;
  background: #FFF9F0 !important;
}

/* Reducir ligeramente el espacio bajo el título */
.eq-home .eq-therapies .eq-section__header {
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}

/* TABLET */
@media (max-width: 1024px) {
  .eq-home .eq-hero {
    padding: 45px 6% 0 !important;
  }

  .eq-home .eq-hero__content {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .eq-home .eq-hero__image {
    max-width: 750px !important;
    height: 530px !important;
    margin-bottom: -5px !important;
  }

  .eq-home .eq-hero__image img {
    transform: scale(1.08) !important;
  }

  .eq-home .eq-therapies {
    padding-top: 30px !important;
  }
}

/* CELULAR */
@media (max-width: 650px) {
  .eq-home .eq-hero {
    padding: 40px 6% 0 !important;
  }

  .eq-home .eq-hero__content {
    gap: 5px !important;
  }

  .eq-home .eq-hero__image {
    width: 112% !important;
    max-width: none !important;
    height: 390px !important;
    margin-left: -6% !important;
    margin-right: -6% !important;
    margin-bottom: 0 !important;
  }

  .eq-home .eq-hero__image img {
    transform: scale(1.05) !important;
  }

  .eq-home .eq-therapies {
    margin-top: 0 !important;
    padding-top: 25px !important;
  }

  .eq-home .eq-therapies .eq-section__header {
    margin-bottom: 28px !important;
  }
}
/* DIFUMINADO MÁS SUAVE Y PROFUNDO EN LA IMAGEN */
.eq-home .eq-hero__image::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: -3px !important;
  z-index: 5 !important;
  pointer-events: none !important;

  background:
    linear-gradient(
      to right,
      #FFF9F0 0%,
      rgba(255, 249, 240, 0.95) 5%,
      rgba(255, 249, 240, 0.70) 11%,
      rgba(255, 249, 240, 0.30) 18%,
      transparent 27%,
      transparent 73%,
      rgba(255, 249, 240, 0.30) 82%,
      rgba(255, 249, 240, 0.70) 89%,
      rgba(255, 249, 240, 0.95) 95%,
      #FFF9F0 100%
    ),
    linear-gradient(
      to bottom,
      #FFF9F0 0%,
      rgba(255, 249, 240, 0.80) 5%,
      rgba(255, 249, 240, 0.35) 12%,
      transparent 22%,
      transparent 75%,
      rgba(255, 249, 240, 0.35) 86%,
      rgba(255, 249, 240, 0.85) 95%,
      #FFF9F0 100%
    ),
    radial-gradient(
      ellipse at center,
      transparent 48%,
      rgba(255, 249, 240, 0.12) 68%,
      rgba(255, 249, 240, 0.55) 88%,
      #FFF9F0 100%
    ) !important;
}
/* OCULTAR FRANJA AZUL DE LLAMADA A LA ACCIÓN */
.eq-home .eq-cta {
  display: none !important;
}
/* ICONOS DE TERAPIAS MÁS GRANDES Y VISIBLES */
.eq-home .eq-card__icon {
  width: 82px !important;
  height: 82px !important;
  margin: 0 auto 20px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;
  border: 2px solid #D4AF37 !important;
  background: #FFF9F0 !important;

  color: #B88A16 !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  -webkit-text-stroke: 0.6px #B88A16;
  text-shadow: 0 2px 6px rgba(184, 138, 22, 0.25);
  box-shadow:
    0 0 0 7px rgba(212, 175, 55, 0.10),
    0 8px 18px rgba(6, 43, 79, 0.10) !important;
}
/* QUITAR SUBRAYADO DE TARJETAS CLICKEABLES */
.eq-card-link,
.eq-card-link:link,
.eq-card-link:visited,
.eq-card-link:hover,
.eq-card-link:active,
.eq-card-link *,
.eq-card-link h3,
.eq-card-link p {
  text-decoration: none !important;
}

/* Mantener colores originales */
.eq-card-link {
  color: inherit !important;
}

.eq-card-link h3 {
  color: #062B4F !important;
}

.eq-card-link p {
  color: #4f5b66 !important;
}

/* Hover bonito sin subrayado */
.eq-card-link:hover h3 {
  color: #D4AF37 !important;
}
/* Reducir espacio inferior de Testimonios */
.eq-section.eq-testimonials {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
}

.eq-testimonials .eq-testimonial-grid {
    margin-bottom: 0 !important;
}

/* ==================================================
   TESTIMONIOS - AJUSTE FINAL
   ================================================== */

.eq-testimonial {
    position: relative !important;
    padding: 30px 28px 25px !important;
    min-height: 310px !important;
}

/* Texto más visible */
.eq-testimonial > p {
    margin: 0 0 24px !important;
    color: #343434 !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    text-align: center !important;
}

/* Agregar comilla de cierre */
.eq-testimonial > p::after {
    content: "”" !important;
    display: inline !important;
    margin-left: 4px !important;
    color: #D4AF37 !important;
    font-family: Georgia, serif !important;
    font-size: 30px !important;
    line-height: 0 !important;
    vertical-align: -7px !important;
}

/* Alinear fotografía y nombre */
.eq-testimonial__person {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 17px !important;
}

/* Fotografía más grande */
.eq-testimonial__person img {
    width: 94px !important;
    height: 94px !important;
    min-width: 94px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 3px solid rgba(212, 175, 55, 0.55) !important;
    box-shadow: 0 10px 24px rgba(6, 43, 79, 0.14) !important;
}

/* Nombre más visible */
.eq-testimonial__info strong {
    color: #062B4F !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
}

/* Estrellas */
.eq-testimonial__info span {
    color: #D4AF37 !important;
    font-size: 17px !important;
    letter-spacing: 2px !important;
}

/* Ocultar el adorno anterior si está escrito dentro de la tarjeta */
.eq-testimonial > :last-child:not(.eq-testimonial__person) {
    display: none !important;
}

/* Reemplazar la figura extraña por un detalle claro y elegante */
.eq-testimonial::after {
    content: "— ✦ —" !important;
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 20px auto 0 !important;
    color: #D4AF37 !important;
    background: none !important;
    font-size: 15px !important;
    line-height: 1 !important;
    letter-spacing: 4px !important;
    text-align: center !important;
    transform: none !important;
    opacity: 0.85 !important;
}

/* Ajuste para celular */
@media (max-width: 767px) {
    .eq-testimonial {
        padding: 26px 20px 22px !important;
        min-height: auto !important;
    }

    .eq-testimonial__person img {
        width: 84px !important;
        height: 84px !important;
        min-width: 84px !important;
    }

    .eq-testimonial > p {
        font-size: 16px !important;
    }
}
/* =====================================================
   FOOTER EQUILIBRIO ESPIRITUAL — VERSIÓN LIMPIA
===================================================== */

/* Evita espacios agregados por Elementor */
.elementor-location-footer,
.elementor-location-footer .elementor-section,
.elementor-location-footer .elementor-container,
.elementor-location-footer .elementor-widget-wrap,
.elementor-location-footer .elementor-widget,
.elementor-location-footer .elementor-widget-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.eq-footer-code,
.eq-footer-code * {
    box-sizing: border-box;
}

/* Footer a todo el ancho */
.eq-footer-code {
    width: 100vw !important;
    max-width: 100vw !important;

    margin-top: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding: 0 !important;
    min-height: 0 !important;

    position: relative;
    overflow: hidden;

    background: #062B4F !important;
    color: #ffffff;
    font-family: "Lato", Arial, sans-serif;
}

/* =====================================================
   ONDA SUPERIOR
===================================================== */

.eq-footer-wave {
    width: 100% !important;
    margin: 0 0 -1px !important;
    padding: 0 !important;

    line-height: 0 !important;
    background: #FFF9F0 !important;
}

.eq-footer-wave svg {
    width: 100% !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
}

/* =====================================================
   CONTENIDO PRINCIPAL
===================================================== */

.eq-footer-inner {
    width: 100% !important;
    max-width: 1280px !important;

    margin: 0 auto !important;
    padding: 10px 6% 6px !important;

    display: grid !important;
    grid-template-columns: 1.1fr 1.2fr 1fr !important;
    align-items: center !important;

    gap: 28px !important;
    min-height: 0 !important;
}

/* =====================================================
   LOGO Y DESCRIPCIÓN
===================================================== */

.eq-footer-brand {
    margin: 0 !important;
    padding: 0 !important;
}

.eq-footer-brand img {
    width: 170px !important;
    max-width: 100% !important;
    height: auto !important;

    display: block !important;
    margin: 0 0 3px !important;
}

.eq-footer-brand p {
    max-width: 320px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

/* =====================================================
   COLUMNA CENTRAL
===================================================== */

.eq-footer-cta {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.eq-footer-cta h3 {
    margin: 0 0 3px !important;
    padding: 0 !important;

    color: #ffffff !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
}

.eq-footer-cta p {
    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
}

.eq-footer-btn {
    display: inline-block !important;

    min-width: 180px !important;
    padding: 8px 20px !important;

    border-radius: 30px !important;
    background: #D4AF37 !important;
    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.eq-footer-btn:hover {
    background: #bd9728 !important;
    color: #ffffff !important;
}

/* =====================================================
   CONTACTO
===================================================== */

.eq-footer-contact {
    margin: 0 !important;
    padding: 0 !important;
}

.eq-footer-contact h4 {
    margin: 0 0 5px !important;
    padding: 0 !important;

    color: #D4AF37 !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
}

.eq-footer-contact a {
    display: block !important;

    margin: 0 0 2px !important;
    padding: 0 !important;

    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

.eq-footer-contact a:hover {
    color: #D4AF37 !important;
}

/* =====================================================
   DERECHOS RESERVADOS
===================================================== */

.eq-footer-bottom {
    width: 100% !important;

    margin: 0 !important;
    padding: 4px 6% 5px !important;

    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;

    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

/* =====================================================
   TABLET Y CELULAR
===================================================== */

@media (max-width: 850px) {
    .eq-footer-wave svg {
        height: 30px !important;
    }

    .eq-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 14px !important;

        padding: 14px 7% 10px !important;
        text-align: center !important;
    }

    .eq-footer-brand img {
        width: 145px !important;
        margin: 0 auto 4px !important;
    }

    .eq-footer-brand p {
        margin: 0 auto !important;
    }

    .eq-footer-contact {
        text-align: center !important;
    }
}

/* =====================================================
   AJUSTE MÓVIL — SOBRE MÍ
===================================================== */

@media screen and (max-width: 767px) {

    .eq-home .eq-about {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 auto !important;
        padding: 28px 18px 34px !important;

        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px !important;

        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .eq-home .eq-about__image,
    .eq-home .eq-about__text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 auto !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }

    .eq-home .eq-about__image img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;

        margin: 0 auto !important;

        object-fit: contain !important;
        object-position: center !important;
    }

    .eq-home .eq-about__text {
        text-align: center !important;
        overflow: hidden !important;
    }

    .eq-home .eq-about__text h2 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 auto 18px !important;
        padding: 0 !important;

        font-size: 46px !important;
        line-height: 1.05 !important;

        text-align: center !important;
        white-space: normal !important;
    }

    .eq-home .eq-about__text p {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 auto 18px !important;
        padding: 0 !important;

        font-size: 17px !important;
        line-height: 1.55 !important;

        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;

        box-sizing: border-box !important;
    }

    .eq-home .eq-about__text p:last-child {
        margin-bottom: 0 !important;
    }
}