/* Estilos principales, sistema visual y componentes de la landing YatiSoft. */
:root {
  --color-primary: #0878c9;
  --color-primary-hover: #066eb9;
  --color-primary-rgb: 8, 120, 201;
  --color-primary-dark: #073b66;
  --color-primary-dark-rgb: 7, 59, 102;
  --color-primary-deep: #052d4d;
  --color-secondary: #f47a32;
  --color-accent: #ffc83d;
  --color-danger: #e53935;
  --color-background-soft: #eaf7fc;
  --color-background: #fff;
  --color-surface: #f7fafc;
  --color-text: #17212b;
  --color-text-muted: #5f6b76;
  --color-border: #d8e4eb;
  --color-hero-title: #fff8f0;
  --color-hero-highlight: #ffb45c;
  --color-hero-accent: #ffd06a;
  --shadow-sm: 0 10px 30px rgba(var(--color-primary-dark-rgb), 0.09);
  --shadow-lg: 0 30px 80px rgba(var(--color-primary-dark-rgb), 0.18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --container: 1240px;
  --header-height: 72px;
  --font-heading: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

html,
body {
  overflow-x: clip;
}

/* Identidad cromática del área educativa. */
.education-page {
  --color-primary: #f28a4b;
  --color-primary-hover: #e97432;
  --color-primary-rgb: 242, 138, 75;
  --color-primary-dark: #273b50;
  --color-primary-dark-rgb: 39, 59, 80;
  --color-primary-deep: #1e3042;
  --color-secondary: #7fa9c5;
  --color-accent: #ffd98a;
  --color-background-soft: #fff3ea;
  --color-background: #fffaf6;
  --color-surface: #fff6ef;
  --color-text: #26384a;
  --color-text-muted: #66788a;
  --color-border: #f1d3c1;
  --color-hero-title: #fffaf6;
  --color-hero-highlight: #ffc17f;
  --color-hero-accent: #ffe0a3;
  --shadow-sm: 0 10px 30px rgba(var(--color-primary-dark-rgb), 0.1);
  --shadow-lg: 0 30px 80px rgba(var(--color-primary-dark-rgb), 0.2);
}

/* Identidad cromática del área comercial. */
.sales-page {
  --color-primary: #2f8878;
  --color-primary-hover: #267264;
  --color-primary-rgb: 47, 136, 120;
  --color-primary-dark: #193c38;
  --color-primary-dark-rgb: 25, 60, 56;
  --color-primary-deep: #102825;
  --color-secondary: #7563a9;
  --color-accent: #ffd166;
  --color-background-soft: #edf8f3;
  --color-background: #fbfdfc;
  --color-surface: #f5faf7;
  --color-text: #243431;
  --color-text-muted: #60706c;
  --color-border: #d4e5de;
  --shadow-sm: 0 10px 30px rgba(var(--color-primary-dark-rgb), 0.1);
  --shadow-lg: 0 30px 80px rgba(var(--color-primary-dark-rgb), 0.2);
}

/* Identidad cromática del área de patentes. */
.patents-page {
  --color-primary: #8f79bd;
  --color-primary-hover: #7862a6;
  --color-primary-rgb: 143, 121, 189;
  --color-primary-dark: #44375f;
  --color-primary-dark-rgb: 68, 55, 95;
  --color-primary-deep: #2e2542;
  --color-secondary: #c49bc4;
  --color-accent: #eadcf5;
  --color-background-soft: #f5f0fa;
  --color-background: #fdfbff;
  --color-surface: #faf7fc;
  --color-text: #332c3e;
  --color-text-muted: #6e6679;
  --color-border: #e2d8eb;
  --shadow-sm: 0 10px 30px rgba(var(--color-primary-dark-rgb), 0.1);
  --shadow-lg: 0 30px 80px rgba(var(--color-primary-dark-rgb), 0.18);
}

/* Identidad cromática de Yati-Bots. */
.bots-page {
  --color-primary: #f3c52b;
  --color-primary-hover: #ddb018;
  --color-primary-rgb: 243, 197, 43;
  --color-primary-dark: #242526;
  --color-primary-dark-rgb: 36, 37, 38;
  --color-primary-deep: #131415;
  --color-secondary: #f26b38;
  --color-accent: #ffe36e;
  --color-background-soft: #fff8dc;
  --color-background: #fffef8;
  --color-surface: #fffbeb;
  --color-text: #2d3032;
  --color-text-muted: #686b6d;
  --color-border: #e8dfbd;
  --shadow-sm: 0 10px 30px rgba(var(--color-primary-dark-rgb), .11);
  --shadow-lg: 0 30px 80px rgba(var(--color-primary-dark-rgb), .2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  /* Cada sección declara el offset exacto de su marco; sumar ambos desplazaba dos veces. */
  scroll-padding-top: 0;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}

/* Prueba de firma visual 3D aplicada únicamente a la portada corporativa. */
.corporate-page {
  --corporate-frame-gap: 12px;
  --corporate-frame-matte: white;
  --corporate-hero-background: linear-gradient(135deg, #052d4d 0%, #073b66 46%, #075d94 100%);
  padding: var(--corporate-frame-gap);
  background:
    radial-gradient(circle at 8% 0%, rgba(80, 183, 236, .25), transparent 25%),
    linear-gradient(145deg, #f2f9fd, #e1ebf2);
}
.corporate-page::before {
  position: fixed;
  inset: var(--corporate-frame-gap);
  z-index: 999;
  border: 1px solid #50b7ec;
  border-radius: 22px;
  pointer-events: none;
  box-shadow:
    0 0 0 1px #187db8,
    0 0 28px rgba(80, 183, 236, .22),
    0 0 0 100vmax var(--corporate-frame-matte);
  content: "";
}
.corporate-page::after {
  content: none;
}
.corporate-page section[id] {
  scroll-margin-top: calc(var(--header-height) + var(--corporate-frame-gap) + 8px);
}

/* Marco compartido de las landings: exterior blanco y línea del color del área. */
.area-page-frame {
  --area-frame-gap: 12px;
  --area-header-offset: 8px;
  padding: var(--area-frame-gap);
}
.area-page-frame::before {
  position: fixed;
  inset: var(--area-frame-gap);
  z-index: 999;
  border: 1px solid var(--color-primary);
  border-radius: 22px;
  pointer-events: none;
  box-shadow:
    0 0 18px rgba(var(--color-primary-rgb), .16),
    0 0 0 100vmax #fff;
  content: "";
}
.area-page-frame .site-header {
  inset: calc(var(--area-frame-gap) + var(--area-header-offset));
  bottom: auto;
  border-radius: 20px;
}
.area-page-frame .site-header.is-scrolled {
  border-radius: 20px;
}
.area-page-frame section[id] {
  scroll-margin-top: calc(var(--header-height) + var(--area-frame-gap) + var(--area-header-offset));
}
.mobile-viewport-frame {
  display: none;
}
.education-page.area-page-frame .hero,
.sales-page.area-page-frame .sales-hero,
.patents-page.area-page-frame .patent-hero,
.bots-page.area-page-frame .bots-hero {
  margin-top: calc(var(--header-height) + var(--area-header-offset));
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.9rem, 5vw, 5.35rem);
}
h2 {
  font-size: clamp(2.2rem, 3.9vw, 4.2rem);
}
h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
}
p {
  color: var(--color-text-muted);
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section {
  padding: clamp(72px, 8vw, 118px) 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 10px;
  color: #fff;
  background: var(--color-primary-dark);
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 3px;
  border-radius: 4px;
  background: currentColor;
  content: "";
}
.eyebrow--light {
  color: var(--color-accent);
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  color: #fff;
  background: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(var(--color-primary-rgb), 0.24);
  background: var(--color-primary-hover);
}
.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}
.button--small {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.74rem;
}
.button--secondary {
  color: var(--color-primary-dark);
  border-color: var(--color-border);
  background: #fff;
}
.button--secondary:hover {
  background: var(--color-background-soft);
  box-shadow: var(--shadow-sm);
}
.button--dark {
  color: #fff;
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}
.button--light {
  color: var(--color-primary-dark);
  border-color: #fff;
  background: #fff;
}
.button--accent {
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  background: var(--color-accent);
}
.section-heading {
  max-width: 850px;
  margin-bottom: clamp(45px, 6vw, 75px);
}
.section-heading h2 {
  margin-bottom: 24px;
}
.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}
.section-heading--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.section-heading--row > div {
  max-width: 760px;
}
.section-heading--row p {
  max-width: 350px;
  padding-bottom: 13px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition:
    border-radius 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.corporate-page .site-header {
  inset: calc(var(--corporate-frame-gap) + 8px) calc(var(--corporate-frame-gap) + 8px) auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(5, 45, 77, .12);
  transition:
    inset 0.25s ease,
    border-radius 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.is-scrolled {
  height: var(--header-height);
  border-color: rgba(var(--color-primary-dark-rgb), 0.08);
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(var(--color-primary-dark-rgb), 0.08);
}
.corporate-page .site-header.is-scrolled {
  border-color: rgba(var(--color-primary-dark-rgb), .08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(5, 45, 77, .16);
}
.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 700;
}
.brand__mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 11px 11px 11px 4px;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 4px 4px 0 var(--color-accent);
}
.brand__logo {
  display: block;
  width: 156px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}
.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(13px, 1.5vw, 22px);
}
.main-nav a {
  position: relative;
  padding: 7px 9px;
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 3px;
  background: var(--color-secondary);
  content: "";
  transition: transform 0.2s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--color-text);
}
.main-nav a.is-active {
  background: rgba(var(--color-primary-rgb), 0.13);
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}
.header-cta {
  margin-left: 4px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--color-background-soft);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--color-primary-dark);
  transition: 0.25s ease;
}

