.elementor-27 .elementor-element.elementor-element-0861ed9{--display:flex;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-27 .elementor-element.elementor-element-18018eb{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-30f7da7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-38e4845{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-7e038a2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-fcc5842{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-02479c4 */@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600&display=swap');

:root {
  --cp: var(--e-global-color-primary, #97ac96);
  --cs: var(--e-global-color-secondary, #c8ccd2);
  --ct: var(--e-global-color-text, #000000);
  --ca: var(--e-global-color-accent, #e6beb7);

  --fd: var(
    --e-global-typography-primary-font-family,
    'black-mango-regular'
  ), sans-serif;

  --fb: var(
    --e-global-typography-text-font-family,
    'Catamaran'
  ), sans-serif;

  --fu: var(
    --e-global-typography-accent-font-family,
    'Catamaran'
  ), sans-serif;

  --bg: rgba(232, 230, 223, 0.6);
}

.cps1-wrap *,
.cps1-wrap *::before,
.cps1-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cps1-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cps1-wrap a {
  text-decoration: none;
}

/* HERO */

.cps1-hero {
  width: 100%;
  padding-bottom: 40px;
  overflow: hidden;
  background: var(--bg);
}

/* Imagen principal */

.cps1-hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 65px 32px 0;
}

.cps1-hero__img {
  position: relative;
  z-index: 1;
  width: 52%;
  max-width: 700px;
  height: auto;
}

/* Flores decorativas */

.cps1-hero__deco {
  position: absolute;
  top: 50%;
  z-index: 0;
  width: 12%;
  max-width: 170px;
  pointer-events: none;
  opacity: 0.75;
}

.cps1-hero__deco--l {
  left: 4%;
  transform: translateY(-50%) rotate(-10deg) scaleX(-1);
}

.cps1-hero__deco--r {
  right: 4%;
  transform: translateY(-50%) rotate(10deg);
}

/* Texto */

.cps1-hero__text {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
  text-align: center;
  animation: cps1Fade 0.7s ease both;
}

@keyframes cps1Fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cps1-hero__h1 {
  margin-bottom: 8px;
  color: var(--ct);
  font-family: var(--fd);
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.4px;
}

.cps1-hero__brand {
  display: block;
  margin-top: 4px;
  color: #d8a6a1;
  font-size: 0.65em;
  letter-spacing: 2px;
}

.cps1-hero__h2 {
  margin: 14px 0 10px;
  color: var(--ct);
  font-family: var(--fd);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.4px;
}

.cps1-hero__desc {
  max-width: 580px;
  margin: 0 auto 24px;
  color: var(--ct);
  font-family: var(--fb);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.75;
  letter-spacing: 1px;
}

/* Botones */

.cps1-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cps1-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 11px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--fu) !important;
  font-size: clamp(13px, 1.2vw, 18px) !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.cps1-btn--green {
  border: 2px solid var(--cp);
  background: var(--cp) !important;
  color: #ffffff !important;
}

.cps1-btn--green:hover {
  border-color: var(--ca);
  background: var(--ca) !important;
}

.cps1-btn--outline {
  border: 2px solid var(--cp);
  background: transparent !important;
  color: var(--cp) !important;
}

.cps1-btn--outline:hover {
  border-color: var(--ca);
  background: var(--ca) !important;
  color: #ffffff !important;
}

/* TABLET */

@media (max-width: 860px) {
  .cps1-hero__img-wrap {
    padding-top: 48px;
  }

  .cps1-hero__img {
    width: 68%;
    max-width: 620px;
  }

  .cps1-hero__deco {
    width: 12%;
  }

  .cps1-hero__text {
    margin-top: 38px;
  }
}

/* MÓVIL */

@media (max-width: 480px) {
  .cps1-hero {
    padding-bottom: 32px;
  }

  .cps1-hero__img-wrap {
    padding: 35px 20px 0;
  }

  .cps1-hero__img {
    width: 84%;
    max-width: 390px;
  }

  .cps1-hero__deco {
    display: none;
  }

  .cps1-hero__text {
    margin-top: 30px;
    padding: 0 20px;
  }

  .cps1-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .cps1-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-15f4a01 */:root {
  --cp: var(--e-global-color-primary, #97ac96);
  --ca: var(--e-global-color-accent, #e6beb7);
  --ct: var(--e-global-color-text, #000000);

  --fd: var(
    --e-global-typography-primary-font-family,
    'black-mango-regular'
  ), sans-serif;

  --fb: var(
    --e-global-typography-text-font-family,
    'catamaran-medium'
  ), sans-serif;

  --fu: var(
    --e-global-typography-accent-font-family,
    'catamaran-semi-bold'
  ), sans-serif;

  --bg: #f6f1e9;
  --sand: #dbccbc;
  --maxw: 1140px;
}

/* RESETEO DEL MÓDULO */

.cps3-wrap *,
.cps3-wrap *::before,
.cps3-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cps3-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cps3-wrap a {
  text-decoration: none;
}

/* SECCIÓN PRINCIPAL */

.cps3-centro {
  width: 100%;
  padding-top: 60px;
  overflow: hidden;
  background: var(--bg);
}

/* TÍTULO */

.cps3-title {
  max-width: var(--maxw);
  margin: 0 auto 32px;
  padding: 0 24px;
  text-align: right;
}

.cps3-title h2 {
  color: var(--ct);
  font-family: var(--fd);
  font-size: clamp(20px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 2px;
}

.cps3-title .verde,
.cps3-quote .verde {
  color: var(--cp);
}

/* IMAGEN Y TEXTO */

.cps3-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--maxw);
  margin: 0 auto;
}

.cps3-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.cps3-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 52px 52px 40px;
  background: var(--sand);
}

.cps3-body {
  color: #000000;
  font-family: var(--fb);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  letter-spacing: 1px;
}

.cps3-card__action {
  margin-top: 4px;
  text-align: center;
}

.cps3-link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 4px solid var(--cp);
  color: #000000 !important;
  font-family: var(--fu) !important;
  font-size: clamp(14px, 1.5vw, 20px) !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.cps3-link:hover,
.cps3-link:focus-visible {
  border-color: transparent;
  color: var(--cp) !important;
}

/* BLOQUE DE FRASE */

.cps3-quote-wrap {
  position: relative;
  overflow: hidden;
  padding: 38px 24px;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(151, 172, 150, 0.2) 0,
      rgba(151, 172, 150, 0.2) 140px,
      transparent 141px
    ),
    linear-gradient(
      135deg,
      #faf7f2 0%,
      #f6f1e9 52%,
      rgba(151, 172, 150, 0.22) 100%
    );
}

.cps3-quote {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 52px 70px 46px;
  border: 1px solid rgba(151, 172, 150, 0.45);
  border-radius: 2px 34px 2px 34px;
  background: rgba(255, 255, 255, 0.52);
  color: #000000;
  text-align: center;
}

.cps3-quote p {
  margin: 0;
  color: #000000;
  font-family: 'black-mango-medium', var(--fd);
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 1.5px;
}

.cps3-quote__mark {
  position: absolute;
  top: 12px;
  left: 28px;
  color: rgba(151, 172, 150, 0.7);
  font-family: Georgia, serif;
  font-size: 74px;
  font-style: normal;
  line-height: 1;
}

.cps3-quote__line {
  display: block;
  width: 68px;
  height: 3px;
  margin: 28px auto 0;
  border-radius: 20px;
  background: var(--cp);
}

.cps3-quote__line::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: -5px 0 0 76px;
  border-radius: 50%;
  background: var(--ca);
}

/* TABLET */

@media (max-width: 860px) {
  .cps3-centro {
    padding-top: 45px;
  }

  .cps3-title {
    text-align: center;
  }

  .cps3-row {
    grid-template-columns: 1fr;
  }

  .cps3-photo {
    height: min(75vw, 620px);
    min-height: 0;
    object-position: center 28%;
  }

  .cps3-card {
    padding: 42px 36px;
  }

  .cps3-quote-wrap {
    padding: 28px 20px;
  }

  .cps3-quote {
    padding: 48px 42px 40px;
  }

  .cps3-quote__mark {
    left: 20px;
    font-size: 62px;
  }
}

/* MÓVIL */

@media (max-width: 480px) {
  .cps3-centro {
    padding-top: 36px;
  }

  .cps3-title {
    margin-bottom: 24px;
    padding: 0 20px;
  }

  .cps3-title h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .cps3-photo {
    height: 115vw;
    max-height: 540px;
  }

  .cps3-card {
    gap: 18px;
    padding: 30px 22px 34px;
  }

  .cps3-body {
    font-size: 14px;
    line-height: 1.7;
  }

  .cps3-quote-wrap {
    padding: 20px 16px;
  }

  .cps3-quote {
    padding: 48px 24px 36px;
    border-radius: 2px 25px 2px 25px;
  }

  .cps3-quote p {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1px;
  }

  .cps3-quote p br {
    display: none;
  }

  .cps3-quote__mark {
    top: 10px;
    left: 16px;
    font-size: 54px;
  }

  .cps3-quote__line {
    margin-top: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-75b729e */:root {
  --cp: var(--e-global-color-primary, #97ac96);
  --cs: var(--e-global-color-secondary, #c8ccd2);
  --ca: var(--e-global-color-accent, #e6beb7);
  --cps5-rose-dark: #9f625d;
  --cps5-cream: #f6f1e9;

  --fd: var(
    --e-global-typography-primary-font-family,
    'black-mango-regular'
  ), sans-serif;

  --fb: var(
    --e-global-typography-text-font-family,
    'catamaran-medium'
  ), sans-serif;

  --fu: var(
    --e-global-typography-accent-font-family,
    'catamaran-semi-bold'
  ), sans-serif;
}

/* RESETEO */

.cps5-wrap *,
.cps5-wrap *::before,
.cps5-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cps5-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cps5-wrap button {
  font: inherit;
}

/* SECCIÓN */

.cps5-opinions {
  position: relative;
  width: 100%;
  padding: 64px 24px 56px;
  overflow: hidden;
  background: var(--cps5-cream);
}

/* DETALLES DECORATIVOS */

.cps5-opinions::before {
  content: "";
  position: absolute;
  top: -110px;
  left: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(151, 172, 150, 0.1);
  pointer-events: none;
}

.cps5-opinions::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(230, 190, 183, 0.12);
  pointer-events: none;
}

/* CABECERA */

.cps5-head {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
  text-align: center;
}

.cps5-icon {
  display: block;
  width: clamp(40px, 5vw, 72px);
  margin: 0 auto 8px;
}

.cps5-title {
  color: #000000;
  font-family: 'black-mango-semibold', var(--fd);
  font-size: clamp(40px, 6vw, 83px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}

.cps5-sub {
  margin-top: 10px;
  color: var(--cps5-rose-dark) !important;
  font-family: 'black-mango-semibold', var(--fd);
  font-size: clamp(18px, 2.5vw, 36px);
  font-weight: 600 !important;
  line-height: 1.2;
  letter-spacing: 0.9px;
  opacity: 1 !important;
  text-shadow: none !important;
}

/* CARRUSEL */

.cps5-carousel {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 56px;
  outline: none;
}

.cps5-track {
  overflow: hidden;
  border: 1px solid rgba(151, 172, 150, 0.62);
  border-radius: 3px 34px 3px 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 45px rgba(75, 67, 58, 0.08);
}

.cps5-slides {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s ease;
  will-change: transform;
}

.cps5-slide {
  display: flex;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 260px;
  padding: 48px 60px 42px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cps5-slide::before {
  content: "“";
  display: block;
  height: 48px;
  margin-bottom: 6px;
  color: #789177;
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.9;
}

.cps5-text {
  max-width: 700px;
  margin: 0 auto 22px;
  padding: 0 16px;
  color: #171717;
  font-family: 'catamaran-medium', var(--fb);
  font-size: clamp(14px, 1.2vw, 16px);
  font-style: italic;
  line-height: 1.75;
  letter-spacing: 0.3px;
}

.cps5-name {
  color: #000000;
  font-family: 'black-mango-regular', var(--fd);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cps5-name::before {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  margin: 0 auto 12px;
  border-radius: 20px;
  background: var(--cp);
}

/* FLECHAS */

.cps5-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(151, 172, 150, 0.8);
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  place-items: center;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cps5-btn:hover,
.cps5-btn:focus-visible {
  border-color: var(--cp);
  background: var(--cp);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.cps5-btn--p {
  left: 0;
}

.cps5-btn--n {
  right: 0;
}

/* INDICADORES */

.cps5-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.cps5-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #829581;
  cursor: pointer;
  transition:
    width 0.2s ease,
    border-radius 0.2s ease,
    background 0.2s ease;
}

.cps5-dot.on {
  width: 25px;
  border-radius: 10px;
  background: #1f2d22;
}

/* TABLET */

@media (max-width: 860px) {
  .cps5-opinions {
    padding: 54px 20px 48px;
  }

  .cps5-head {
    margin-bottom: 32px;
  }

  .cps5-carousel {
    padding: 0 48px;
  }

  .cps5-slide {
    min-height: 290px;
    padding: 42px 35px 38px;
  }

  .cps5-text {
    padding: 0;
  }
}

/* MÓVIL */

@media (max-width: 480px) {
  .cps5-opinions {
    padding: 44px 14px 40px;
  }

  .cps5-opinions::before {
    top: -80px;
    left: -100px;
    width: 210px;
    height: 210px;
  }

  .cps5-opinions::after {
    right: -90px;
    bottom: -90px;
    width: 190px;
    height: 190px;
  }

  .cps5-head {
    margin-bottom: 26px;
  }

  .cps5-title {
    letter-spacing: 2px;
  }

  .cps5-sub {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.3;
  }

  .cps5-carousel {
    padding: 0 30px;
  }

  .cps5-track {
    border-radius: 2px 25px 2px 25px;
  }

  .cps5-slide {
    min-height: 390px;
    padding: 34px 22px 30px;
  }

  .cps5-slide::before {
    height: 38px;
    font-size: 58px;
  }

  .cps5-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .cps5-btn {
    width: 35px;
    height: 35px;
    font-size: 25px;
  }

  .cps5-dots {
    gap: 7px;
    margin-top: 20px;
  }
}

/* REDUCCIÓN DE MOVIMIENTO */

@media (prefers-reduced-motion: reduce) {
  .cps5-slides,
  .cps5-btn,
  .cps5-dot {
    transition: none;
  }
}/* End custom CSS */