:root {
  --navy: #071b4d;
  --navy-2: #0b2b6f;
  --cyan: #10d9df;
  --cyan-2: #25bfe7;
  --blue: #1376e8;
  --yellow: #ffbf16;
  --orange: #ff7917;
  --green: #6fd30c;
  --purple: #6d45d9;
  --white: #ffffff;
  --soft: #f5fbff;
  --soft-2: #eef8f7;
  --text: #1d2a3a;
  --muted: #65758b;
  --line: rgba(7, 27, 77, 0.12);
  --shadow: 0 24px 80px rgba(7, 27, 77, 0.14);
  --shadow-soft: 0 16px 45px rgba(7, 27, 77, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(16, 217, 223, 0.16), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255, 191, 22, 0.18), transparent 28%),
    radial-gradient(circle at 55% 100%, rgba(109, 69, 217, 0.12), transparent 32%),
    linear-gradient(135deg, #f6fffd 0%, #f8fbff 45%, #fffaf3 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

/* Loader */

.jl-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 217, 223, 0.22), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(255, 191, 22, 0.25), transparent 26%),
    radial-gradient(circle at 55% 85%, rgba(109, 69, 217, 0.18), transparent 30%),
    linear-gradient(140deg, #ffffff 0%, #efffff 42%, #fff8e8 100%);
  display: grid;
  place-items: center;
  text-align: center;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.jl-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrap {
  width: min(430px, 78vw);
  animation: floatLoader 2.1s ease-in-out infinite;
  filter: drop-shadow(0 26px 38px rgba(7, 27, 77, 0.18));
}

.loader-logo {
  width: 100%;
}

.loader-title {
  margin-top: 24px;
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-family: "Baloo 2", cursive;
}

.loader-small {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.loader-bar {
  width: min(360px, 76vw);
  height: 14px;
  margin-top: 18px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(7, 27, 77, 0.10);
  overflow: hidden;
  border: 1px solid rgba(7, 27, 77, 0.08);
}

.loader-progress {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--orange), var(--green));
  animation: loadingBar 5s linear forwards;
}

.loader-stars span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 50%, 61% 65%, 50% 100%, 39% 65%, 2% 50%, 39% 35%);
  animation: sparkle 1.6s ease-in-out infinite;
}

.loader-stars span:nth-child(1) {
  top: 18%;
  left: 18%;
  background: var(--yellow);
}

.loader-stars span:nth-child(2) {
  top: 24%;
  right: 18%;
  background: var(--purple);
  animation-delay: 0.25s;
}

.loader-stars span:nth-child(3) {
  bottom: 24%;
  left: 24%;
  background: var(--cyan);
  animation-delay: 0.5s;
}

.loader-stars span:nth-child(4) {
  bottom: 18%;
  right: 24%;
  background: var(--orange);
  animation-delay: 0.75s;
}

@keyframes floatLoader {
  0%, 100% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
  50% {
    transform: translateY(-22px) rotate(1deg) scale(1.02);
  }
}

@keyframes loadingBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.35) rotate(24deg);
    opacity: 1;
  }
}

/* Fondo decorativo */

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.35;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  top: 14%;
  left: -90px;
}

.orb-b {
  width: 230px;
  height: 230px;
  background: var(--yellow);
  top: 18%;
  right: -80px;
}

.orb-c {
  width: 320px;
  height: 320px;
  background: var(--purple);
  bottom: -140px;
  left: 36%;
  opacity: 0.18;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: 0.55;
}

/* Header */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding: 0 0 12px;
}

.header-inner {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(7, 27, 77, 0.10);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.94rem;
  transition: 0.25s ease;
}

.main-nav a:hover {
  background: rgba(16, 217, 223, 0.13);
  color: var(--navy-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  display: block;
  margin: 5px auto;
  border-radius: 999px;
}

/* Hero */

.hero-section {
  padding: 62px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  background: rgba(16, 217, 223, 0.12);
  border: 1px solid rgba(16, 217, 223, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(111, 211, 12, 0.45);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 211, 12, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(111, 211, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 211, 12, 0);
  }
}

.hero-copy h1 {
  font-family: "Baloo 2", cursive;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.88;
  margin: 24px 0 22px;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 660px;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 1000;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 34px rgba(19, 118, 232, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(19, 118, 232, 0.28);
}

.btn-soft {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 27, 77, 0.12);
  box-shadow: 0 12px 32px rgba(7, 27, 77, 0.08);
}

.btn-soft:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 217, 223, 0.45);
  background: white;
}

.hero-mini-cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
}

.hero-mini-cards div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 77, 0.09);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(7, 27, 77, 0.07);
}

.hero-mini-cards strong {
  display: block;
  font-family: "Baloo 2", cursive;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-mini-cards span {
  color: var(--muted);
  font-weight: 900;
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  min-height: 590px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 191, 22, 0.18), transparent 35%),
    radial-gradient(circle at 60% 65%, rgba(16, 217, 223, 0.24), transparent 42%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 27, 77, 0.10);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 30px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 2px dashed rgba(7, 27, 77, 0.09);
  border-radius: 26px;
}