/* Hero de portada con imagen o video a pantalla completa. */
.hero {
  position: relative;
  height: clamp(640px, calc(100svh - var(--header-height)), 820px);
  margin-top: var(--header-height);
  padding: clamp(54px, 7vw, 90px) 0 72px;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary-dark);
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  content: "";
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding-bottom: clamp(70px, 10vh, 120px);
  align-items: center;
}
.hero__content {
  max-width: 790px;
}
.hero__content .eyebrow {
  color: var(--color-hero-accent);
}
.hero__content h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--color-hero-title);
  text-shadow: 0 3px 18px rgba(5, 45, 77, 0.55);
}
.hero__content h1 span {
  position: relative;
  color: var(--color-hero-highlight);
  text-shadow:
    0 3px 16px rgba(5, 45, 77, 0.7),
    0 1px 2px rgba(5, 45, 77, 0.9);
}
.hero__content h1 span::after {
  position: absolute;
  right: 1%;
  bottom: -7px;
  left: 1%;
  height: 8px;
  border-radius: 50%;
  background: var(--color-hero-accent);
  content: "";
  opacity: 0.85;
}
.hero__content > p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  text-shadow: 0 3px 18px rgba(5, 45, 77, 0.55);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.hero__note {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
}
.hero__note span {
  color: var(--color-hero-accent);
}
.orbit-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(var(--color-primary-dark-rgb), 0.1);
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 800;
}
/* Franja */
.statement {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
}
.statement::before,
.statement::after {
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}
.statement::before {
  top: -75px;
  left: 5%;
}
.statement::after {
  right: 4%;
  bottom: -90px;
}
.statement .container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.statement p {
  max-width: 1080px;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.statement em {
  color: var(--color-accent);
  font-style: normal;
}

/* Misión y visión */
.purpose {
  padding: clamp(72px, 8vw, 112px) 0;
  background: var(--color-background-soft);
}
.purpose__heading {
  display: grid;
  margin-bottom: 38px;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 36px;
}
.purpose__heading .eyebrow {
  margin: 0;
}
.purpose__heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(2rem, 3.3vw, 3.45rem);
}
.purpose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.purpose-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-md);
}
.purpose-card__label {
  display: flex;
  margin-bottom: 70px;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}
.purpose-card__label i {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-style: normal;
}
.purpose-card p {
  margin: 0;
  font-size: clamp(0.96rem, 1.35vw, 1.1rem);
  line-height: 1.7;
}
.purpose-card--mission {
  border: 1px solid rgba(var(--color-primary-rgb), 0.18);
  background: #fff;
}
.purpose-card--mission .purpose-card__label {
  color: var(--color-primary);
}
.purpose-card--mission .purpose-card__label i {
  color: #fff;
  background: var(--color-primary);
}
.purpose-card--vision {
  color: #fff;
  background: var(--color-primary-dark);
}
.purpose-card--vision .purpose-card__label {
  color: var(--color-accent);
}
.purpose-card--vision .purpose-card__label i {
  color: var(--color-primary-dark);
  background: var(--color-accent);
}
.purpose-card--vision p {
  color: rgba(255, 255, 255, 0.82);
}

/* Producto */
.product {
  background: #fff;
}
.product-stage {
  position: relative;
  width: min(100%, 1000px);
  margin-inline: auto;
  padding: 40px 100px;
}
.media-placeholder {
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-background-soft);
  box-shadow: var(--shadow-sm);
}
.media-placeholder img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
}
.media-placeholder--robot {
  width: 60%;
  min-height: 306px;
  margin-inline: auto;
}
.media-placeholder--robot img {
  height: 306px;
}
.orbit-label i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.orbit-label--one {
  top: 6%;
  left: 16%;
}
.orbit-label--two {
  top: 24%;
  right: 15%;
}
.orbit-label--three {
  bottom: 17%;
  left: 15%;
}
.orbit-label--four {
  right: 17%;
  bottom: 5%;
}

/* Proceso */
.process {
  color: #fff;
  background: var(--color-primary-dark);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.11);
}
.step-card__number {
  display: block;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
}
.step-card__icon {
  position: absolute;
  top: 26px;
  right: 24px;
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: var(--color-accent);
  font-weight: 800;
}
.step-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.65rem;
}
.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

/* Historia */
.story {
  position: relative;
  overflow: hidden;
  background: var(--color-accent);
}
.story__shape {
  position: absolute;
  right: -7%;
  bottom: -55%;
  width: 520px;
  aspect-ratio: 1;
  border: 90px solid rgba(244, 122, 50, 0.28);
  border-radius: 50%;
}
.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}
.story__content h2 {
  max-width: 650px;
  color: var(--color-primary-dark);
}
.story__content p {
  max-width: 590px;
  margin-bottom: 30px;
  color: #3b4650;
  font-size: 1.08rem;
}
.book-visual {
  position: relative;
  padding: 30px 50px;
}
.book-visual__card {
  min-height: 480px;
  transform: rotate(4deg);
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 12px 30px 30px 12px;
  background: var(--color-secondary);
  box-shadow: 20px 26px 0 rgba(var(--color-primary-dark-rgb), 0.16);
}
.book-visual__card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.book-visual__badge {
  position: absolute;
  right: 0;
  bottom: 10%;
  padding: 14px 20px;
  transform: rotate(-5deg);
  border-radius: 999px;
  color: #fff;
  background: var(--color-primary-dark);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

/* Carrusel */
.kit-elements {
  background: var(--color-surface);
}
.carousel__viewport {
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  cursor: grab;
}
.carousel__viewport.is-dragging {
  cursor: grabbing;
}
.carousel__track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.22, 0.75, 0.25, 1);
  will-change: transform;
}
.product-card {
  flex: 0 0 calc((100% - 44px) / 3);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 35px rgba(var(--color-primary-dark-rgb), 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.product-card__media {
  min-height: 260px;
  overflow: hidden;
  color: #fff;
}
.product-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.035);
}
.product-card__media--blue {
  background: var(--color-primary);
}
.product-card__media--orange {
  background: var(--color-secondary);
}
.product-card__media--yellow {
  color: var(--color-primary-dark);
  background: var(--color-accent);
}
.product-card__media--sky {
  background: #22a4c6;
}
.product-card__media--navy {
  background: var(--color-primary-dark);
}
.product-card__media--coral {
  background: #df5854;
}
.product-card__body {
  position: relative;
  padding: 28px;
}
.product-card__index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #91a0ac;
  font-size: 0.72rem;
  font-weight: 800;
}
.product-card h3 {
  margin: 0 40px 13px 0;
}
.product-card p {
  min-height: 52px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.product-card a,
.text-link {
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 800;
}
.product-card a span,
.text-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}
.product-card a:hover span,
.text-link:hover span {
  transform: translateX(5px);
}
.carousel__controls {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.carousel__buttons {
  display: flex;
  gap: 10px;
}
.carousel__button {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}
.carousel__button:hover:not(:disabled) {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.carousel__button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}
.carousel__status {
  display: flex;
  width: min(360px, 55%);
  align-items: center;
  gap: 18px;
}
.carousel__progress {
  flex: 1;
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-border);
}
.carousel__progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  transform-origin: left;
  background: var(--color-primary);
  transition: width 0.35s ease;
}
.carousel__status output {
  min-width: 52px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Aprendizaje */
.learning {
  background: #fff;
}
.learning__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.skill-card {
  min-height: 185px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.skill-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}
.skill-card > span {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-background-soft);
  font-size: 0.72rem;
  font-weight: 800;
}
.skill-card h3 {
  margin-bottom: 12px;
}
.skill-card p {
  margin: 0;
  font-size: 0.9rem;
}
.skill-card--feature {
  grid-row: auto;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(
    145deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}
.skill-card--feature > span {
  margin-bottom: 24px;
  color: var(--color-primary-dark);
  background: var(--color-accent);
}
.skill-card--feature h3 {
  font-size: 1.55rem;
}
.skill-card--feature p {
  color: rgba(255, 255, 255, 0.76);
}

/* Artículos destacados */
.latest-posts {
  background: var(--color-surface);
}
.latest-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.blog-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.blog-card__body {
  padding: 25px;
}
.blog-card__body > span {
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card h3 {
  margin: 10px 0 14px;
  color: var(--color-primary-dark);
}
.blog-card p {
  margin: 0;
  font-size: 0.82rem;
}
.latest-posts__action {
  display: flex;
  margin-top: 30px;
  justify-content: flex-end;
}

/* Públicos */
.audiences {
  padding-top: 20px;
}
.audiences__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.audience-card {
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.audience-card__body {
  padding: clamp(35px, 5vw, 64px);
}
.audience-card__body h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
}
.audience-card__body p {
  max-width: 520px;
  margin-bottom: 28px;
}
.audience-card--family {
  display: grid;
  grid-template-rows: 1.05fr 0.95fr;
  border: 1px solid var(--color-border);
  background: var(--color-background-soft);
}
.audience-card__visual {
  min-height: 300px;
  overflow: hidden;
  background: var(--color-background-soft);
}
.audience-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.audience-card--school {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--color-primary-dark);
}
.audience-card--school h2,
.audience-card--school p {
  color: #fff;
}
.audience-card__pattern {
  display: grid;
  height: 220px;
  place-items: center;
  overflow: hidden;
  background: var(--color-primary);
}
.audience-card__pattern span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 15rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}

