@charset "UTF-8";
:root {
  --bg-color-start: #ff7474;
  --bg-color-end: #b63a6e;
  --wheel-rotation: 0deg;
  --wheel-area-bg: #fdf8f2;
  --wheel-band-bg: #fff;
  --primary-red: #e65243;
}

a {
  text-decoration: none !important;
}

/* --- LAYOUT GENERAL --- */
.carousel-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* Lado izquierdo (rojo) */
.content-area {
  order: 1;
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 70px 8%;
  color: #fff;
  background: linear-gradient(135deg, var(--bg-color-start), var(--bg-color-end));
  transition: background 0.8s ease-in-out, transform 0.6s ease, opacity 0.6s ease;
  position: relative;
  overflow: hidden;
}
.content-area.shift-left {
  transform: translateX(-28%);
  pointer-events: none;
}
.content-area.shift-left .content-wrapper,
.content-area.shift-left .internal-engine-button {
  visibility: hidden;
}
.content-area h1 {
  line-height: 1.1;
  margin: 0 0 0.3em;
  font-weight: 700;
}
.content-area h2 {
  font-size: 1.2em;
  font-weight: 300;
  margin: 0 0 20px;
}
.content-area p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 10px;
}

.content-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Lado derecho molino */
.wheel-area {
  order: 2;
  width: 38%;
  background: var(--wheel-area-bg);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.wheel-band {
  width: 80px;
  background: var(--wheel-band-bg);
  box-shadow: 18px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 8;
}
.wheel-band.shift-left {
  transform: translateX(-28vw);
}

/* Transiciones compartidas */
.content-area,
.wheel-band,
#wheel-asset {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Texto contenido ya está dentro de .content-area */
/* Slide indicator */
.slide-indicator-dot {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border: 3px solid transparent;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}
.slide-indicator-dot.active {
  background-color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.15);
}

/* Herramientas / CTA */
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.tool-list .tool-item {
  min-width: 45%;
}
.tool-list .tool-item p {
  font-weight: bold;
  margin: 0 0 5px;
  max-width: 130px;
}

.tool-list-description p {
  max-width: 300px;
  font-family: "Source Sans Pro", Sans-serif;
}

.tool-button {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
  margin: 10px 0px;
  font-family: "Avenir Next Bold", Sans-serif;
}
.tool-button:hover, .tool-button:focus {
  background: #fff;
  color: var(--primary-red);
}

.content-cta {
  margin-top: auto;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.internal-engine-button {
  padding: 10px 25px;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
  transition: background 0.2s, color 0.2s, transform 0.1s, box-shadow 0.2s;
  z-index: 1;
  font-family: "Avenir Next Bold", Sans-serif;
}
.internal-engine-button:hover {
  background: #fff;
  color: var(--primary-red);
}

/* Molino */
.wheel-asset-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#wheel-asset {
  width: 320px;
  height: auto;
  transform: rotate(var(--wheel-rotation));
  transition: transform 0.8s ease-in-out;
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.45));
  position: relative;
  z-index: 9;
}

.navigation-buttons {
  position: absolute;
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 80px;
  transition: opacity 0.3s ease;
}
.navigation-buttons.nav-hidden {
  opacity: 0;
  pointer-events: none;
}
.navigation-buttons button {
  width: 60px;
  height: 55px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s, box-shadow 0.2s;
  padding: 20px;
}
.navigation-buttons button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.navigation-buttons button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.navigation-buttons button:nth-child(1) {
  background: #ffb7c0;
  color: #7a494a;
}
.navigation-buttons button:nth-child(2) {
  background: #ffffff;
  color: #4b4b4b;
}

/* Panel derecho */
.engine-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  transform: translateX(100%);
  transition: transform 0.6s ease;
  z-index: 5;
  pointer-events: none;
}
.engine-panel.visible {
  transform: translateX(0);
}