.hero-logo {
  width: min(470px, 100%);
  position: relative;
  z-index: 2;
  animation: floatMain 4.8s ease-in-out infinite;
  filter: drop-shadow(0 28px 35px rgba(7, 27, 77, 0.18));
}

@keyframes floatMain {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.hero-card-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 1000;
  font-size: 0.86rem;
}

.hero-card-badge svg {
  width: 17px;
  color: var(--yellow);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  background: white;
  border: 1px solid rgba(7, 27, 77, 0.10);
  box-shadow: 0 16px 35px rgba(7, 27, 77, 0.12);
  border-radius: 999px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 1000;
  color: var(--navy);
}

.floating-chip svg {
  width: 18px;
  color: var(--cyan);
}

.chip-one {
  left: 30px;
  bottom: 110px;
}

.chip-two {
  right: 28px;
  top: 120px;
}

.chip-three {
  right: 50px;
  bottom: 22px;
}

/* Headings */

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2,
.feature-copy h2,
.benchi-copy h2,
.closing-card h2 {
  font-family: "Baloo 2", cursive;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 18px 0 14px;
  letter-spacing: -0.035em;
}

.section-heading p,
.feature-copy p,
.benchi-copy p,
.closing-card p {
  color: var(--muted);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.section-heading.compact {
  margin-bottom: 28px;
}

/* Projects */

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 27, 77, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.project-image {
  min-height: 330px;
  position: relative;
  background: var(--soft);
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-benchi .project-image img {
  background:
    radial-gradient(circle at center, rgba(16, 217, 223, 0.18), transparent 55%),
    white;
        width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 1000;
  color: white;
  box-shadow: 0 12px 28px rgba(7, 27, 77, 0.15);
}

.project-tag.orange {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.project-tag.cyan {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.project-content {
  padding: 28px;
  position: relative;
}

.project-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(16, 217, 223, 0.12);
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.project-icon svg {
  width: 26px;
  height: 26px;
}

.project-content h3 {
  font-family: "Baloo 2", cursive;
  color: var(--navy);
  font-size: 2.1rem;
  margin: 0 0 8px;
}

.project-content p {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
  margin: 0 0 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 1000;
}

.text-link svg {
  width: 18px;
  transition: 0.22s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Feature Picasso */

.feature-section {
  padding-top: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-copy {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 27, 77, 0.10);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(245, 251, 255, 0.9);
  border: 1px solid rgba(7, 27, 77, 0.08);
}

.feature-list svg {
  flex: 0 0 22px;
  color: var(--orange);
}

.feature-list span {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 27, 77, 0.14);
  min-height: 420px;
}

.video-card video,
.video-poster {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.video-card video {
  display: none;
}

.video-card.is-playing video {
  display: block;
}

.video-card.is-playing .video-poster {
  display: none;
}

.video-poster {
  position: relative;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 77, 0.05), rgba(7, 27, 77, 0.62));
}

.video-poster img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  display: grid;
  place-items: center;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 22px 60px rgba(19, 118, 232, 0.35);
  transition: 0.25s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.play-button svg {
  width: 38px;
  height: 38px;
  margin-left: 4px;
}

/* Benchi */

.benchi-section {
  padding-top: 40px;
}

.benchi-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(circle at 20% 25%, rgba(111, 211, 12, 0.16), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(255, 191, 22, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 27, 77, 0.10);
  box-shadow: var(--shadow-soft);
  border-radius: 44px;
  padding: 42px;
  overflow: hidden;
}

.benchi-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.benchi-visual img {
  max-height: 460px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 26px 30px rgba(7, 27, 77, 0.18));
  animation: benchiFloat 4.4s ease-in-out infinite;
}

.benchi-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(16, 217, 223, 0.22), transparent 62%);
  border-radius: 50%;
}

@keyframes benchiFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.benchi-copy {
  padding: 18px;
}

.benchi-stats {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benchi-stats div {
  background: white;
  border: 1px solid rgba(7, 27, 77, 0.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 25px rgba(7, 27, 77, 0.08);
}

.benchi-stats svg {
  color: var(--cyan);
  width: 25px;
  height: 25px;
}

.benchi-stats strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

.benchi-stats span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

/* Guide */

.guide-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.guide-steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 27, 77, 0.09);
  box-shadow: 0 12px 28px rgba(7, 27, 77, 0.07);
}

.step-card > span {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: white;
  font-weight: 1000;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
}

.step-card h3 {
  color: var(--navy);
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 1000;
}

.step-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-weight: 700;
}

.guide-image-card {
  position: sticky;
  top: 112px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 27, 77, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  overflow: hidden;
}

.guide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 1000;
  margin-bottom: 14px;
}

.guide-label svg {
  color: var(--yellow);
  width: 18px;
}

.guide-image-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(7, 27, 77, 0.10);
}