/* Kit destacado */
.featured-kit {
  background: var(--color-background-soft);
}
.featured-kit__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.featured-kit__visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--color-primary), #0da0d0);
  transition: background 0.35s ease;
}
.featured-kit__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-kit__visual.is-separate {
  background: linear-gradient(145deg, var(--color-secondary), #e85442);
}
.featured-kit__visual strong {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}
.featured-kit__visual small {
  opacity: 0.8;
}
.featured-kit__mode-label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.featured-kit__content {
  padding: clamp(40px, 6vw, 78px);
}
.featured-kit__content h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 3.35vw, 3.65rem);
}
.mode-selector {
  display: inline-flex;
  margin: 18px 0 25px;
  padding: 5px;
  border-radius: 999px;
  background: var(--color-background-soft);
}
.mode-selector__button {
  padding: 11px 17px;
  border: 0;
  border-radius: 999px;
  color: var(--color-text-muted);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}
.mode-selector__button.is-active {
  color: #fff;
  background: var(--color-primary-dark);
}
.feature-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.feature-list li::before {
  position: absolute;
  top: 16px;
  left: 3px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  content: "";
}
.featured-kit__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

/* CTA y footer */
.final-cta {
  position: relative;
  padding: clamp(105px, 12vw, 170px) 0;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
}
.final-cta::before {
  position: absolute;
  top: -15%;
  left: -7%;
  width: 330px;
  aspect-ratio: 1;
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}
.final-cta__inner {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
}
.final-cta p {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}
.final-cta__orbit {
  position: absolute;
  right: -6%;
  bottom: -45%;
  width: 480px;
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 200, 61, 0.45);
  border-radius: 50%;
}
.site-footer {
  padding: 80px 0 25px;
  color: #fff;
  background: var(--color-primary-deep);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 45px;
  padding-bottom: 65px;
}
.brand--footer {
  margin-bottom: 22px;
  color: #fff;
}
.site-footer__brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}
.social-links {
  display: flex;
  gap: 9px;
}
.social-links a {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.social-links a:hover {
  color: var(--color-primary-dark);
  background: var(--color-accent);
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-column h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.footer-column a:hover {
  color: var(--color-accent);
}
.site-footer__bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}
.site-footer__bottom div {
  display: flex;
  gap: 22px;
}

/* Valores de Yati-Edu */
.brand-values {
  background: #fff;
}
.brand-values__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.brand-value {
  position: relative;
  min-height: 235px;
  padding: clamp(26px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.brand-value::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  aspect-ratio: 1;
  border: 30px solid rgba(var(--color-primary-rgb), 0.08);
  border-radius: 50%;
  content: "";
}
.brand-value__number {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.brand-value h3 {
  max-width: 430px;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}
.brand-value p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
}
.brand-value--purpose {
  border-color: transparent;
  background: #fff4da;
}
.brand-value--support {
  border-color: transparent;
  background: var(--color-background-soft);
}
.brand-value--access {
  color: #fff;
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}
.brand-value--access .brand-value__number,
.brand-value--access h3 {
  color: var(--color-accent);
}
.brand-value--access p {
  color: rgba(255, 255, 255, 0.78);
}
.brand-value--access::after {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Portada corporativa */
.corporate-page {
  background: var(--corporate-hero-background);
}
.corporate-hero {
  position: relative;
  height: clamp(600px, calc(100svh - var(--header-height) - 8px), 1100px);
  min-height: 0;
  margin-top: calc(var(--header-height) + 8px);
  padding: clamp(48px, 7vh, 82px) 0;
  overflow: hidden;
  color: #fff;
  background: var(--corporate-hero-background);
}
.corporate-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.corporate-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.corporate-hero__glow--one {
  top: -180px;
  right: -100px;
  width: 560px;
  aspect-ratio: 1;
  background: rgba(var(--color-primary-rgb), 0.32);
}
.corporate-hero__glow--two {
  bottom: -260px;
  left: 25%;
  width: 520px;
  aspect-ratio: 1;
  background: rgba(244, 122, 50, 0.15);
}
.corporate-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(45px, 8vw, 115px);
}
.corporate-hero__content h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
}
.corporate-hero__content h1 span {
  color: var(--color-accent);
}
.corporate-hero__content > p {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}
.corporate-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.corporate-button--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}
.corporate-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}
.corporate-hero__visual {
  position: relative;
  display: grid;
  width: min(100%, clamp(330px, 46svh, 500px));
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
}
.corporate-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}
.corporate-orbit::after {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 24px rgba(255, 200, 61, 0.8);
  content: "";
}
.corporate-orbit--outer {
  inset: 2%;
  animation: gentle-spin 24s linear infinite;
}
.corporate-orbit--inner {
  inset: 18%;
  border-style: dashed;
  animation: gentle-spin 18s linear infinite reverse;
}
.corporate-orbit--inner::after {
  top: auto;
  right: 11%;
  bottom: 5%;
  left: auto;
  background: var(--color-secondary);
}
.corporate-hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(54%, 220px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38% 62% 55% 45% / 45% 42% 58% 55%;
  background: #f1f5f7;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%) rotate(-4deg);
}
.corporate-hero__mark img {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: rotate(4deg);
}
.corporate-tag {
  position: absolute;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 45, 77, 0.82);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.corporate-tag--ideas {
  top: 13%;
  left: 4%;
}
.corporate-tag--technology {
  top: 36%;
  right: -3%;
}
.corporate-tag--impact {
  bottom: 12%;
  left: 11%;
}
.company-intro {
  padding: clamp(80px, 9vw, 130px) 0;
  background: #fff;
}
.company-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
}
.company-intro__heading h2 {
  max-width: 600px;
  margin: 0;
  color: var(--color-primary-dark);
}
.company-intro__copy {
  padding-top: 32px;
}
.company-intro__copy p {
  max-width: 650px;
  font-size: 1.05rem;
}
.company-intro__copy .company-intro__lead {
  margin-bottom: 22px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}