.engine-panel-right {
  pointer-events: auto;
  width: 62%;
  height: 100%;
  background: #fdf8f2;
  padding: 40px 60px 40px 60px;
  position: relative;
  box-shadow: -15px 0 25px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.engine-panel-right.show-tools {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.engine-panel-right.show-tools .engine-tools-layout {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.engine-panel-right.show-tools .tool-gear--prescriptiva {
  animation: gearIn 0.6s ease-out forwards;
  animation-delay: 0.05s;
}
.engine-panel-right.show-tools .tool-gear--predictiva {
  animation: gearIn 0.6s ease-out forwards;
  animation-delay: 0.15s;
}
.engine-panel-right.show-tools .tool-gear--descriptiva {
  animation: gearIn 0.6s ease-out forwards;
  animation-delay: 0.25s;
}
.engine-panel-right.show-processes {
  background-size: 128% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.engine-panel-right.show-processes .process-step--1 {
  transform: scaleX(1);
  transition-delay: 0.05s;
}
.engine-panel-right.show-processes .process-step--2 {
  transform: scaleX(1);
  transition-delay: 0.15s;
}
.engine-panel-right.show-processes .process-step--3 {
  transform: scaleX(1);
  transition-delay: 0.25s;
}
.engine-panel-right.show-talent {
  background-size: 128% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.engine-panel-right.show-talent .talent-circle--1 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.05s;
}
.engine-panel-right.show-talent .talent-circle--2 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.18s;
}
.engine-panel-right.show-talent .talent-circle--3 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.3s;
}
.engine-panel-right.show-talent .engine-talent-baseline {
  background: #f1efe8;
  width: 200%;
}

.engine-panel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.engine-panel-title {
  font-size: 2.6em;
  margin: 0;
  font-weight: 700;
  z-index: 2;
  font-family: "Avenir Next Bold", Sans-serif;
  font-size: 60px !important;
  color: #211D1B;
}

.engine-back-btn {
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #000;
  cursor: pointer;
  color: #211D1B;
  font-family: "Avenir Next Bold", Sans-serif;
  font-size: 14px;
  background: #fff;
  position: relative;
  padding-left: 28px !important;
}
.engine-back-btn::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url("/wp-content/uploads/2025/12/arrow-left.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.engine-back-btn:hover {
  background: #fff;
  color: #211D1B;
  border-color: #211D1B;
}

.engine-content-inner {
  font-size: 0.95em;
  flex: 1;
  position: relative;
}

.engine-tools-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: -50px;
}

/* Herramientas tuercas */
.engine-tools-layout {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tool-gear {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-70px) scale(0.8);
  z-index: 2;
}
.tool-gear img {
  display: block;
  height: auto;
}
.tool-gear--descriptiva {
  top: 15%;
  left: 13%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.tool-gear--descriptiva img {
  width: 15%;
  min-width: 60px;
}
.tool-gear--predictiva {
  top: 80%;
  left: 30%;
}
.tool-gear--predictiva img {
  width: 32%;
  min-width: 70px;
}
.tool-gear--prescriptiva {
  top: 30%;
  left: 63%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.tool-gear--prescriptiva img {
  width: 90%;
}

.tool-label {
  color: #211D1B;
  line-height: 18px;
  font-family: "Source Sans Pro", Sans-serif;
  font-size: 16px;
}
.tool-label strong {
  display: block;
}

/* Animación tuercas */
@keyframes gearIn {
  from {
    opacity: 0;
    transform: translateX(-70px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
/* PROCESOS */
.engine-processes {
  position: relative;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.engine-processes-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: baseline;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease;
}
.process-step__number {
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  font-family: "Avenir Next Bold", Sans-serif;
}
.process-step__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Source Sans Pro", Sans-serif;
}
.process-step__content strong {
  font-weight: 400;
  margin: 0px;
}
.process-step--1 {
  background: #F45656;
  width: 65%;
}
.process-step--2 {
  background: #F47836;
  width: 85%;
  margin-left: 70px;
}
.process-step--3 {
  background: #A42EA2;
  width: 100%;
}

/* TALENTO – CÍRCULOS + PALOS VERTICALES */
.engine-talent {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.engine-talent-circles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  width: 100%;
}

.talent-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.talent-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.35;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.talent-circle--1 {
  background: #A42EA2;
  width: 150px;
  height: 145px;
}
.talent-circle--2 {
  background: #f47836;
  width: 170px;
  height: 165px;
}
.talent-circle--3 {
  background: #f45656;
  width: 200px;
  height: 195px;
}
.talent-circle span {
  font-family: "Source Sans Pro Bold", Sans-serif;
  max-width: 150px;
  font-size: 14px;
}

.talent-stick {
  width: 18px;
  height: 70px;
  background: #F1EFE8;
}

/* Línea base donde llegan los palos */
.engine-talent-baseline {
  margin-top: -5px;
  width: 100%;
  height: 18px;
  background: #F1EFE8;
}

/* 🟣 Círculo 1 (más pequeño) necesita el palo más largo */
.talent-item:nth-child(3) .talent-stick {
  height: 80px;
}

/* 🟠 Círculo 2 (medio) */
.talent-item:nth-child(2) .talent-stick {
  height: 55px;
}

/* 🔴 Círculo 3 (más grande) necesita el palo más corto */
.talent-item:nth-child(1) .talent-stick {
  height: 35px;
}

/* Navegación inferior engine */
.engine-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  z-index: 1;
}

.engine-prev-btn,
.engine-next-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  font-size: 0.9em;
}

.engine-prev-btn {
  margin-right: auto;
}

.engine-next-btn {
  margin-left: auto;
}

/* Botones prev / next con iconos */
.engine-next-btn {
  position: relative;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #000;
  cursor: pointer;
  background: #fff;
  padding-right: 28px !important;
  color: #211D1B;
  font-family: "Avenir Next Bold", Sans-serif;
  font-size: 14px;
}
.engine-next-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url("/wp-content/uploads/2025/12/arrow-right-black.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.engine-next-btn:hover {
  background: #fff;
  color: #211D1B;
  border-color: #211D1B;
}

.engine-prev-btn {
  position: relative;
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid #000;
  cursor: pointer;
  padding-left: 28px !important;
  color: #211D1B;
  font-family: "Avenir Next Bold", Sans-serif;
  font-size: 14px;
}
.engine-prev-btn::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url("/wp-content/uploads/2025/12/arrow-left.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.engine-prev-btn:hover {
  background: #fff;
  color: #211D1B;
  border-color: #211D1B;
}

/* Assets decorativos */
.tools-bg-gear {
  position: absolute;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.tools-bg-gear--left {
  width: 60%;
  left: -20%;
  top: 60%;
}
.tools-bg-gear--right {
  width: 60%;
  right: -25%;
  top: -50%;
}
.tools-bg-gear--bottom {
  width: 35%;
  right: -25%;
  bottom: -60%;
}

[data-id="4b5539d"] {
  padding: 0;
}
[data-id="4b5539d"] .e-con-inner {
  padding: 0px;
  max-width: 100%;
  width: 100%;
}

.content-wrapper {
  max-width: 520px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 35px;
  flex-direction: row-reverse;
}
.content-wrapper h2,
.content-wrapper h3 {
  color: #fff;
}
.content-wrapper h2 {
  font-size: 30px;
  font-family: "Avenir Next Bold", Sans-serif;
}

.slide-molino-title h2 {
  font-size: 55px;
  line-height: 75px;
  max-width: 400px;
}

.title-anclas h2 {
  margin-top: 0px;
}

.title-multiplicacion h2,
.title-diferenciacion h2 {
  max-width: 420px;
}

.content-main {
  flex: 1;
}

.slide-indicators {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slide-indicators li {
  display: flex;
  justify-content: start;
}

.content-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  height: 80%;
}

/* =======================
   Breakpoints
   ======================= */
@media (max-width: 900px) {
  .engine-panel-title {
    font-size: 2.2em;
  }
  .tool-gear span {
    font-size: 0.7rem;
  }
  .engine-processes-inner {
    gap: 16px;
  }
  .process-step,
  .process-step--2 {
    width: 100%;
    margin-left: 0;
  }
  .process-step__content {
    font-size: 0.85rem;
  }
  /* Talento responsive */
  .engine-panel-right.show-talent {
    background-image: none;
  }
  .engine-talent {
    align-items: flex-start;
    padding-top: 20px;
  }
  .engine-talent-circles {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .talent-item {
    flex-direction: row;
    align-items: center;
  }
  .talent-stick {
    display: none;
    /* más simple en móvil */
  }
  .talent-circle {
    width: 100%;
    max-width: 260px;
    height: auto;
    min-height: 120px;
    border-radius: 999px;
    margin: 0;
  }
  .engine-talent-baseline {
    display: none;
  }
}
/* 📱 Mobile: panel derecho full screen y de abajo hacia arriba */
@media (max-width: 768px) {
  .carousel-container {
    flex-direction: column;
    height: 90vh;
    width: auto;
  }
  .content-area,
  .wheel-area {
    width: 100%;
  }
  /* Molino arriba, contenido abajo (ajustable) */
  .wheel-area {
    order: 2;
    justify-content: center;
    background: var(--wheel-area-bg);
  }
  .content-area {
    order: 2;
    padding: 20px;
    height: 100%;
    position: static;
  }
  .content-area.shift-left {
    transform: none;
  }
  .wheel-band.shift-left {
    transform: none;
  }
  /* 🔸 Panel engine como overlay pantalla completa */
  .engine-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #fdf8f2;
    transform: translateY(100%);
    transition: transform 0.6s ease;
    z-index: 50;
    pointer-events: none;
  }
  .engine-panel.visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .engine-panel-right {
    width: 100%;
    height: 600px;
    padding: 20px 20px 10px 10px;
    box-shadow: none;
    overflow-y: auto;
    background: #fdf8f2;
  }
  .engine-panel-header {
    justify-content: space-between;
  }
  .engine-panel-title {
    font-size: 32px !important;
  }
  .engine-bottom-nav {
    position: sticky;
    bottom: 0;
    background: none;
    padding: 0px;
  }
  .engine-prev-btn,
  .engine-next-btn {
    width: 48%;
    text-align: center;
  }
  .slide-indicators {
    display: none;
  }
  .content-cta {
    justify-content: center;
    align-self: center !important;
  }
  .navigation-buttons {
    position: relative;
    left: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 280px;
    transition: opacity 0.3s ease;
    /* Estado normal: giramos cada botón */
  }
  .navigation-buttons button {
    width: 53px;
  }
  .navigation-buttons .nav-up {
    transform: rotate(-90deg);
    /* ↑ se ve como ← */
  }
  .navigation-buttons .nav-up:not(:disabled):hover {
    transform: translateY(-1px) rotate(-90deg);
  }
  .navigation-buttons .nav-down {
    transform: rotate(-90deg);
    /* ↓ se ve como → */
  }
  .navigation-buttons .nav-down:not(:disabled):hover {
    transform: translateY(-1px) rotate(-90deg);
  }
  wheel-band {
    box-shadow: none;
  }
  .content-wrapper h2 {
    text-align: center;
    font-size: 24px;
    max-width: 100%;
  }
  .content-main p {
    text-align: center;
  }
  .content-main h2 {
    margin: 0px;
    padding: 0px;
  }
  .internal-engine-button {
    width: 100%;
    text-align: center;
  }
  .tool-list {
    align-items: center;
    justify-content: center;
  }
  .tool-list .tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .tool-list-description {
    text-align: center;
  }
  .tool-list-description p {
    max-width: 100%;
    text-align: center;
  }
  .content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #wheel-asset {
    z-index: 0;
  }
  .wheel-asset-container {
    top: 115%;
  }
  .wheel-band {
    background: none;
    z-index: 0;
  }
  .content-area h2 {
    margin: 20px 0px 0px 0px;
  }
  /* 1. Ocultar el palo del último ítem */
  .talent-item:last-child .talent-stick {
    display: none;
    visibility: hidden;
  }
  /* 2. Quitar el margen negativo al último ítem */
  .talent-item:not(:last-child) {
    margin-bottom: -30px;
  }
  .talent-item {
    display: flex;
    flex-direction: column;
  }
  .talent-stick {
    display: block;
  }
  .engine-panel-right.show-processes {
    background-image: none !important;
  }
}
@media (max-width: 768px) {
  .engine-panel-header {
    justify-content: space-between;
    flex-direction: column;
  }
  .engine-panel-right.show-tools {
    background-image: url("/wp-content/uploads/2025/12/tuercas-grises-juntas.webp") !important;
    background-size: 150% auto;
    background-repeat: no-repeat;
    background-position: center;
  }
  .engine-tools-wrapper {
    margin-top: 0px;
  }
  .tools-bg-gear {
    display: none;
  }
  .tool-gear--descriptiva {
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .tool-gear--prescriptiva {
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tool-gear--prescriptiva img {
    width: 80px;
  }
  .tool-gear--prescriptiva .tool-label {
    display: flex;
    background: #A42EA2;
    color: #fff;
    gap: 5px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
  }
  .tool-gear--predictiva {
    top: 0;
    left: 0;
  }
  .tool-gear--predictiva img {
    width: 80px;
  }
  .tool-gear--predictiva .tool-label {
    display: flex;
    background: #F47836;
    color: #fff;
    gap: 5px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
  }
  .tool-gear {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateX(-70px) scale(0.8);
    font-family: "Avenir Next Bold", Sans-serif;
  }
  .tool-gear span,
  .tool-gear strong {
    font-size: 14px;
  }
  .tool-gear--descriptiva .tool-label {
    display: flex;
    background: #F45656;
    color: #fff;
    gap: 5px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
  }
  .engine-tools-layout {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }
  .engine-panel-header {
    display: block;
  }
  .engine-panel-title {
    text-align: center;
  }
  .engine-panel-right.show-talent {
    background-image: none !important;
  }
  .engine-talent-circles {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .talent-circle {
    width: 135px;
    height: 130px;
    border-radius: 999px;
  }
  .talent-circle span {
    font-size: 11.5px;
  }
  .engine-prev-btn,
  .engine-next-btn {
    font-size: 12px;
  }
  .engine-talent {
    padding-top: 10px;
  }
  .talent-item:nth-child(2) .talent-stick {
    height: 35px;
  }
  html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
    overflow-y: hidden;
  }
}
@media (max-width: 992px) {
  .content-inner {
    gap: 15px;
    height: auto;
  }
  .internal-engine-button {
    margin: 0 !important;
  }
}
@media (max-width: 992px) {
  .title-slide-0 h2 {
    font-size: 20px !important;
    line-height: 22px !important;
    margin-bottom: 10px;
  }
  .title-slide-0 p {
    font-size: 14px !important;
    line-height: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .content-area {
    padding: 0 8% 70px 0%;
  }
  .navigation-buttons {
    left: -100px !important;
  }
  .navigation-buttons button {
    width: 40px;
    height: 30px;
  }
  #wheel-asset {
    width: 245px;
  }
  .engine-panel-title {
    font-size: 40px !important;
    margin-top: 18px !important;
  }
  .engine-tools-wrapper {
    margin-top: 0px !important;
  }
  .engine-panel-right.show-processes {
    padding: 40px 60px 40px 100px;
  }
  .engine-talent-circles {
    align-items: center !important;
  }
  .talent-item:not(:last-child) {
    margin-bottom: -30px;
  }
  .talent-item {
    display: flex;
    flex-direction: column;
  }
  .talent-circle {
    width: 140px;
    height: 140px;
    border-radius: 999px;
  }
  .talent-stick {
    display: block;
  }
  .talent-item:last-child .talent-stick {
    display: none;
    visibility: hidden;
  }
  .engine-talent {
    padding-top: 0px;
  }
  .talent-circle span {
    font-size: 12px;
  }
  .engine-bottom-nav {
    margin-top: 0px;
  }
  .slide-molino-title h2 {
    font-size: 48px;
    line-height: 54px;
  }
  .engine-tools-layout {
    aspect-ratio: 10/9;
  }
}
.auto-diagnostico-button {
  padding: 10px 25px;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
  transition: background 0.2s, color 0.2s, transform 0.1s, box-shadow 0.2s;
  z-index: 1;
  font-family: "Avenir Next Bold", Sans-serif;
}
.auto-diagnostico-button:hover {
  background: #fff;
  color: var(--primary-red);
}

@media (min-width: 1300px) {
  .content-inner {
    height: auto;
  }
}
.carousel-container:has(.engine-panel.visible) .auto-diagnostico-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
}

/*# sourceMappingURL=profit-scaling-widget.css.map */
