.elementor-37 .elementor-element.elementor-element-b51ea6e{--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;}.elementor-37 .elementor-element.elementor-element-7857b22{--display:flex;}.elementor-37 .elementor-element.elementor-element-d7336ce{--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;}.elementor-37 .elementor-element.elementor-element-c41e125{--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;}/* Start custom CSS for html, class: .elementor-element-85464d7 */:root {
  --header-bg: #f7f7f7;
  --color-black: #000000;
}

/* Contenedor principal */
.header {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

/* Caja interna con bordes redondeados */
.header__inner {
  width: min(1080px, 100% - 40px);
  background-color: var(--header-bg);
  border-radius: 999px;
  padding: 14px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Grupos izquierda/derecha */
.header__left,
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Botón CTA */
.header__cta {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background-color: var(--color-black);
  color: #ffffff;

  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;

  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.header__cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Navegación */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.85rem;
}

.nav__link {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

/* Subrayado suave en hover */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width 150ms ease-out;
}

.nav__link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 640px) {
  .header__inner {
    padding-inline: 18px;
    gap: 12px;
  }

  .header__right {
    gap: 14px;
  }

  .nav {
    font-size: 0.8rem;
  }

  .header__cta {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .header__inner {
    flex-direction: column;
    row-gap: 10px;
  }

  .header__left,
  .header__right {
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a9d0e85 */.hero {
  background-color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #000000;
}

.hero__inner {
  min-height: 140vh;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* contexto para las tarjetas */
  box-sizing: border-box;
}

/* Bloque central apilado en columna:
   H1 → highlight → CTA */
.hero__core {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-weight: 900;
  font-size: clamp(3.6rem, 10vw, 6.2rem);
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.hero__highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background-color: #000000;
  margin-bottom: 24px;
}

.hero__highlight-text {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #d3fb08;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__cursor {
  display: inline-block;
  width: 2px;
  height: 1.4em;
  margin-left: 6px;
  background-color: #d3fb08;
  opacity: 0;
}

.hero__cursor--visible {
  animation: hero-cursor-blink 0.9s steps(2, start) infinite;
}

@keyframes hero-cursor-blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* CTA NORMAL */
.hero__cta {
  margin-top: 24px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background-color: #d3fb08;
  color: #000000;
}

/* ===========================
   TARJETAS FLOTANTES
   =========================== */

.hero-floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  max-width: 260px;
  padding: 16px 26px;
  border-radius: 999px;

  /* degradado muy suave amarillo */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fafce8 40%,
    #f4ffd4 75%
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
  pointer-events: auto;
  transition: background 0.35s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
}

.floating-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  color: #222222;
}

/* HOVER AMARILLO SYNTHEZA */
.floating-card:hover {
  background: #d3fb08;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.20);
  transform: translateY(-6px) scale(1.03);
}

/* POSICIONES TARJETAS */
.floating-card--1 {
  top: 16%;
  left: 10%;
}

.floating-card--2 {
  top: 18%;
  right: 7%;
}

.floating-card--3 {
  bottom: 31%;
  left: 14%;
}

.floating-card--4 {
  bottom: 33%;
  right: 10%;
}

/* ===========================
   ANIMACIONES FLOTANTES
   =========================== */

.float-orbit-1 {
  animation: float-orbit-1 12s ease-in-out infinite alternate;
}

.float-orbit-2 {
  animation: float-orbit-2 14s ease-in-out infinite alternate;
}

.float-orbit-3 {
  animation: float-orbit-3 16s ease-in-out infinite alternate;
}

.float-orbit-4 {
  animation: float-orbit-4 13s ease-in-out infinite alternate;
}

@keyframes float-orbit-1 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-14px, -10px);
  }
  100% {
    transform: translate(10px, 8px);
  }
}

@keyframes float-orbit-2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -12px);
  }
  100% {
    transform: translate(-10px, 6px);
  }
}

@keyframes float-orbit-3 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-12px, 10px);
  }
  100% {
    transform: translate(8px, -6px);
  }
}

@keyframes float-orbit-4 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 12px);
  }
  100% {
    transform: translate(-8px, -8px);
  }
}

/* ===========================
   FADE CONTINUO (SIN CORTE)
   =========================== */

.fade-cycle {
  /* solo opacidad, para no pelear con los transforms de float-orbit */
  animation: card-fade 10s ease-in-out infinite alternate;
}