.company-areas {
  background: #f2f8fb;
}
.company-areas__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
}
.area-card {
  display: grid;
  min-height: 400px;
  padding: clamp(32px, 4vw, 54px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  border-radius: 34px;
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.area-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 38px 90px rgba(var(--color-primary-dark-rgb), 0.24);
}
.area-card + .area-card {
  margin-top: 0;
}
.area-card--education {
  color: #26384a;
  border: 1px solid #f0ad82;
  background: #f5a06b;
  box-shadow: 0 30px 80px rgba(242, 138, 75, 0.27);
}
.area-card--education:hover {
  box-shadow: 0 38px 90px rgba(242, 138, 75, 0.38);
}
.area-card--education .area-card__name {
  color: #a94c1f;
}
.area-card.area-card--education h3 {
  color: #26384a;
}
.area-card.area-card--education p {
  color: #455a70;
}
.area-card--education .area-card__link {
  color: #294f70;
}
.area-card--education .area-card__image-wrap {
  box-shadow: 20px 28px 0 rgba(127, 169, 197, 0.24);
}
.area-card--education .area-card__visual > span {
  color: #294f70;
  background: #fff2e8;
}
.area-card--education .area-card__visual > span:nth-of-type(2) {
  color: #26384a;
  background: #dcecf6;
}
.area-card--education .area-card__visual > span:nth-of-type(3) {
  color: #294f70;
  background: #ffe4aa;
}
.area-card--sales {
  background: #193c38;
}
.area-card--sales .area-card__name {
  color: #79c7b4;
}
.area-card--sales .area-card__image-wrap {
  box-shadow: 20px 28px 0 rgba(255, 209, 102, 0.2);
}
.area-card--sales .area-card__visual > span {
  color: #193c38;
  background: #ffd166;
}
.area-card--sales .area-card__visual > span:nth-of-type(3) {
  color: #fff;
  background: #7563a9;
}
.area-card--patents {
  background: #44375f;
}
.area-card--patents .area-card__name {
  color: #d9c4ee;
}
.area-card--patents .area-card__link {
  color: #eadcf5;
}
.area-card--patents .area-card__visual > span {
  color: #44375f;
  background: #eadcf5;
}
.area-card--patents .area-card__visual > span:nth-of-type(2) {
  color: #fff;
  background: #9c78a5;
}
.area-card--patents .area-card__visual > span:nth-of-type(3) {
  color: #44375f;
  background: #d6c7e8;
}
.patent-card-visual {
  position: absolute;
  inset: 8% 9%;
  display: flex;
  padding: 28px;
  flex-direction: column;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: #faf7fc;
  transform: rotate(3deg);
  box-shadow: 20px 28px 0 rgba(234, 220, 245, 0.17);
}
.patent-card-visual__label {
  margin-bottom: auto;
  color: #8f79bd;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.patent-card-visual strong {
  margin-bottom: 15px;
  color: #44375f;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}
.patent-card-visual i {
  display: block;
  width: 100%;
  height: 7px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #e5deec;
}
.patent-card-visual i:nth-of-type(2) { width: 82%; }
.patent-card-visual i:nth-of-type(3) { width: 62%; }
.patent-card-visual b {
  margin-top: 17px;
  color: #9c78a5;
  font-size: 0.65rem;
}
.area-card--bots { background: #242526; }
.area-card--bots .area-card__name { color: #ffe36e; }
.area-card--bots .area-card__link { color: #f3c52b; }
.area-card--bots .area-card__visual > span { color: #242526; background: #f3c52b; }
.area-card--bots .area-card__visual > span:nth-of-type(2) { color: #fff; background: #f26b38; }
.area-card--bots .area-card__visual > span:nth-of-type(3) { background: #ffe989; }
.area-card--bots .area-card__image-wrap { box-shadow: 20px 28px 0 rgba(243, 197, 43, .2); }
.area-card--bots .area-card__image-wrap img { object-position: 52% center; }
.area-card__number {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.area-card__name {
  display: block;
  margin-bottom: 12px;
  color: #70c8f1;
  font-family: var(--font-heading);
  font-size: clamp(3.0rem, 1.5vw, 1.35rem);
  font-weight: 700;
}
.area-card h3 {
  max-width: 650px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(1.7rem, 2.1vw, 2.3rem);
}
.area-card p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}
.area-card__link {
  display: inline-flex;
  margin-top: 10px;
  align-items: center;
  gap: 12px;
  color: var(--color-accent);
  font-weight: 800;
}
.area-card__link i {
  font-size: 1.25rem;
  font-style: normal;
  transition: transform 0.25s ease;
}
.area-card:hover .area-card__link i {
  transform: translateX(6px);
}
.area-card__visual {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
}
.area-card__image-wrap {
  position: absolute;
  inset: 6% 8%;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  transform: rotate(4deg);
  box-shadow: 20px 28px 0 rgba(var(--color-primary-rgb), 0.26);
}
.area-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-card__visual > span {
  position: absolute;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 800;
}
.area-card__visual > span:nth-of-type(1) {
  top: 3%;
  left: 0;
}
.area-card__visual > span:nth-of-type(2) {
  top: 43%;
  right: 0;
}
.area-card__visual > span:nth-of-type(3) {
  bottom: 2%;
  left: 10%;
}
.areas-growth {
  display: flex;
  width: min(100%, 760px);
  margin: 36px auto 0;
  align-items: center;
  gap: 20px;
  text-align: left;
}
.areas-growth__icon {
  display: grid;
  width: 48px;
  flex: 0 0 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px dashed var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.5rem;
}
.areas-growth p {
  margin: 0;
}
.areas-growth strong {
  color: var(--color-primary-dark);
}
.contact-section {
  background: #fff;
}
.contact-section__heading {
  display: grid;
  margin-bottom: clamp(45px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(35px, 7vw, 100px);
}
.contact-section__heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--color-primary-dark);
}
.contact-section__heading > p {
  max-width: 500px;
  margin: 0 0 8px;
  font-size: 1rem;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-card {
  display: flex;
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 40px);
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 17px 17px 17px 6px;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 5px 5px 0 rgba(255, 200, 61, 0.75);
}
.contact-card__body {
  margin-bottom: 28px;
}
.contact-card__label {
  display: block;
  margin-bottom: 7px;
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.contact-card h3 {
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  font-size: 1.65rem;
}
.contact-card p {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.contact-card__status {
  margin-top: auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: #7a5a05;
  background: #fff1c4;
  font-size: 0.65rem;
  font-weight: 800;
}
.contact-card[data-contact-type="whatsapp"] .contact-card__icon {
  background: #17885b;
}
.corporate-footer .site-footer__top {
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

/* Ajustes de componentes para evitar restos azules dentro de Yati-Edu. */
.education-page .site-header {
  background: rgba(255, 250, 246, 0.9);
}
.education-page .site-header.is-scrolled {
  background: rgba(255, 250, 246, 0.97);
}
.education-page .hero::before {
  background: rgba(0, 0, 0, 0.48);
}
.education-page .hero__content {
  position: relative;
  z-index: 2;
}
.education-page .hero__content h1,
.education-page .hero__content h1 span,
.education-page .hero__content > p {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}
.education-page .purpose-card--vision {
  color: var(--color-text);
  background: #e5f0f7;
}
.education-page .purpose-card--vision p,
.education-page .purpose-card--vision .purpose-card__label {
  color: var(--color-text);
}
.education-page .purpose {
  padding: clamp(44px, 5vw, 68px) 0;
}
.education-page .purpose__heading {
  margin-bottom: 24px;
}
.education-page .purpose__heading h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
}
.education-page .purpose-card {
  min-height: 205px;
  padding: clamp(24px, 3vw, 34px);
}
.education-page .purpose-card__label {
  margin-bottom: 24px;
  font-size: 1.15rem;
}
.education-page .purpose-card p {
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.58;
}
.education-page .process {
  padding: clamp(46px, 5vw, 70px) 0;
  color: var(--color-text);
  background: #ffc19a;
}
.education-page .process .section-heading {
  margin-bottom: 26px;
}
.education-page .process .section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}
.education-page .process .section-heading p {
  font-size: clamp(.92rem, 1.1vw, 1rem);
}
.education-page .process .section-heading--light h2,
.education-page .process .section-heading--light p,
.education-page .process .eyebrow--light,
.education-page .process .step-card h3,
.education-page .process .step-card p,
.education-page .process .step-card__number {
  color: var(--color-text);
}
.education-page .process .step-card {
  min-height: 225px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.52);
}
.education-page .process .step-card__number {
  margin-bottom: 28px;
  font-size: 2rem;
}
.education-page .process .step-card__icon {
  top: 20px;
  right: 20px;
  width: 44px;
}
.education-page .process .step-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.education-page .process .step-card p {
  font-size: .82rem;
  line-height: 1.55;
}
.education-page .process .step-card__icon {
  color: #294f70;
  background: #fff2cf;
}
.assembly-resources {
  background: #fffaf6;
}
.assembly-resources__heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.assembly-resources__heading h2 {
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}
.assembly-resources__heading p {
  font-size: 1rem;
}
.assembly-resources__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 20px;
  align-items: stretch;
}
.assembly-video,
.assembly-manual {
  min-width: 0;
  border: 1px solid #f0c9b1;
  border-radius: 28px 10px 28px 10px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(242, 138, 75, .13);
}
.assembly-video {
  padding: 10px;
}
.assembly-video__screen {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: clamp(28px, 5vw, 54px);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border-radius: 21px 6px 21px 6px;
  color: #fff;
  background: #273b50;
}
.assembly-video__screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 48, 66, .9), rgba(30, 48, 66, .4) 60%, rgba(242, 138, 75, .14));
  content: "";
}
.assembly-video__screen > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.assembly-video__screen > span,
.assembly-video__screen > div {
  position: relative;
  z-index: 1;
}
.assembly-video__play {
  display: grid;
  width: 82px;
  aspect-ratio: 1;
  place-items: center;
  padding-left: 5px;
  border: 8px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: #fff;
  background: #273b50;
  box-shadow: 0 16px 30px rgba(39, 59, 80, .22);
  font-size: 1.35rem;
}
.assembly-video__screen small,
.assembly-manual small {
  display: block;
  margin-bottom: 8px;
  color: #a94c1f;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.assembly-video__screen small {
  color: #ffd98a;
}
.assembly-video__screen strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}
.assembly-video__screen p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .82);
}
.assembly-manual {
  display: flex;
  padding: clamp(28px, 4vw, 42px);
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(160deg, #fff 55%, #fff1e7);
}
.assembly-manual__file {
  display: grid;
  width: 68px;
  height: 82px;
  place-items: center;
  border-radius: 10px 22px 10px 10px;
  color: #26384a;
  background: #ffd98a;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  box-shadow: 9px 11px 0 #dcecf6;
}
.assembly-manual .eyebrow {
  margin-bottom: 10px;
}
.assembly-manual h3 {
  margin-bottom: 12px;
  color: #26384a;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}
.assembly-manual p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.6;
}
.assembly-manual__button {
  width: 100%;
  color: #647180;
  border-color: #e5e9ec;
  background: #f3f5f6;
  cursor: not-allowed;
}
@media (max-width: 780px) {
  .assembly-resources__grid { grid-template-columns: 1fr; }
  .assembly-video__screen { min-height: 280px; }
}
@media (max-width: 520px) {
  .assembly-video__screen { grid-template-columns: 1fr; align-content: center; }
  .assembly-video__play { width: 68px; }
}

/* Landing de Yati-Producto */
.sales-page .site-header {
  background: rgba(251, 253, 252, 0.91);
}
.sales-page .site-header.is-scrolled {
  background: rgba(251, 253, 252, 0.98);
}
.sales-hero {
  position: relative;
  min-height: clamp(690px, 100svh, 880px);
  margin-top: var(--header-height);
  padding: clamp(75px, 9vw, 120px) 0 95px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 209, 102, 0.14), transparent 30%),
    linear-gradient(135deg, #102825 0%, #193c38 52%, #2f6f64 100%);
}
.sales-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent, #000 55%, transparent);
}
.sales-hero__shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}
.sales-hero__shape--one {
  top: -180px;
  right: -130px;
  width: 520px;
  aspect-ratio: 1;
  border-width: 75px;
  border-color: rgba(255, 209, 102, 0.07);
}
.sales-hero__shape--two {
  bottom: -250px;
  left: 32%;
  width: 480px;
  aspect-ratio: 1;
  border-width: 80px;
  border-color: rgba(117, 99, 169, 0.1);
}
.sales-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}
.sales-hero__content h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #fff;
}
.sales-hero__content h1 span {
  color: var(--color-accent);
}
.sales-hero__content > p:not(.sales-hero__note) {
  max-width: 650px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}