.full-btn {
  width: 100%;
  margin-top: 16px;
}

/* Ideas */

.ideas-section {
  padding-top: 40px;
}

.ideasSwiper {
  padding: 12px 4px 48px;
}

.idea-card {
  height: 250px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(7, 27, 77, 0.09);
  box-shadow: 0 12px 28px rgba(7, 27, 77, 0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.idea-card svg {
  width: 42px;
  height: 42px;
  color: var(--cyan);
  margin-bottom: 18px;
}

.idea-card h3 {
  font-family: "Baloo 2", cursive;
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 8px;
}

.idea-card p {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
  margin: 0;
}

.swiper-pagination-bullet {
  background: var(--navy);
  opacity: 0.22;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--cyan);
}

/* Closing */

.closing-section {
  padding: 40px 0 96px;
}

.closing-card {
  text-align: center;
  background:
    radial-gradient(circle at 18% 28%, rgba(16, 217, 223, 0.16), transparent 28%),
    radial-gradient(circle at 84% 65%, rgba(255, 191, 22, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 27, 77, 0.10);
  border-radius: 44px;
  box-shadow: var(--shadow-soft);
  padding: 46px 28px;
}

.closing-card img {
  height: 250px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
}

.closing-card p {
  max-width: 580px;
  margin: 0 auto 28px;
}

/* Footer */

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(7, 27, 77, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .benchi-shell,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .guide-image-card {
    position: relative;
    top: auto;
  }

  .benchi-shell {
    padding: 30px;
  }

  .benchi-visual {
    min-height: 360px;
  }

  .benchi-visual img {
    max-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
  }

  .header-inner {
    border-radius: 30px;
    min-height: 70px;
  }

  .brand img {
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 84px;
    background: white;
    border: 1px solid rgba(7, 27, 77, 0.10);
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding-top: 42px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-cards {
    grid-template-columns: 1fr;
  }

  .hero-card-badge,
  .floating-chip {
    position: relative;
    inset: auto;
    margin: 6px;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .benchi-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1 {
    font-size: 3.25rem;
  }

  .hero-text {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .project-image img {
    height: 280px;
  }

  .feature-copy,
  .benchi-shell,
  .closing-card {
    padding: 24px;
    border-radius: 28px;
  }

  .video-card,
  .video-card video,
  .video-poster,
  .video-poster img {
    min-height: 310px;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }

  .step-card {
    flex-direction: column;
  }

  .section-heading h2,
  .feature-copy h2,
  .benchi-copy h2,
  .closing-card h2 {
    font-size: 2.45rem;
  }

  .loader-logo-wrap {
    width: min(330px, 82vw);
  }
}
/* Selector de idioma ES / EN */

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(7, 27, 77, 0.06);
  border: 1px solid rgba(7, 27, 77, 0.10);
  flex-shrink: 0;
}

.language-switcher button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--navy);
  background: transparent;
  transition: 0.22s ease;
}

.language-switcher button:hover {
  background: rgba(16, 217, 223, 0.14);
}

.language-switcher button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 8px 18px rgba(19, 118, 232, 0.22);
}

@media (max-width: 820px) {
  .language-switcher {
    position: absolute;
    right: 76px;
    top: 16px;
    margin-left: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(7, 27, 77, 0.08);
  }

  .language-switcher button {
    padding: 8px 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .language-switcher {
    right: 68px;
    top: 15px;
  }

  .language-switcher button {
    padding: 7px 8px;
    font-size: 0.74rem;
  }
}
/* Corrección scroll horizontal y menú móvil */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.header-inner,
main,
section,
.container {
  max-width: 100%;
}

.header-inner {
  position: relative;
  overflow: visible;
}

@media (max-width: 820px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow: visible;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .brand {
    max-width: 140px;
    overflow: hidden;
  }

  .brand img {
    max-width: 140px;
    height: 48px;
    object-fit: contain;
  }

  .menu-toggle {
    position: relative;
    z-index: 130;
    flex: 0 0 46px;
  }

  .language-switcher {
    z-index: 125;
  }

  .main-nav {
    left: 0;
    right: 0;
    top: 82px;
    width: 100%;
    max-width: 100%;
    z-index: 120;
    box-sizing: border-box;
  }

  .main-nav.is-open {
    display: flex;
  }

  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 22px);
  }

  .brand {
    max-width: 118px;
  }

  .brand img {
    max-width: 118px;
  }

  .main-nav {
    top: 80px;
  }
}
/* Header fijo siempre visible */

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  padding: 0;
  pointer-events: none;
}

.site-header .header-inner {
  pointer-events: auto;
}

body {
  padding-top: 110px;
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.16);
  border-color: rgba(7, 27, 77, 0.12);
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
  }

  body {
    padding-top: 98px;
  }

  .main-nav {
    top: 82px;
  }
}

@media (max-width: 420px) {
  body {
    padding-top: 92px;
  }

  .site-header {
    top: 8px;
  }

  .main-nav {
    top: 80px;
  }
}