@keyframes card-fade {
  0% {
    opacity: 0.35;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0.35;
  }
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .hero__inner {
    padding: 96px 16px 120px;
  }

  .hero-floating-cards {
    position: static;
    inset: auto;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .floating-card {
    position: static;
    max-width: 100%;
    width: 100%;
    transform: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f8f23f5 */:root{
  --bg:#FAFAF8;
  --text:#0B0B0C;
  --muted:#7A746E;
  --yellow:#D6FF3F;
  --green:#00C853;

  --card-w: 420px;
  --card-h: 520px;
  --radius:20px;
  --gap:32px;
  --shadow-1: 0 28px 60px rgba(11,11,12,0.09);

  --ease:cubic-bezier(.18,.9,.22,1);
  --t:520ms;
  --container:1280px;

  --float-dur: 6s;
  --float-amp: 8px;
}

/* Elementor clipping fix */
.elementor-widget-html,
.elementor-widget-container,
.elementor-element,
.cards {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}

/* Reset */
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  background:var(--bg);
  font-family:Inter, system-ui, sans-serif;
  color:var(--text);
  padding:48px 20px;
  -webkit-font-smoothing:antialiased;
}

.wrap{ max-width:var(--container); margin:0 auto; }

/* Header */
header.hero{text-align:center;margin-bottom:28px;background:transparent !important}
header.hero *{background:transparent !important}

h1{
  margin:0;
  font-weight:800;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height:1.05;
  letter-spacing:-0.02em;
  opacity:0;
  transform:translateY(12px);
  animation:fadeUp .7s var(--ease) forwards;
}
@keyframes fadeUp{to{opacity:1;transform:none}}

.subtitle{
  margin-top:12px;
  font-weight:600;
  color:var(--muted);
}

/* Cards row */
.cards{
  display:flex;
  gap:var(--gap);
  justify-content:center;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:20px;
  margin-top:30px;
}

.card-shell{
  width:var(--card-w);
  height:var(--card-h);
  flex:0 0 var(--card-w);
  perspective:1500px;
}

.card{
  width:100%; height:100%;
  border-radius:var(--radius);
  background:white;
  overflow:visible;
  position:relative;
  box-shadow:var(--shadow-1);
  animation:floatCard var(--float-dur) ease-in-out infinite;
}
@keyframes floatCard{
  0%{ transform:translateY(0) }
  50%{ transform:translateY(-6px) }
 100%{ transform:translateY(0) }
}

.card-inner{
  width:100%;height:100%;
  border-radius:var(--radius);
  transform-style:preserve-3d;
  transition:transform .62s var(--ease);
  position:relative;
}
.card.is-flipped .card-inner{ transform:rotateY(180deg) }

.face{
  position:absolute;inset:0;
  padding:46px 38px;
  display:flex;flex-direction:column;
  backface-visibility:hidden;
  border-radius:inherit;
}

/* FRONT */
.front{
  justify-content:flex-start;
  align-items:center;
  text-align:center;
  gap:26px;
  background:linear-gradient(180deg,#fff 0%,#fff 55%,rgba(0,0,0,0.08) 100%);
}

.cover-title{
  font-weight:800;
  font-size:30px;
  letter-spacing:-0.02em;
}

.cover-sub{
  font-size:18px;
  font-weight:600;
  opacity:.75;
  margin-top:-4px;
}

/* ICONO EMOJI 🔃 */
.cover-icon-emoji{
  font-size:82px;
  line-height:1;
  margin-top:10px;

  /* Glow premium */
  filter:
    drop-shadow(0 6px 12px rgba(214,255,63,0.22))
    drop-shadow(0 0 22px rgba(214,255,63,0.20))
    drop-shadow(0 0 44px rgba(214,255,63,0.10));
}

/* Footer debajo */
.footer{
  margin-top:auto;
  display:flex;
  justify-content:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(90deg,var(--yellow),var(--green));
}

/* Back */
.back{
  transform:rotateY(180deg);
  text-align:center;
  justify-content:flex-start;
  gap:14px;
}

.back h3{
  margin-top:0;
  font-size:20px;
  font-weight:800;
}

.back p{
  max-width:82%;
  margin:0 auto 10px;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}

.solution{
  width:88%;
  margin:10px auto;
  background:linear-gradient(90deg,rgba(255,234,0,0.15),rgba(0,200,83,0.08));
  padding:16px;
  border-radius:14px;
  font-weight:700;
  text-align:left;
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
}
.solution small{
  font-weight:800;
  margin-bottom:8px;
  display:block;
}

.solution ul{margin:0;padding-left:18px}
.solution li{margin:6px 0}

.meta{
  width:88%;
  margin:auto auto 0 auto;
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:var(--muted);
}

/* Responsive */
@media(max-width:1100px){
  :root{--card-w:92%}
  .card-shell{height:500px}
  .front .cover-title{font-size:26px}
}
@media(max-width:640px){
  h1{font-size:30px}
  .card-shell{height:480px}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67c1d0f *//* ------------------------------------------
   SECCIÓN PRICING – SYNTHEZA
------------------------------------------ */

.pricing {
  background: #f5f5f5;
  padding: 100px 24px;
  display: flex;
  justify-content: center;
}

.pricing__container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

/* Header */
.pricing__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.pricing__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
}

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: start;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 36px 32px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Label */
.pricing-card__label {
  background: #f2f2f2;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  border-radius: 20px;
  width: fit-content;
}

/* Badge destacada */
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: #c6ff3a;
  color: #000;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
}

/* Precio */
.pricing-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

.pricing-card__note {
  font-size: 0.9rem;
  color: #777;
}

/* Descripción */
.pricing-card__description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.4;
}

/* CTA */
.pricing-card__cta {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 6px;
  transition: 0.2s ease;
}

.pricing-card__cta:hover {
  opacity: 0.9;
}

.pricing-card__cta--highlighted {
  transform: scale(1.05);
}

/* Lista */
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.pricing-card__list li {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 10px;
}

/* Highlighted card visual boost */
.pricing-card--highlighted {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  border: 2px solid #e8fecd;
}

/* Responsive */
@media (max-width: 860px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card {
    text-align: left;
  }
}/* End custom CSS */