.sales-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.sales-button--accent {
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
  background: var(--color-accent);
}
.sales-button--accent:hover {
  color: var(--color-primary-dark);
  border-color: #f2bd3e;
  background: #f2bd3e;
}
.sales-button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.sales-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}
.sales-hero__note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.sales-hero__visual {
  position: relative;
  min-height: 500px;
}
.sales-product-frame {
  position: absolute;
  inset: 7% 8%;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.96);
  border-radius: 42px 18px 42px 18px;
  background: #fff;
  box-shadow: 28px 32px 0 rgba(255, 209, 102, 0.18);
  transform: rotate(3deg);
}
.sales-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sales-product-tag {
  position: absolute;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.sales-product-tag--kit {
  top: 3%;
  left: 0;
}
.sales-product-tag--parts {
  top: 42%;
  right: -2%;
}
.sales-product-tag--books {
  bottom: 1%;
  left: 14%;
  color: #fff;
  background: var(--color-secondary);
}
.sales-statement {
  padding: clamp(70px, 8vw, 105px) 0;
  background: var(--color-accent);
}
.sales-statement p {
  max-width: 1120px;
  margin: 0;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.sales-statement em {
  color: #6a559e;
  font-style: normal;
}
.sales-purpose {
  background: #fff;
}
.sales-purpose__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 130px);
}
.sales-purpose__heading h2 {
  max-width: 600px;
  margin: 0;
  color: var(--color-primary-dark);
}
.sales-purpose__copy {
  padding-top: 30px;
}
.sales-purpose__copy p {
  max-width: 660px;
  font-size: 1.02rem;
}
.sales-purpose__copy .sales-purpose__lead {
  margin-bottom: 22px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}
