.elementor-15 .elementor-element.elementor-element-537bf0d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-15:not(.elementor-motion-effects-element-type-background), body.elementor-page-15 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EDE7D7;}/* Start custom CSS for html, class: .elementor-element-b370d37 */:root {
  --frame-side: 0px;
  --frame-top: 0px;

  --beige-bg: #f5e9d7;
  --beige-text: #f5e9d7;
  --dark-green: #243c30;

  --icon-color-center: #f5e9d7;
  --icon-color-top: #243c30;
}

/* CONTENEDOR BASE DE LA LANDING */
.matisa-landing {
  height: 200vh;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--beige-text);
  background-color: var(--beige-bg);
  overflow-x: hidden;
  position: relative;
}

/* Lo que antes era body.page-wrapper, etc. ahora va con prefijo .matisa-landing */
.matisa-landing .page-wrapper {
  position: fixed;
  inset: 0;
  padding-top: var(--frame-top);
  padding-right: var(--frame-side);
  padding-bottom: var(--frame-side);
  padding-left: var(--frame-side);
  transition: padding 0.1s linear;
}

/* LOGO centrado inicialmente */
.matisa-landing .icon-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

/* ===== LOGO MATISA (CONTENEDOR) ===== */
.matisa-landing .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(200px, 22vw, 320px); /* tamaño base */
  height: auto;
  will-change: transform;
  transform-origin: center;
  transform: scale(2); /* luego JS lo anima */
}

/* ===== LOGO MATISA (IMÁGENES) ===== */
.matisa-landing .icon img {
  width: 100%;
  height: auto;
  display: none;         /* por defecto, ocultas */
  pointer-events: none;
  opacity: 1;
}

/* Estado inicial: SOLO logo claro (beige) */
.matisa-landing .icon .logo-light {
  display: block;
}

/* Cuando el icono sube al borde: SOLO logo verde */
.matisa-landing .icon.icon-top .logo-light {
  display: none;
}

.matisa-landing .icon.icon-top .logo-dark {
  display: block;
}


.matisa-landing .content {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("https://www.matisacr.com/wp-content/uploads/2025/12/fondo-matisa.png");
  background-size: cover;
  background-position: center;
  border-radius: 0;
  padding: 40px clamp(20px, 4vw, 40px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.matisa-landing .content.framed {
  border-radius: 28px;
}

.matisa-landing .content::before {
  content: "";
  position: absolute;
  inset: 0;
  /*oscurecer BG*/
  background: radial-gradient(circle at center, rgba(0,0,0,0.45), rgba(0,0,0,0.3));
  pointer-events: none;
  z-index: 0;
}

.matisa-landing .content-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.matisa-landing .hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.matisa-landing .hero-initial {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matisa-landing .hero-initial .scroll-label {
  opacity: 0.8;
}

.matisa-landing .hero-initial .skip-btn {
  border: none;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.matisa-landing .hero-main {
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  color: var(--beige-text);
}

.matisa-landing .hero-logo-top-space {
  height: 40px;
}

.matisa-landing .hero-kicker {
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.matisa-landing .hero-strong {
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 24px;
}

.matisa-landing .hero-mid {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.matisa-landing .hero-big {
  font-weight: 900;
  font-size: clamp(6rem, 9vw, 8rem);
  line-height: 0.9;
  margin-bottom: 40px;
}

.matisa-landing .cta-main {
  border-radius: 999px;
  border: none;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: var(--beige-bg);
  color: var(--dark-green);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.matisa-landing .cta-main:hover {
  transform: translateY(-1px);
}

/* ========= RESPONSIVE ========= */

/* Tablet */
@media (max-width: 1024px) {
  .matisa-landing .content {
    padding: 32px 24px;
  }

  .matisa-landing .hero-logo-top-space {
    height: 28px;
  }

  .matisa-landing .hero-strong {
    font-size: clamp(5rem, 7vw, 6rem);
  }

  .matisa-landing .hero-big {
    font-size: clamp(7.5rem, 9.5vw, 8.5rem);
  }

  .matisa-landing .icon {
    font-size: 3.5rem;
  }
}

/* Móvil */
@media (max-width: 640px) {
  .matisa-landing .content {
    padding: 24px 16px;
  }

  .matisa-landing .hero-initial {
    bottom: 40px;
    font-size: 0.7rem;
    text-align: center;
  }

  .matisa-landing .hero-kicker {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .matisa-landing .hero-strong {
    font-size: 2.7rem;
  }

  .matisa-landing .hero-mid {
    font-size: 0.92rem;
    letter-spacing: 0.14em;
  }

  .matisa-landing .hero-big {
    font-size: 4.2rem;
  }

  .matisa-landing .cta-main {
    padding: 10px 26px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .matisa-landing .hero-logo-top-space {
    height: 22px;
  }

  .matisa-landing .icon {
    font-size: 3rem;
  }
}/* End custom CSS */