.sales-categories {
  background: var(--color-background-soft);
}
.sales-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.sales-category {
  display: grid;
  min-height: 330px;
  overflow: hidden;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.sales-category:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.sales-category__media {
  min-height: 250px;
  overflow: hidden;
  background: #dcefe8;
}
.sales-category__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sales-category__body {
  display: flex;
  padding: clamp(26px, 3vw, 38px);
  flex-direction: column;
  justify-content: center;
}
.sales-category__body > span {
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sales-category h3 {
  margin-bottom: 13px;
  color: var(--color-primary-dark);
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}
.sales-category p {
  margin: 0;
  font-size: 0.88rem;
}
.sales-category--featured {
  border-color: rgba(var(--color-primary-rgb), 0.3);
}
.sales-journey {
  color: #fff;
  background: var(--color-primary-dark);
}
.sales-journey__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sales-journey-card {
  min-height: 255px;
  padding: clamp(28px, 3.5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}
.sales-journey-card > span {
  display: block;
  margin-bottom: 65px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}
.sales-journey-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.65rem;
}
.sales-journey-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.sales-audiences {
  background: #fff;
}
.sales-audiences__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.sales-audience {
  min-height: 310px;
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-background-soft);
}
.sales-audience > span {
  display: block;
  margin-bottom: 70px;
  color: var(--color-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sales-audience h3 {
  max-width: 520px;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
}
.sales-audience p {
  max-width: 560px;
  margin: 0;
}
.sales-audience--dark {
  color: #fff;
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}
.sales-audience--dark > span {
  color: var(--color-accent);
}
.sales-audience--dark h3 {
  color: #fff;
}
.sales-audience--dark p {
  color: rgba(255, 255, 255, 0.72);
}
.sales-cta {
  padding: clamp(78px, 8vw, 115px) 0;
  background: var(--color-primary);
}
.sales-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}
.sales-cta h2 {
  max-width: 780px;
  margin-bottom: 15px;
  color: #fff;
}
.sales-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}
.sales-cta .button {
  flex: 0 0 auto;
}
.sales-footer .site-footer__top {
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

/* Landing de Yati-Patentes */
.patents-page .site-header {
  background: rgba(253, 251, 255, 0.91);
}
.patents-page .site-header.is-scrolled {
  background: rgba(253, 251, 255, 0.98);
}
.patent-button--primary {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.patent-button--primary:hover {
  color: #fff;
  border-color: var(--color-primary-hover);
  background: var(--color-primary-hover);
}
.patent-button--ghost {
  color: var(--color-primary-dark);
  border-color: rgba(68, 55, 95, 0.22);
  background: rgba(255, 255, 255, 0.55);
}
.patent-button--ghost:hover {
  color: var(--color-primary-dark);
  border-color: rgba(68, 55, 95, 0.38);
  background: #fff;
}
.patent-button--light {
  color: var(--color-primary-dark);
  border-color: #fff;
  background: #fff;
}
.patent-button--light:hover {
  color: var(--color-primary-dark);
  border-color: #eadcf5;
  background: #eadcf5;
}
.patent-hero {
  position: relative;
  height: clamp(640px, calc(100svh - var(--header-height) - var(--area-header-offset)), 900px);
  min-height: 0;
  margin-top: var(--header-height);
  padding: clamp(46px, 7vh, 76px) 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(250, 247, 252, 0.82), rgba(253, 251, 255, 0.96)),
    radial-gradient(circle at 18% 20%, #eadcf5 0, transparent 34%),
    #fdfbff;
}
.patent-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(68, 55, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 55, 95, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.patent-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}
.patent-hero__glow--one {
  top: -170px;
  right: -110px;
  width: 470px;
  aspect-ratio: 1;
  border: 85px solid rgba(196, 155, 196, 0.13);
}
.patent-hero__glow--two {
  bottom: -190px;
  left: 38%;
  width: 380px;
  aspect-ratio: 1;
  border: 70px solid rgba(143, 121, 189, 0.08);
}
.patent-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}
.patent-hero__content h1 {
  max-width: 720px;
  margin: 18px 0 26px;
  color: var(--color-primary-dark);
}
.patent-hero__content h1 span {
  color: var(--color-primary);
}
.patent-hero__content > p:not(.patent-hero__note) {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}
.patent-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.patent-hero__note {
  max-width: 610px;
  margin: 26px 0 0;
  padding-left: 14px;
  border-left: 3px solid #c49bc4;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}
.patent-workspace {
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(68, 55, 95, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 35px 75px rgba(68, 55, 95, 0.2), 24px 26px 0 rgba(234, 220, 245, 0.55);
  transform: rotate(1deg);
  backdrop-filter: blur(18px);
}
.patent-workspace__bar {
  display: grid;
  height: 58px;
  padding: 0 19px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.66rem;
}
.patent-workspace__bar > span { display: flex; gap: 5px; }
.patent-workspace__bar i { width: 8px; height: 8px; border-radius: 50%; background: #d5cbdc; }
.patent-workspace__bar i:nth-child(2) { background: #dcb4c8; }
.patent-workspace__bar i:nth-child(3) { background: #b5d8cb; }
.patent-workspace__bar b { justify-self: end; color: #7a9d91; }
.patent-workspace__body { display: grid; min-height: 452px; grid-template-columns: 68px 1fr; }
.patent-workspace__body > aside {
  display: flex;
  padding: 20px 0;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  color: #9a8ba8;
  border-right: 1px solid var(--color-border);
  background: #f7f2fa;
  font-size: 0.68rem;
}
.patent-workspace__body > aside strong {
  display: grid;
  width: 32px;
  aspect-ratio: 1;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.patent-workspace__main { padding: 30px; }
.patent-workspace__main > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.patent-workspace__main small { color: #968ba1; font-size: 0.62rem; }
.patent-workspace__main h2 { margin: 5px 0 0; color: var(--color-primary-dark); font-size: 1.35rem; }
.patent-workspace__main > header > span { padding: 7px 10px; border-radius: 999px; color: #6c5b89; background: #eee5f5; font-size: 0.6rem; font-weight: 800; }
.patent-workspace__progress { margin: 28px 0 20px; padding: 20px; border: 1px solid var(--color-border); border-radius: 18px; }
.patent-workspace__progress > div { display: flex; margin-bottom: 12px; justify-content: space-between; color: var(--color-primary-dark); font-size: 0.7rem; }
.patent-workspace__progress > i { display: block; height: 7px; overflow: hidden; border-radius: 10px; background: #eee8f2; }
.patent-workspace__progress > i b { display: block; width: 50%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8f79bd, #c49bc4); }
.patent-workspace__stages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.patent-workspace__stages article { display: flex; min-height: 130px; padding: 18px; gap: 12px; border: 1px solid var(--color-border); border-radius: 17px; background: #fff; }
.patent-workspace__stages article:first-child { border-color: rgba(143, 121, 189, 0.45); background: #faf7fc; }
.patent-workspace__stages article > span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 9px; color: #fff; background: var(--color-primary); font-size: 0.62rem; font-weight: 800; }
.patent-workspace__stages strong { display: block; margin: 4px 0; color: var(--color-primary-dark); font-family: var(--font-heading); font-size: 0.96rem; }
.patent-workspace__stages p { margin: 0; color: var(--color-text-muted); font-size: 0.63rem; line-height: 1.45; }
.patent-workspace__insight { display: flex; margin-top: 14px; padding: 14px 16px; align-items: center; gap: 12px; border-radius: 15px; background: #eee5f5; }
.patent-workspace__insight > span { display: grid; width: 30px; aspect-ratio: 1; flex: 0 0 auto; place-items: center; border-radius: 9px; color: #fff; background: #9c78a5; font-size: 0.58rem; font-weight: 800; }
.patent-workspace__insight p { margin: 0; color: var(--color-text-muted); font-size: 0.62rem; line-height: 1.35; }
.patent-workspace__insight strong { display: block; color: var(--color-primary-dark); }
.patent-scroll { color: var(--color-primary-dark); }
.patent-scroll span { border-color: rgba(68, 55, 95, 0.32); }
.patent-scroll span::after { background: var(--color-primary); }
.patent-statement { padding: clamp(68px, 8vw, 100px) 0; background: #e9ddf2; }
.patent-statement p { max-width: 1100px; margin: 0; color: var(--color-primary-dark); font-family: var(--font-heading); font-size: clamp(2.1rem, 4.2vw, 4rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.035em; }
.patent-statement em { color: #9c78a5; font-style: normal; }
.patent-purpose { background: #fdfbff; }
.patent-purpose__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(55px, 9vw, 130px); }
.patent-purpose__heading h2 { max-width: 610px; margin: 0; color: var(--color-primary-dark); }
.patent-purpose__copy { padding-top: 30px; }
.patent-purpose__copy p { max-width: 680px; font-size: 1.02rem; }
.patent-purpose__copy .patent-purpose__lead { margin-bottom: 22px; color: var(--color-text); font-family: var(--font-heading); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 600; line-height: 1.35; }
.patent-flow { background: var(--color-background-soft); }
.patent-flow__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.patent-step { position: relative; min-height: 340px; padding: clamp(28px, 3vw, 38px); overflow: hidden; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; }
.patent-step--featured { color: #fff; border-color: var(--color-primary); background: var(--color-primary); }
.patent-step--future { background: #eee7f3; }
.patent-step__number { display: block; margin-bottom: 45px; color: var(--color-primary); font-size: 0.68rem; font-weight: 800; letter-spacing: .1em; }
.patent-step--featured .patent-step__number { color: #eadcf5; }
.patent-step__icon { display: grid; width: 48px; aspect-ratio: 1; margin-bottom: 28px; place-items: center; border-radius: 15px; color: var(--color-primary-dark); background: #eadcf5; font-family: var(--font-heading); font-size: .8rem; font-weight: 700; }
.patent-step--featured .patent-step__icon { color: var(--color-primary); background: #fff; }
.patent-step h3 { margin-bottom: 13px; color: var(--color-primary-dark); font-size: 1.55rem; }
.patent-step--featured h3 { color: #fff; }
.patent-step p { margin: 0; font-size: .84rem; }
.patent-step--featured p { color: rgba(255, 255, 255, .78); }
.patent-step__status { position: absolute; right: 24px; bottom: 22px; padding: 6px 9px; border-radius: 999px; color: #7d6a91; background: #fff; font-size: .58rem; font-weight: 800; }
.patent-capabilities { color: #fff; background: var(--color-primary-dark); }
.patent-capabilities__layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(55px, 8vw, 110px); }
.patent-capabilities__intro h2 { max-width: 600px; margin-bottom: 22px; color: #fff; }
.patent-capabilities__intro p { max-width: 560px; margin-bottom: 30px; color: rgba(255, 255, 255, .7); }
.patent-capabilities__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.patent-capability { min-height: 215px; padding: 28px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 22px; background: rgba(255, 255, 255, .055); }
.patent-capability > span { display: block; margin-bottom: 45px; color: #d6c7e8; font-size: .65rem; font-weight: 800; }
.patent-capability h3 { margin-bottom: 10px; color: #fff; font-size: 1.35rem; }
.patent-capability p { margin: 0; color: rgba(255, 255, 255, .68); font-size: .8rem; }
.patent-audiences { background: #fdfbff; }
.patent-audiences__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.patent-audience { min-height: 340px; padding: clamp(34px, 4vw, 52px); border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #f5f0fa; }
.patent-audience > span { display: block; margin-bottom: 76px; color: var(--color-primary); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.patent-audience h3 { max-width: 560px; margin-bottom: 15px; color: var(--color-primary-dark); font-size: clamp(1.7rem, 2.7vw, 2.5rem); }
.patent-audience p { max-width: 560px; margin: 0; }
.patent-audience--accent { background: #eadcf5; }
.patent-scope { padding: clamp(58px, 7vw, 88px) 0; background: #fff; }
.patent-scope__inner { display: grid; padding: clamp(34px, 5vw, 62px); grid-template-columns: auto 1fr; align-items: start; gap: clamp(24px, 4vw, 50px); border: 1px solid #d9cce4; border-radius: var(--radius-md); background: #faf7fc; }
.patent-scope__mark { display: grid; width: 58px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: #fff; background: #9c78a5; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.patent-scope h2 { max-width: 870px; margin-bottom: 16px; color: var(--color-primary-dark); font-size: clamp(2rem, 3.5vw, 3.4rem); }
.patent-scope p { max-width: 900px; margin: 0; }
.patent-cta { padding: clamp(78px, 8vw, 115px) 0; background: var(--color-primary); }
.patent-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.patent-cta h2 { max-width: 800px; margin-bottom: 15px; color: #fff; }
.patent-cta p { margin: 0; color: rgba(255, 255, 255, .76); font-size: 1.05rem; }
.patent-cta .button { flex: 0 0 auto; }
.patents-footer .site-footer__top { grid-template-columns: 1.6fr repeat(3, 1fr); }

/* Landing de Yati-Bots */
.bots-page .site-header { background: rgba(255,254,248,.92); }
.bots-page .site-header.is-scrolled { background: rgba(255,254,248,.98); }
.bots-button--primary { color: #242526; border-color: var(--color-primary); background: var(--color-primary); }
.bots-button--primary:hover { color: #242526; border-color: var(--color-primary-hover); background: var(--color-primary-hover); }
.bots-button--ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.bots-button--ghost:hover { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.12); }
.bots-button--dark { color: #fff; border-color: #242526; background: #242526; }
.bots-button--dark:hover { color: #fff; border-color: #111; background: #111; }
.bots-button--outline { color:#242526; border-color:#242526; background:transparent; }
.bots-button--outline:hover { color:#fff; border-color:#242526; background:#242526; }
.bots-hero { position: relative; height: clamp(600px, calc(100svh - var(--header-height) - var(--area-header-offset)), 820px); min-height: 0; margin-top: var(--header-height); padding: clamp(48px,7vh,78px) 0 clamp(40px,6vh,68px); overflow: hidden; color: #fff; background: #242526; }
.bots-hero::before { position: absolute; inset: 0; z-index: 1; background: rgba(0, 0, 0, .52); content: ""; }
.bots-hero__media { position: absolute; inset: 0; z-index: 0; }
.bots-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.bots-hero__grid { position: relative; z-index: 2; display: grid; height: 100%; min-height: 0; grid-template-columns: minmax(0, 800px); align-items: center; }
.bots-hero__content { position: relative; z-index: 2; }
.bots-hero__content h1 { max-width: 720px; margin: 18px 0 26px; color: #fff; text-shadow: 0 3px 18px rgba(0,0,0,.62); }
.bots-hero__content h1 span { color: var(--color-primary); }
.bots-hero__content > p:not(.bots-hero__note) { max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,.74); font-size: clamp(1.02rem,1.4vw,1.18rem); }
.bots-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.bots-hero__note { margin: 25px 0 0; color: rgba(255,255,255,.72); font-size: .76rem; text-shadow: 0 2px 12px rgba(0,0,0,.62); }
.bots-statement { padding: clamp(68px,8vw,100px) 0; background: var(--color-primary); }
.bots-statement p { max-width: 1120px; margin:0; color:#242526; font-family:var(--font-heading); font-size:clamp(2.1rem,4.2vw,4rem); font-weight:600; line-height:1.08; letter-spacing:-.035em; }
.bots-statement em { color:#b64b26; font-style:normal; }
.bots-purpose { background:#fffef8; }
.bots-purpose__grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(55px,9vw,130px); }
.bots-purpose__heading h2 { max-width:610px; margin:0; color:#242526; }
.bots-purpose__copy { padding-top:30px; }
.bots-purpose__copy p { max-width:680px; font-size:1.02rem; }
.bots-purpose__copy .bots-purpose__lead { margin-bottom:22px; color:var(--color-text); font-family:var(--font-heading); font-size:clamp(1.35rem,2.2vw,2rem); font-weight:600; line-height:1.35; }
.bots-direction { display:grid; margin-top:70px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.bots-direction__card { min-height:270px; padding:clamp(32px,4vw,50px); border:1px solid var(--color-border); border-radius:28px 8px 28px 8px; background:#fff8dc; }
.bots-direction__card > span { display:block; margin-bottom:60px; color:#a98208; font-size:.68rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.bots-direction__card h3 { margin-bottom:14px; color:#242526; font-size:clamp(1.7rem,2.7vw,2.5rem); }
.bots-direction__card p { max-width:580px; margin:0; }
.bots-direction__card--dark { color:#fff; border-color:#242526; background:#242526; }
.bots-direction__card--dark > span { color:#ffe36e; }
.bots-direction__card--dark h3 { color:#fff; }
.bots-direction__card--dark p { color:rgba(255,255,255,.7); }
.bots-scuderia { background:#fff8dc; }
.bots-teams { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.bots-team { min-height:360px; padding:clamp(32px,4vw,48px); border:1px solid var(--color-border); border-radius:30px 9px 30px 9px; background:#fff; box-shadow:var(--shadow-sm); }
.bots-team--winner { color:#fff; border-color:#242526; background:#242526; box-shadow:20px 22px 0 rgba(243,197,43,.25); }
.bots-team__top { display:flex; margin-bottom:70px; align-items:center; justify-content:space-between; }
.bots-team__top > span { color:#a98208; font-size:.67rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.bots-team--winner .bots-team__top > span { color:#ffe36e; }
.bots-team__top b { display:grid; width:54px; aspect-ratio:1; place-items:center; border-radius:50%; color:#242526; background:#f3c52b; font-family:var(--font-heading); font-size:1rem; }
.bots-team h3 { margin-bottom:14px; color:#242526; font-size:clamp(2.2rem,3.5vw,3.7rem); }
.bots-team--winner h3 { color:#fff; }
.bots-team p { max-width:580px; }
.bots-team--winner p { color:rgba(255,255,255,.7); }
.bots-team__status { display:flex; margin-top:28px; flex-wrap:wrap; gap:8px; }
.bots-team__status span { padding:7px 10px; border-radius:999px; color:#745d08; background:#fff2b5; font-size:.62rem; font-weight:800; }
.bots-team--winner .bots-team__status span { color:#242526; background:#f3c52b; }
.bots-categories { display:grid; margin-top:38px; padding:30px 34px; grid-template-columns:1fr auto 1fr auto 1.2fr; align-items:center; gap:24px; border:1px solid var(--color-border); border-radius:24px; background:#fff; }
.bots-categories > div { display:grid; gap:6px; }
.bots-categories span { color:#a98208; font-size:.63rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.bots-categories strong { color:#242526; font-family:var(--font-heading); font-size:1.15rem; }
.bots-categories > i { color:#d5b233; font-size:1.4rem; font-style:normal; }
.bots-categories small { color:var(--color-text-muted); font-size:.65rem; }
.bots-community { background:#fffef8; }
.bots-community__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.bots-community-card { display:flex; min-height:500px; padding:clamp(34px,4vw,50px); flex-direction:column; border:1px solid var(--color-border); border-radius:28px; background:#fff; }
.bots-community-card--official { color:#fff; border-color:#242526; background:#242526; }
.bots-community-card > span { display:block; margin-bottom:58px; color:#a98208; font-size:.67rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.bots-community-card--official > span { color:#ffe36e; }
.bots-community-card h3 { max-width:560px; margin-bottom:16px; color:#242526; font-size:clamp(1.8rem,3vw,2.7rem); }
.bots-community-card--official h3 { color:#fff; }
.bots-community-card p { max-width:580px; }
.bots-community-card--official p { color:rgba(255,255,255,.7); }
.bots-community-card ul { display:grid; margin:18px 0 30px; padding:0; gap:9px; list-style:none; }
.bots-community-card li { position:relative; padding-left:20px; color:var(--color-text-muted); font-size:.8rem; }
.bots-community-card--official li { color:rgba(255,255,255,.72); }
.bots-community-card li::before { position:absolute; top:.55em; left:0; width:8px; height:8px; border-radius:50%; background:#f3c52b; content:""; }
.bots-community-card .button { width:max-content; margin-top:auto; }
.bots-community-card__tracking { display:inline-flex; margin-top:16px; color:#8d6d03; font-size:.7rem; font-weight:800; }
.bots-community-card--official .bots-community-card__tracking { color:#ffe36e; }
.bots-community-card__tracking:hover { text-decoration:underline; }
.bots-posts { background:#fff8dc; }
.bots-posts__heading { display:grid; align-items:end; grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr); gap:clamp(35px,7vw,95px); margin-bottom:clamp(38px,5vw,62px); }
.bots-posts__heading h2 { max-width:780px; margin:0; color:#242526; }
.bots-posts__heading > p { max-width:550px; margin:0; color:#6f6b5f; }
.bots-posts__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(16px,2vw,24px); }
.bots-post-card { display:flex; min-width:0; min-height:520px; overflow:hidden; padding:0; flex-direction:column; border:1px solid #dfd5ac; border-radius:30px 9px 30px 9px; color:#242526; background:#fff; box-shadow:0 18px 46px rgba(84,69,18,.1); text-align:left; transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.bots-post-card:hover { transform:translateY(-6px); border-color:#c6a929; box-shadow:0 28px 65px rgba(84,69,18,.18); }
.bots-post-card:focus-within { outline:4px solid rgba(243,197,43,.26); outline-offset:4px; }
.bots-post-card--featured { display:grid; min-height:430px; grid-column:1/-1; grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr); }
.bots-post-card__media { position:relative; display:grid; min-height:270px; overflow:hidden; padding:35px; place-content:center; color:#242526; background:linear-gradient(145deg,#ffe783,#f3c52b 62%,#f26b38 155%); text-align:center; }
.bots-post-card--featured .bots-post-card__media { min-height:430px; }
.bots-post-card__media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.bots-post-card__media::after { position:absolute; inset:auto 0 0; height:38%; background:linear-gradient(transparent,rgba(20,20,20,.24)); content:""; pointer-events:none; }
.bots-post-card__media--placeholder::after,.bots-post-card--featured .bots-post-card__media:not(:has(img))::after { display:none; }
.bots-post-card__media strong { position:relative; z-index:1; font-family:var(--font-heading); font-size:clamp(4.5rem,8vw,7rem); line-height:.8; }
.bots-post-card__media small,.bots-post-card__media b { position:relative; z-index:1; margin-top:13px; font-size:.72rem; font-weight:800; }
.bots-post-card__media b { margin-top:5px; }
.bots-post-card__body { display:flex; min-width:0; padding:clamp(28px,4vw,48px); flex:1; flex-direction:column; }
.bots-post-card__meta { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom:clamp(30px,5vw,58px); }
.bots-post-card__meta b { color:#957609; font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; }
.bots-post-card__meta time { color:#948f81; font-size:.64rem; }
.bots-post-card__body > strong { max-width:690px; margin-bottom:15px; color:#242526; font-family:var(--font-heading); font-size:clamp(1.75rem,3vw,3rem); line-height:1.08; }
.bots-post-card:not(.bots-post-card--featured) .bots-post-card__body > strong { font-size:clamp(1.55rem,2.2vw,2.25rem); }
.bots-post-card__body > span:not(.bots-post-card__meta) { max-width:680px; color:#6f6b5f; font-size:.86rem; line-height:1.7; }
.bots-post-card__actions { display:flex; margin-top:auto; padding-top:30px; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.bots-post-card__open { padding:0; border:0; color:#957609; background:none; font:inherit; font-size:.74rem; font-weight:850; cursor:pointer; }
.bots-post-card__open:hover { color:#4f4008; text-decoration:underline; text-underline-offset:4px; }
.bots-post-social { display:grid; gap:8px; }
.bots-post-social__label { color:#6f6b5f; font-size:.67rem; font-weight:800; }
.bots-post-social__links { display:flex; flex-wrap:wrap; gap:7px; }
.bots-post-social__link,.bots-post-social__pending { display:inline-flex; min-height:32px; padding:7px 11px; align-items:center; border-radius:999px; font-size:.66rem; font-weight:850; line-height:1; }
.bots-post-social__link { color:#fff; box-shadow:0 7px 16px rgba(36,37,38,.12); transition:transform .2s ease,box-shadow .2s ease; }
.bots-post-social__link:hover { transform:translateY(-2px); box-shadow:0 10px 22px rgba(36,37,38,.2); }
.bots-post-social__link--youtube { background:#f20f2f; }
.bots-post-social__link--tiktok { background:#202124; }
.bots-post-social__pending { color:#787264; border:1px dashed #cfc6a2; background:#faf7e9; }
.bots-post-social--modal { margin-top:38px; padding-top:25px; border-top:1px solid #e8dfbd; }
.bots-post-modal { width:min(1120px,calc(100% - 34px)); max-width:none; max-height:calc(100dvh - 34px); overflow:auto; padding:0; border:0; border-radius:34px 10px 34px 10px; color:#242526; background:#fffef8; box-shadow:0 45px 120px rgba(0,0,0,.42); }
.bots-post-modal::backdrop { background:rgba(18,19,20,.78); backdrop-filter:blur(9px); }
.bots-post-modal__close { position:sticky; z-index:4; top:18px; float:right; display:grid; width:46px; height:46px; margin:18px 18px -64px 0; place-items:center; border:1px solid rgba(36,37,38,.16); border-radius:50%; color:#242526; background:rgba(255,255,255,.92); box-shadow:0 8px 24px rgba(0,0,0,.12); font-size:1.6rem; cursor:pointer; }
.bots-post-modal__close:hover { color:#fff; background:#242526; }
.bots-post-modal__article { display:grid; min-height:min(760px,calc(100dvh - 34px)); grid-template-columns:minmax(330px,.78fr) minmax(0,1.22fr); }
.bots-post-modal__cover { position:relative; min-height:100%; overflow:hidden; background:#f3c52b; }
.bots-post-modal__cover img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.bots-post-modal__cover--result { display:grid; padding:45px; place-content:center; color:#242526; background:linear-gradient(145deg,#ffe783,#f3c52b 60%,#f26b38 150%); text-align:center; }
.bots-post-modal__cover--result strong { font-family:var(--font-heading); font-size:clamp(6rem,12vw,10rem); line-height:.78; }
.bots-post-modal__cover--result span { margin-top:25px; font-family:var(--font-heading); font-size:1.45rem; font-weight:700; }
.bots-post-modal__cover--result small { margin-top:7px; font-weight:800; }
.bots-post-modal__copy { padding:clamp(48px,7vw,88px); }
.bots-post-modal__copy h2 { max-width:760px; margin:13px 0 20px; color:#242526; font-size:clamp(2.35rem,4.5vw,4.5rem); line-height:1; }
.bots-post-modal__lead { max-width:720px; color:#625e52; font-size:1.03rem; line-height:1.75; }
.bots-post-modal__meta { display:flex; flex-wrap:wrap; gap:8px; margin:26px 0 34px; }
.bots-post-modal__meta time,.bots-post-modal__meta span { padding:7px 10px; border-radius:999px; color:#745d08; background:#fff1ad; font-size:.64rem; font-weight:800; }
.bots-post-modal__copy .editorial-markdown h2,.bots-post-modal__copy .editorial-markdown h3 { color:#242526; }
.bots-post-modal__copy .editorial-markdown p,.bots-post-modal__copy .editorial-markdown li { color:#57564f; }
.bots-post-modal__loading { display:grid; min-height:420px; place-content:center; color:#8a7215; font-weight:800; }
body.modal-open { overflow:hidden; }
.bots-news-preview { background:#fff8dc; }
.bots-news-preview__layout { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr); gap:18px; }
.bots-news-feature { display:grid; min-height:420px; overflow:hidden; grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr); border:1px solid var(--color-border); border-radius:30px 9px 30px 9px; background:#fff; box-shadow:var(--shadow-sm); transition:transform .25s ease,box-shadow .25s ease; }
.bots-news-feature:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.bots-news-feature__visual { display:grid; min-height:320px; padding:35px; place-content:center; color:#242526; text-align:center; background:linear-gradient(145deg,#ffe36e,#f3c52b 62%,#f26b38 160%); }
.bots-news-feature__visual span { font-family:var(--font-heading); font-size:6rem; font-weight:700; line-height:.8; }
.bots-news-feature__visual small { margin-top:14px; font-weight:800; }
.bots-news-feature__visual b { margin-top:5px; font-size:.72rem; }
.bots-news-feature__body { display:flex; padding:clamp(32px,4vw,50px); flex-direction:column; justify-content:center; }
.bots-news-feature__body > span,.bots-news-list-card__body > span { margin-bottom:22px; color:#a98208; font-size:.65rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.bots-news-feature h3 { margin-bottom:15px; color:#242526; font-size:clamp(1.9rem,3vw,2.8rem); }
.bots-news-feature p { margin-bottom:28px; }
.bots-news-feature__body strong { color:#a98208; font-size:.78rem; }
.bots-news-feature__body i,.bots-news-list-card__body i { font-style:normal; transition:transform .2s ease; }
.bots-news-feature:hover i,.bots-news-list-card:hover i { display:inline-block; transform:translateX(6px); }
.bots-news-upcoming { display:flex; padding:32px; flex-direction:column; border-radius:9px 30px 9px 30px; color:#fff; background:#242526; }
.bots-news-upcoming article { padding:20px 0; border-bottom:1px solid rgba(255,255,255,.11); }
.bots-news-upcoming article small { color:#ffe36e; font-size:.62rem; font-weight:800; text-transform:uppercase; }
.bots-news-upcoming h3 { margin:8px 0; color:#fff; font-size:1.35rem; }
.bots-news-upcoming p { margin:0; color:rgba(255,255,255,.65); font-size:.78rem; }
.bots-news-upcoming .button { width:100%; margin-top:auto; color:#242526; border-color:#f3c52b; background:#f3c52b; }
.bots-news-hero { margin-top:var(--header-height); padding:clamp(100px,12vw,165px) 0 100px; color:#fff; background:radial-gradient(circle at 85% 15%,rgba(243,197,43,.18),transparent 28%),linear-gradient(135deg,#151617,#2b2c2d); }
.bots-news-hero__inner { max-width:950px; }
.bots-news-hero h1 { margin-bottom:24px; color:#fff; }
.bots-news-hero p { max-width:720px; color:rgba(255,255,255,.7); font-size:1.1rem; }
.bots-news-tags { display:flex; margin-top:32px; flex-wrap:wrap; gap:8px; }
.bots-news-tags span { padding:8px 12px; border:1px solid rgba(255,255,255,.16); border-radius:999px; color:#ffe36e; background:rgba(255,255,255,.06); font-size:.64rem; font-weight:800; }
.bots-news-index { background:#fffef8; }
.bots-news-list-card { display:grid; overflow:hidden; grid-template-columns:minmax(260px,.45fr) minmax(0,1fr); border:1px solid var(--color-border); border-radius:30px 9px 30px 9px; background:#fff; box-shadow:var(--shadow-sm); transition:transform .25s ease,box-shadow .25s ease; }
.bots-news-list-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.bots-news-list-card__visual { display:grid; min-height:350px; padding:34px; place-content:center; color:#242526; text-align:center; background:#f3c52b; }
.bots-news-list-card__visual span { font-family:var(--font-heading); font-size:6rem; font-weight:700; line-height:.8; }
.bots-news-list-card__visual small { margin-top:14px; font-weight:800; }
.bots-news-list-card__visual strong { margin-top:5px; font-size:.78rem; }
.bots-news-list-card__body { display:flex; padding:clamp(35px,5vw,65px); flex-direction:column; justify-content:center; }
.bots-news-list-card h3 { max-width:720px; margin-bottom:16px; color:#242526; font-size:clamp(2rem,3.5vw,3.4rem); }
.bots-news-list-card p { max-width:700px; margin-bottom:30px; }
.bots-news-list-card__body b { color:#a98208; font-size:.78rem; }
.bots-news-empty { padding:clamp(70px,9vw,120px) 0; background:#fff8dc; }
.bots-news-empty__inner { display:grid; grid-template-columns:auto 1fr; align-items:start; gap:35px; }
.bots-news-empty__inner > span { display:grid; width:64px; aspect-ratio:1; place-items:center; border-radius:50%; color:#242526; background:#f3c52b; font-size:2rem; font-weight:700; }
.bots-news-empty small { color:#a98208; font-size:.66rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.bots-news-empty h2 { max-width:900px; margin:12px 0 16px; color:#242526; font-size:clamp(2rem,3.5vw,3.5rem); }
.bots-news-empty p { margin:0; }
.bots-article__hero { margin-top:var(--header-height); padding:clamp(90px,11vw,150px) 0 110px; color:#fff; background:linear-gradient(135deg,#151617,#292a2b); }
.bots-breadcrumb { display:flex; margin-bottom:55px; flex-wrap:wrap; gap:9px; color:rgba(255,255,255,.55); font-size:.68rem; font-weight:700; }
.bots-breadcrumb a:hover { color:#ffe36e; }
.bots-article__hero h1 { max-width:1050px; margin-bottom:25px; color:#fff; }
.bots-article__hero p { max-width:820px; margin:0; color:rgba(255,255,255,.7); font-size:1.12rem; }
.bots-article__layout { display:grid; padding-top:clamp(75px,9vw,125px); padding-bottom:clamp(75px,9vw,125px); grid-template-columns:minmax(0,1fr) 310px; align-items:start; gap:clamp(55px,8vw,110px); }
.bots-article__content { max-width:780px; }
.bots-article__lead { margin-bottom:50px; color:#242526; font-family:var(--font-heading); font-size:clamp(1.4rem,2.2vw,2rem); font-weight:600; line-height:1.4; }
.bots-article__content h2 { margin:55px 0 18px; color:#242526; font-size:clamp(1.8rem,3vw,2.7rem); }
.bots-article__content p { font-size:1rem; line-height:1.8; }
.bots-article__content .button { margin-top:35px; }
.bots-article__summary { position:sticky; top:calc(var(--header-height) + 28px); padding:30px; border-radius:25px 8px 25px 8px; color:#fff; background:#242526; }
.bots-article__summary > span { display:block; margin-bottom:25px; color:#ffe36e; font-size:.64rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.bots-article__summary > div { display:grid; padding:15px 0; gap:3px; border-bottom:1px solid rgba(255,255,255,.11); }
.bots-article__summary small { color:rgba(255,255,255,.48); font-size:.6rem; }
.bots-article__summary strong { color:#fff; font-family:var(--font-heading); font-size:1.15rem; }
.bots-article__summary p { margin:22px 0 0; color:rgba(255,255,255,.55); font-size:.7rem; }
.bots-footer .site-footer__top { grid-template-columns:1.6fr repeat(2,1fr); }

/* Animación progresiva */
.js .reveal {
  transform: translateY(28px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.75, 0.25, 1),
    opacity 0.7s ease;
}
.js .reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.js .reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.js .reveal[data-delay="3"] {
  transition-delay: 0.3s;
}
.js .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@keyframes gentle-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    transform: none;
    opacity: 1;
  }
}
