@charset "UTF-8";
/* ==========================================
   RESET GLOBAL & NORMALIZACIÓN
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Multimedia */
img,
picture,
video,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Enlaces */
a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* Listas */
ul,
ol {
  list-style: none;
}

/* Formularios y Botones */
button,
input,
select,
textarea {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

/* Accesibilidad: Quita el resaltado azul en móviles al tocar */
a,
button {
  -webkit-tap-highlight-color: transparent;
}

@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #0B0F19;
  color: #ffffff;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 700;
  color: #ffffff;
}

p {
  color: #A1A1AA;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
  /*alineacion */
}
.btn.center {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.btn {
  /* formato lg */
}
.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
}
.btn {
  /* width completo */
}
.btn--full {
  width: 100%;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}
.btn--primary {
  /* activo */
}
.btn--primary:active {
  transform: scale(0.98);
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #E5E7EB;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.btn--outline {
  /* activo*/
}
.btn--outline:active {
  transform: scale(0.98);
}
.btn {
  /* accesivilidad */
}
.btn:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 2px;
}
.btn {
  /* 🔥 NUEVO: deshabilitado */
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.hero {
  background-color: #010618;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}

/* =========================
   HEADER LOGO
========================= */
.header__logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 223px;
}

.header__logo img {
  width: 270px;
  height: 43px;
}

/* =========================
   HERO GRID
========================= */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================
   HERO CONTENT
========================= */
.hero__title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero__text {
  font-size: 1.6rem;
  color: #b0b7c3;
  margin-bottom: 3rem;
}

.hero__buttons {
  display: grid;
  grid-auto-flow: column;
  text-align: center;
  gap: 1rem;
}

/* =========================
   HERO MEDIA
========================= */
.hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

/* SLIDER */
.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background-color: #000; /* evita flash blanco */
}

/* TRACK */
.hero__slides {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero__slides.is-ready {
  transition: transform 0.45s ease;
}

/* SLIDES */
.hero__slides picture {
  flex: 0 0 100%;
  height: 100%;
  display: block;
}

.hero__slides img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1127px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-items: center;
  }
  .hero__media {
    order: -1;
    width: 86%;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 692px;
    text-align: center;
  }
  .hero__title {
    font-size: 3.4rem;
    text-align: center;
  }
  .hero__buttons {
    display: flex;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 0rem 0rem 6rem 0rem;
  }
  .hero__media {
    width: 100%;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0rem 2rem;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__buttons {
    justify-content: center;
  }
  .hero__grid {
    width: 100%;
    margin: 0;
    gap: 2rem;
  }
  .hero__slider {
    border-radius: 0px;
  }
}
@media (max-width: 505px) {
  .hero__content {
    padding: 1rem;
  }
  .hero__buttons {
    display: grid;
    grid-auto-flow: row;
    justify-content: stretch;
    width: 77%;
    gap: 1.5rem;
  }
}
@media (max-width: 435px) {
  .hero__grid {
    gap: 1rem;
  }
  .hero__title {
    font-size: 2.5rem;
  }
}
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
  /* fondo glow*/
}
.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}
.footer {
  /* línea */
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(37, 99, 235, 0.8), transparent);
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer {
  /* =========================
     GRID
  ========================= */
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
}
.footer__col ul li {
  margin-bottom: 0.8rem;
}
.footer__col ul a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.3rem;
  position: relative;
  transition: 0.3s;
}
.footer__col ul a:hover {
  color: #2563eb;
}
.footer__col ul a {
  /* 🔥 underline pro */
}
.footer__col ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #2563eb;
  transition: width 0.3s ease;
}
.footer__col ul a:hover::after {
  width: 100%;
}
.footer__col p {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.footer {
  /* =========================
     BRAND
  ========================= */
}
.footer__logo img {
  width: 140px;
  margin-bottom: 1.5rem;
}
.footer__text {
  max-width: 280px;
  line-height: 1.6;
}
.footer {
  /* =========================
     SOCIAL
  ========================= */
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer__social a:hover {
  background: #2563eb;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4), 0 0 10px rgba(37, 99, 235, 0.6);
}
.footer {
  /* =========================
     BOTTOM
  ========================= */
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer__bottom p {
  font-size: 1.2rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 1.2rem;
  color: #94a3b8;
  text-decoration: none;
}
.footer__links a:hover {
  color: #2563eb;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .footer__logo img {
    margin: 0 auto 1.5rem;
  }
  .footer__text {
    margin: 0 auto;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 4rem;
  }
}
@media (max-width: 465px) {
  .footer__grid {
    grid-template-columns: 1fr;
    margin-bottom: 0rem;
  }
  .footer__col.footer__brand {
    display: grid;
    justify-items: center;
  }
}
.footer__logo {
  position: relative;
  width: 212px;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-wrapper {
  position: fixed;
  right: 2rem;
  bottom: 0rem;
  z-index: 9999;
}

.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 7rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  animation: whatsappFloat 2.5s ease-in-out infinite;
}
.whatsapp-float__text {
  width: 19rem;
  height: 4.4rem;
  overflow: hidden;
  background: rgba(11, 15, 25, 0.95);
  border-radius: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
}
.whatsapp-float__texts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: whatsappTextRotate 5s infinite;
}
.whatsapp-float__texts span {
  width: 100%;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}
.whatsapp-float__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float__icon {
  transform: scale(1.08);
}
.whatsapp-float:hover .whatsapp-float__text {
  transform: translateX(-4px);
}

/* =========================
   TEXT ROTATE
========================= */
@keyframes whatsappTextRotate {
  0%, 40% {
    transform: translateY(0);
  }
  50%, 90% {
    transform: translateY(-4.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
/* =========================
   FLOAT
========================= */
@keyframes whatsappFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 650px) {
  .whatsapp-float {
    right: 0.5rem;
    bottom: 3.5rem;
    align-items: flex-end;
    flex-direction: column;
    gap: 0.5rem;
  }
  .whatsapp-float__text {
    width: 13.5rem;
    height: 3.5rem;
  }
  .whatsapp-float__icon {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 2.7rem;
  }
  .whatsapp-float__texts span {
    height: 3.2rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
  @keyframes whatsappTextRotate {
    0%, 40% {
      transform: translateY(0);
    }
    50%, 90% {
      transform: translateY(-3.1rem);
    }
    100% {
      transform: translateY(0);
    }
  }
}
/* =========================
   FLOATING ACTIONS
========================= */
.floating-actions {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* =========================
   BACK BUTTON FLOAT
========================= */
.back-button {
  position: fixed;
  top: 10rem;
  left: 2rem;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 0rem;
  padding: 1rem 1.6rem;
  border-radius: 10rem;
  background: rgba(11, 15, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.back-button span {
  right: 3px;
  position: relative;
}
.back-button:hover {
  transform: translateY(-3px);
  background: #2563eb;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .back-button {
    top: auto;
    bottom: 5.5rem;
    left: 1rem;
    padding: 0.9rem 1.2rem;
  }
  .back-button span {
    font-size: 1.2rem;
  }
  .back-button i {
    font-size: 1.1rem;
  }
}
/* =========================
   HEADER
========================= */
.lottie.logo-lottie {
  height: 55px;
  width: auto;
  display: block;
  right: 11px;
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #0B0F19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header {
  /* LOGO */
}
.header__logo a {
  display: block;
}
.header {
  /* NAV DESKTOP */
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__link {
  text-decoration: none;
  font-size: 15px;
  color: #A1A1AA;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: #FFFFFF;
}
.header {
  /* =========================
     DROPDOWN SERVICIOS
  ========================= */
}
.header__dropdown {
  position: relative;
}
.header__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: color 0.25s ease;
}
.header__dropdown-toggle::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: 0.3s ease;
}
.header__dropdown:hover .header__dropdown-toggle {
  color: #FFFFFF;
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 1.6rem);
  left: 0;
  min-width: 26rem;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 2rem;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 200;
}
.header__dropdown-menu a {
  display: block;
  padding: 1.2rem 1.4rem;
  border-radius: 1.2rem;
  color: #E5E7EB;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.header__dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown:hover .header__dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}
.header {
  /* CTA */
}
.header__cta {
  font-size: 14px;
  margin-left: 24px;
}
.header {
  /* HAMBURGUESA */
}
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 500;
  margin-left: 16px;
  width: 30px;
  height: 24px;
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header {
  /* RESPONSIVE */
}
@media (max-width: 885px) {
  .header__nav, .header__cta {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
}

/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 800;
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =========================
   MOBILE NAV
========================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #0B0F19;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
  z-index: 900;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
.mobile-nav__content {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav__title {
  color: #CBD5E1;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mobile-nav a {
  display: block;
  color: #E5E7EB;
  margin-bottom: 10px;
  font-size: 14px;
}
.mobile-nav a:hover {
  color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

/* =========================
   HEADER FIXED & SCROLL
========================= */
body {
  padding-top: 80px;
}

.header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.services {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  line-height: 1.2;
  background-image: image-set(url(../img/catalog/fondo-desktop.avif) type('image/avif'), url(../img/catalog/fondo-desktop.webp) type('image/webp'), url(../img/catalog/fondo-desktop.jpg) type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.services__label {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #2563eb;
  margin-bottom: 1rem;
  font-weight: 900;
}
.services__heading {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.services__intro {
  max-width: 600px;
  margin: 0 auto 5rem auto;
  font-size: 1.6rem;
  color: #e7e7e7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.services__cta {
  margin-top: 5rem;
}

/* =========================
   CARD BASE (DESKTOP FIRST)
========================= */
.service-card {
  background: rgba(1, 6, 24, 0.6705882353);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* icono responsivo */
}
.service-card__icon {
  width: clamp(50px, 5vw, 74px);
  height: clamp(50px, 5vw, 74px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.25);
}
.service-card__icon .lottie {
  width: clamp(30px, 3vw, 48px);
  height: clamp(30px, 3vw, 48px);
}
.service-card h3 {
  font-size: 1.8rem;
  color: #fff;
  transition: 0.3s;
  padding: 1.2rem 0rem 0.5rem 0rem;
}
.service-card__link {
  margin-top: auto;
  font-size: 1.4rem;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
.service-card__link:hover {
  gap: 10px;
}

/* =========================
   OVER DESKTOP
========================= */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
  .service-card:hover h3 {
    color: #2563eb;
  }
}
/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =========================
   MOBILE BASE
========================= */
@media (max-width: 640px) {
  .services {
    padding: 5rem 0;
  }
  .services__heading {
    font-size: 2.6rem;
  }
  .services__intro {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  .service-card {
    padding: 1.8rem;
    min-height: 140px;
    border-radius: 14px;
  }
  .service-card h3 {
    font-size: 1.35rem;
  }
  .service-card__link {
    font-size: 1.2rem;
  }
}
.service-card__desc {
  font-size: 1.4rem;
}

/* =========================
   MOBILE EFFECT
========================= */
@media (max-width: 640px) {
  .service-card__main {
    transition: all 0.4s ease;
  }
  .service-card__desc {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.3rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
  }
  .service-card.active .service-card__main {
    opacity: 0;
    transform: translateY(-10px);
  }
  .service-card.active .service-card__desc {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 6px rgba(37, 99, 235, 0.8), 0 0 12px rgba(37, 99, 235, 0.5);
  }
}
/* =========================
 MOBILE TOUCH
========================= */
@media (max-width: 768px) {
  .service-card.touched {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.4);
    background: rgba(37, 99, 235, 0.08);
  }
  .service-card.touched h3 {
    color: #2563eb;
  }
  .service-card.touched .service-card__icon {
    background: #2563eb;
  }
}
/* =========================
  small
========================= */
@media (max-width: 380px) {
  .services__grid {
    gap: 1rem;
  }
  .service-card {
    padding: 1.6rem;
  }
}
.container-models {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 915px) {
  .container-models {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .container-models {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 465px) {
  .container-models {
    width: 98%;
    margin: 0 auto;
  }
}
.models {
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  line-height: 1.2;
  background-image: image-set(url(../img/blog/blog-desktop.avif) type('image/avif'), url(../img/blog/blog-desktop.webp) type('image/webp'), url(../img/blog/blog-desktop.jpg) type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.models__tag {
  font-size: 1.2rem;
  color: #2563EB;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.models__heading {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.models__subtitle {
  color: #e7e7e7;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  max-width: 600px;
  margin-inline: auto;
}
.models__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  justify-items: center;
}
.models {
  /* =========================
     CTA
  ========================= */
}
.models__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-radius: 14px;
  background: #0F172A;
  border: 1px solid #414141;
  gap: 2rem;
  text-align: left;
}
.models__cta-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.models__cta-left h4 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}
.models__cta-left p {
  font-size: 1.3rem;
  color: #E5E7EB;
}
.models__cta-right {
  white-space: nowrap;
}
.models__icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 2rem;
  flex-shrink: 0;
}

@media (max-width: 573px) {
  .models {
    background-image: image-set(url(../img/blog/blog-mobil.avif) type('image/avif'), url(../img/blog/blog-mobil.webp) type('image/webp'), url(../img/blog/blog-mobil.jpg) type('image/jpeg'));
    background-position: center;
    background-size: cover;
  }
  .models__cta-left {
    flex-direction: column;
    text-align: center;
  }
  .models__cta {
    padding: 2rem 1.5rem 2rem 1.5rem;
  }
}
/* =========================
   card modelo
========================= */
.model-card {
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: 14px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  align-items: center;
  text-align: left;
  transition: all 0.25s ease;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}
.model-card {
  /* =========================
     fix imagen
  ========================= */
}
.model-card__image {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E5E7EB;
}
.model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔥 SOLUCIÓN */
}
.model-card {
  /* =========================
     CONTENT
  ========================= */
}
.model-card__content h3 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #000000;
}
.model-card__role {
  font-size: 1.1rem;
  color: #2563EB;
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.model-card p {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.model-card__list {
  list-style: none;
  padding: 0;
}
.model-card__list li {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #64748b;
}

@media (max-width: 1100px) {
  .model-card {
    grid-template-columns: 149px 1fr;
  }
}
@media (max-width: 945px) {
  .model-card {
    grid-template-columns: 118px 1fr;
    padding: 1.6rem;
  }
  .model-card p {
    font-size: 1.1rem;
  }
  .model-card__list li {
    font-size: 1.05rem;
  }
}
@media (max-width: 465px) {
  .model-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 93%;
    padding: 1rem 1rem;
    height: 93%;
  }
  .model-card__content h3 {
    text-align: center;
  }
}
/* =========================
   BOTONES
========================= */
.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #2563EB;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.2s ease;
  background: #2563EB;
  margin: 0.9rem 0rem 0.9rem 0rem;
}
.btn-outline:hover {
  background: #2563EB;
  color: #fff;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  background: #2563EB;
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}
.btn-primary:hover {
  background: #1E40AF;
}

/* =========================
   RESPONSIVE FINAL
========================= */
@media (max-width: 768px) {
  .models__grid {
    grid-template-columns: 1fr;
  }
  .model-card__image img {
    object-fit: cover;
  }
  .models__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 573px) {
  .models__cta-left h4 {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }
}
@media (max-width: 465px) {
  .model-card__image {
    width: 75%;
    height: 100%;
  }
  .model-card__content {
    padding: 0px 20px 0 20px;
  }
}
.process {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
}
.process__label {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}
.process__heading {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}
.process {
  /* =========================
     STEPS
  ========================= */
}
.process__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 1.5rem;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.5), rgba(37, 99, 235, 0.15));
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process {
  /* =========================
     NUMERO CÍRCULO
  ========================= */
}
.process__step::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}
.process {
  /* =========================
     icon
  ========================= */
}
.process__icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.process__icon .lottie {
  width: 38px;
  height: 38px;
}
.process h3 {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  color: #111827;
}
.process p {
  font-size: 1.3rem;
  color: #6B7280;
  line-height: 1.5;
  margin-top: 0.6rem;
}
.process {
  /* =========================
     hover desktop
  ========================= */
}
@media (hover: hover) and (pointer: fine) {
  .process__step:hover .process__icon {
    transform: translateY(-6px) scale(1.1);
    background: #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5), 0 0 20px rgba(37, 99, 235, 0.4);
  }
  .process__step:hover h3 {
    color: #2563eb;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .process__icon {
    width: 50px;
    height: 50px;
  }
  .process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    justify-items: center;
  }
  .process__steps::before {
    display: none;
  }
  .process__step::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .process__steps {
    gap: 1rem 1rem;
    justify-items: inherit;
  }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .process {
    padding: 5rem 0;
  }
  .process__heading {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .process__icon {
    width: 45px;
    height: 45px;
  }
  .process__icon .lottie {
    width: 32px;
    height: 32px;
  }
  .process__step h3 {
    font-size: 1.4rem;
  }
  .process__step p {
    font-size: 1.2rem;
  }
}
@media (max-width: 450px) {
  .process__heading {
    font-size: 2rem;
    margin-bottom: 3rem;
    line-height: 1.2;
  }
  .process h3 {
    margin-top: 0;
  }
  .process__step p {
    margin: 0;
  }
}
/* =========================
   text mobile responsive
========================= */
@media (max-width: 600px) {
  .process__step {
    align-items: center;
  }
  /* 🔥 CONTENEDOR FIJO */
  .process__text {
    position: relative;
    height: 70px;
    margin-top: 1rem;
    width: 100%;
  }
  .process__text h3,
  .process__text p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    text-align: center;
  }
  .process__text p {
    opacity: 0;
    transform: translateY(10px);
  }
  .process__step.active h3 {
    opacity: 0;
    transform: translateY(-10px);
  }
  .process__step.active p {
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .process__text {
    margin-top: 0.6rem;
  }
}
/* =========================
   CONTENEDOR FULL WIDTH
========================= */
.container-clientes {
  width: 100%;
  margin: 0;
}

/* =========================
   SECCIÓN CLIENTES
========================= */
.clients {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  line-height: 1.2;
  overflow: hidden;
  background-image: image-set(url(../img/clients/client-background-desktop.avif) type('image/avif'), url(../img/catalog/client-background-desktop.webp) type('image/webp'), url(../img/catalog/client-background-desktop.jpg) type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* =========================
     TEXTOS
  ========================= */
}
.clients__title {
  font-size: 3.6rem;
  margin-bottom: 0.5rem;
}
.clients__subtitle {
  color: #9CA3AF;
  margin-bottom: 5rem;
  font-size: 1.5rem;
}
.clients {
  /* =========================
     WRAPPER IMÁGENES
  ========================= */
}
.clients__wrapper {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}
.clients__wrapper::before, .clients__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.clients__wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2823529412), transparent);
}
.clients__wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2823529412), transparent);
}
.clients {
  /* =========================
     TRACK IMÁGENES
  ========================= */
}
.clients__track {
  display: inline-flex;
  align-items: center;
  min-height: 250px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  contain: content;
  backface-visibility: hidden;
  perspective: 1000px;
}
.clients {
  /* =========================
     ITEMS
  ========================= */
}
.clients__item {
  flex-shrink: 0;
  min-width: 320px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}
.clients__item picture {
  width: 100%;
  height: 100%;
  display: block;
}
.clients__item picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.4s ease;
}
.clients {
  /* =========================
     HOVER SOLO DESKTOP
  ========================= */
}
@media (hover: hover) {
  .clients__item:hover img {
    transform: scale(1.03);
  }
}
.clients {
  /* =========================
     LOGOS
  ========================= */
}
.clients__logos {
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 60px;
  min-height: 120px;
}
.clients__logos-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.clients__logos-wrapper::-webkit-scrollbar {
  display: none;
}
.clients {
  /* =========================
     SMOOTH SOLO DESKTOP
  ========================= */
}
@media (min-width: 769px) {
  .clients__logos-wrapper {
    scroll-behavior: smooth;
  }
}
.clients__logos-track {
  display: inline-flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
}
.clients__logos-track img {
  height: 76px;
  filter: grayscale(100%) brightness(1.2);
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (hover: hover) {
  .clients__logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
  }
}
.clients {
  /* =========================
     FLECHAS
  ========================= */
}
.clients__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #2563eb;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  outline: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}
.clients__arrow--left {
  left: 10px;
}
.clients__arrow--right {
  right: 10px;
}
@media (hover: hover) {
  .clients__arrow:hover {
    opacity: 0.85;
  }
}
.clients__arrow:active {
  transform: translateY(-50%);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .clients {
    background-image: image-set(url(../img/clients/client-background-mobil.avif) type('image/avif'), url(../img/catalog/client-background-mobil.webp) type('image/webp'), url(../img/catalog/client-background-mobil.jpg) type('image/jpeg'));
    background-position: center;
    background-size: cover;
  }
  .clients__item {
    min-width: 290px;
    height: 220px;
  }
  .clients__logos-track img {
    height: 57px;
  }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .clients__item {
    min-width: 212px;
    height: 180px;
  }
  .clients__logos-track {
    gap: 2.3rem;
  }
  .clients__logos-track img {
    height: 46px;
  }
  .clients__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }
  .clients__arrow--left {
    left: 10px;
  }
  .clients__arrow--right {
    right: 15px;
  }
  .clients__subtitle {
    margin-bottom: 3.2rem;
  }
}
/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 495px) {
  .clients {
    padding: 2rem 0;
  }
  .clients__title {
    font-size: 2.6rem;
  }
}
@media (max-width: 396px) {
  .clients__item {
    min-width: 220px;
    height: 150px;
  }
  .clients__logos-track {
    gap: 1rem;
  }
  .clients__logos-track img {
    height: 32px;
  }
}
@media (max-width: 395px) {
  .clients__item {
    min-width: 160px;
    height: 150px;
  }
}
/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  contain: content;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox .lightbox__img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(37, 99, 235, 0.25);
  animation: zoomIn 0.3s ease;
}
.lightbox__close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3.5rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) {
  .lightbox__close:hover {
    color: #2563eb;
    transform: scale(1.1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox__prev {
  left: 25px;
}

.lightbox__next {
  right: 25px;
}

@media (hover: hover) {
  .lightbox__prev:hover,
  .lightbox__next:hover {
    color: #2563eb;
    transform: translateY(-50%) scale(1.1);
  }
}
/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(2rem);
  width: calc(100% - 3rem);
  max-width: 110rem;
  padding: 2rem 2.4rem;
  border-radius: 2.4rem;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
.cookie-banner__text span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #3B82F6;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cookie-banner__text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.5rem;
  line-height: 1.7;
}
.cookie-banner__text p a {
  color: #FFFFFF;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* =========================
   COOKIE BUTTONS
========================= */
.cookie-btn {
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 1.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.cookie-btn--primary {
  background: #2563EB;
  color: #fff;
}
.cookie-btn--primary:hover {
  transform: translateY(-2px);
}
.cookie-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================
   COOKIE MODAL
========================= */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10000;
}
.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}
.cookie-modal__card {
  width: 100%;
  max-width: 62rem;
  padding: 3rem;
  border-radius: 2.6rem;
  background: #0B0F19;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.cookie-modal__top h3 {
  color: #fff;
  font-size: 2.4rem;
}
.cookie-modal__top button {
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cookie-modal__bottom {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
}

/* =========================
   COOKIE OPTION
========================= */
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.cookie-option h4 {
  margin-bottom: 0.6rem;
  color: #fff;
  font-size: 1.7rem;
}
.cookie-option p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.4rem;
  line-height: 1.7;
}
.cookie-option input {
  width: 2rem;
  height: 2rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-banner__actions .cookie-btn {
    width: 100%;
  }
  .cookie-modal__card {
    padding: 2.4rem;
  }
  .cookie-modal__bottom {
    flex-direction: column;
  }
  .cookie-modal__bottom .cookie-btn {
    width: 100%;
  }
  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
HISTORIA
========================= */
.about-history {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.14), transparent 45%), linear-gradient(180deg, #020617 0%, #050b16 100%);
}
.about-history::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.04) 50%, transparent 100%);
  pointer-events: none;
}
.about-history__top {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 85rem;
  margin: 0 auto 7rem;
}
.about-history__top span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-history__top h2 {
  color: white;
  font-size: clamp(4rem, 5vw, 7rem);
  line-height: 1.05;
  margin-bottom: 3rem;
  font-weight: 800;
}
.about-history__top p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
  line-height: 1.8;
}
.about-history__timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 7rem;
}
.about-history__bottom {
  position: relative;
  z-index: 2;
}
.about-history__quote {
  max-width: 90rem;
  margin: 0 auto;
  padding: 5rem;
  border-radius: 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.about-history__quote span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
}
.about-history__quote p {
  color: white;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.5;
  font-weight: 700;
}

/* =========================
HISTORY CARD
========================= */
.history-card {
  position: relative;
  padding: 4rem 3rem;
  border-radius: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.4s ease;
  overflow: hidden;
}
.history-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(37, 99, 235, 0.12);
}
.history-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}
.history-card__number {
  color: rgba(37, 99, 235, 0.18);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
}
.history-card h3 {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
.history-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.7rem;
  line-height: 1.8;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-history {
    padding: 8rem 0;
  }
  .about-history__timeline {
    grid-template-columns: 1fr;
  }
  .about-history__top h2 {
    font-size: 4.8rem;
  }
  .about-history__top p {
    font-size: 1.8rem;
  }
  .about-history__quote {
    padding: 4rem 3rem;
  }
  .about-history__quote p {
    font-size: 2.4rem;
  }
}
@media (max-width: 576px) {
  .about-history {
    padding: 6rem 0;
  }
  .about-history__top {
    margin-bottom: 5rem;
  }
  .about-history__top h2 {
    font-size: 3.4rem;
  }
  .about-history__top p {
    font-size: 1.55rem;
  }
  .about-history__quote {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }
  .about-history__quote p {
    font-size: 1.9rem;
  }
  .history-card {
    padding: 3rem 2.2rem;
    border-radius: 2.2rem;
  }
  .history-card__number {
    font-size: 5rem;
  }
  .history-card h3 {
    font-size: 2.1rem;
  }
  .history-card p {
    font-size: 1.5rem;
  }
}
/* =========================
   HISTORIA
========================= */
.about-history {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.14), transparent 45%), linear-gradient(180deg, #020617 0%, #050b16 100%);
}
.about-history::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.04) 50%, transparent 100%);
  pointer-events: none;
}
.about-history__top {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 85rem;
  margin: 0 auto 7rem;
}
.about-history__top span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-history__top h2 {
  color: white;
  font-size: clamp(4rem, 5vw, 7rem);
  line-height: 1.05;
  margin-bottom: 3rem;
  font-weight: 800;
}
.about-history__top p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
  line-height: 1.8;
}
.about-history__timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 7rem;
}
.about-history__bottom {
  position: relative;
  z-index: 2;
}
.about-history__quote {
  max-width: 90rem;
  margin: 0 auto;
  padding: 5rem;
  border-radius: 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.about-history__quote span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
}
.about-history__quote p {
  color: white;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.5;
  font-weight: 700;
}

/* =========================
   HISTORY CARD
========================= */
.history-card {
  position: relative;
  padding: 4rem 3rem;
  border-radius: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.4s ease;
  overflow: hidden;
}
.history-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(37, 99, 235, 0.12);
}
.history-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}
.history-card__number {
  color: rgba(37, 99, 235, 0.18);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
}
.history-card h3 {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
.history-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.7rem;
  line-height: 1.8;
}

/* =========================
   ABOUT PROFILE
========================= */
.about-profile {
  padding: 8rem 0;
  background: linear-gradient(180deg, #081120 0%, #020617 100%);
}
.about-profile__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 32rem 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem;
  border-radius: 3.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}
.about-profile__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 35%);
  pointer-events: none;
}
.about-profile__image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 1/1;
  border-radius: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.about-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-profile__content {
  position: relative;
  z-index: 2;
}
.about-profile span {
  display: inline-block;
  margin-bottom: 1.8rem;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}
.about-profile h2 {
  color: white;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 2rem;
  max-width: 60rem;
}
.about-profile__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.75rem;
  line-height: 1.9;
  max-width: 70rem;
  margin-bottom: 3rem;
}
.about-profile__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.about-profile__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}
.about-profile__row:hover {
  transform: translateX(6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(37, 99, 235, 0.1);
}
.about-profile__row strong {
  min-width: 10rem;
  color: #2563eb;
  font-size: 2rem;
  font-weight: 800;
}
.about-profile__row p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.55rem;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-history {
    padding: 8rem 0;
  }
  .about-history__timeline {
    grid-template-columns: 1fr;
  }
  .about-history__top h2 {
    font-size: 4.8rem;
  }
  .about-history__top p {
    font-size: 1.8rem;
  }
  .about-history__quote {
    padding: 4rem 3rem;
  }
  .about-history__quote p {
    font-size: 2.4rem;
  }
  .about-profile {
    padding: 6rem 0;
  }
  .about-profile__card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem;
  }
  .about-profile__image {
    margin: 0 auto;
    max-width: 26rem;
  }
  .about-profile__content {
    text-align: center;
  }
  .about-profile__text {
    margin-left: auto;
    margin-right: auto;
  }
  .about-profile__row {
    text-align: left;
  }
}
@media (max-width: 650px) {
  .about-profile {
    padding: 5rem 0;
  }
  .about-profile__card {
    padding: 3rem 2.2rem;
    border-radius: 2.5rem;
  }
  .about-profile__image {
    max-width: 22rem;
    border-radius: 2rem;
  }
  .about-profile h2 {
    font-size: 3rem;
  }
  .about-profile__text {
    font-size: 1.55rem;
    line-height: 1.8;
  }
  .about-profile__row {
    gap: 1.5rem;
    padding: 1.4rem 1.6rem;
  }
  .about-profile__row strong {
    min-width: 8rem;
    font-size: 1.7rem;
  }
  .about-profile__row p {
    font-size: 1.35rem;
  }
}
@media (max-width: 576px) {
  .about-history {
    padding: 6rem 0;
  }
  .about-history__top {
    margin-bottom: 5rem;
  }
  .about-history__top h2 {
    font-size: 3.4rem;
  }
  .about-history__top p {
    font-size: 1.55rem;
  }
  .about-history__quote {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }
  .about-history__quote p {
    font-size: 1.9rem;
  }
  .history-card {
    padding: 3rem 2.2rem;
    border-radius: 2.2rem;
  }
  .history-card__number {
    font-size: 5rem;
  }
  .history-card h3 {
    font-size: 2.1rem;
  }
  .history-card p {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .about-profile__card {
    padding: 2.5rem 1.6rem;
  }
  .about-profile__image {
    max-width: 18rem;
  }
  .about-profile span {
    font-size: 1rem;
    letter-spacing: 0.22rem;
  }
  .about-profile h2 {
    font-size: 2.5rem;
  }
  .about-profile__text {
    font-size: 1.4rem;
  }
  .about-profile__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .about-profile__row strong {
    min-width: auto;
    font-size: 1.6rem;
  }
  .about-profile__row p {
    font-size: 1.3rem;
  }
}
/* =========================
   PORTFOLIO STATS
========================= */
.portfolio-stats {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 40%), linear-gradient(180deg, #020617 0%, #050b16 100%);
}
.portfolio-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.02) 50%, transparent 100%);
  pointer-events: none;
}
.portfolio-stats__top {
  text-align: center;
  margin-bottom: 2rem;
}
.portfolio-stats__top span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.portfolio-stats__top h2 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  max-width: 68rem;
  margin: 0 auto;
  color: #2563eb;
}
.portfolio-stats__top h2 strong {
  display: block;
  color: #2563eb;
}
.portfolio-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto 1rem;
  height: 15vh;
}
.portfolio-stats__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.portfolio-stats__bottom span {
  font-size: 1.5rem;
}
.portfolio-stats__bottom p {
  font-size: 1.35rem;
}

/* =========================
   CARD
========================= */
.portfolio-stat {
  position: relative;
  overflow: hidden;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 0.9rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.35s ease;
}
.portfolio-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 65%);
  opacity: 0;
  transition: 0.35s ease;
}
.portfolio-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(37, 99, 235, 0.1);
}
.portfolio-stat:hover::before {
  opacity: 1;
}
.portfolio-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
}
.portfolio-stat h3 {
  line-height: 1;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 18px rgba(37, 99, 235, 0.25);
  font-size: 2.1rem;
}
.portfolio-stat .line {
  width: 4rem;
  height: 0.3rem;
  border-radius: 10rem;
  background: #2563eb;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}
.portfolio-stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.35;
}

/* =========================
   PORTFOLIO CTA
========================= */
.portfolio-cta {
  padding: 8rem 0;
  background: #0b1120;
  text-align: center;
}
.portfolio-cta h2 {
  color: #0B0F19;
  font-size: clamp(3rem, 4vw, 4.6rem);
  max-width: 80rem;
  margin: 0 auto 2rem;
  line-height: 1.2;
}
.portfolio-cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 68rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
  font-size: 1.7rem;
}
.portfolio-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE 1024px
========================= */
@media (max-width: 1024px) {
  .portfolio-stats {
    padding: 3.5rem 0;
  }
  .portfolio-stats__top {
    margin-bottom: 2.3rem;
  }
  .portfolio-stats__top h2 {
    font-size: 2.5rem;
  }
  .portfolio-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 55rem;
    gap: 1.8rem;
    height: 13vh;
  }
  .portfolio-stat {
    max-width: 14rem;
  }
  .portfolio-stat__icon {
    width: 5.2rem;
    font-size: 2rem;
  }
  .portfolio-stat h3 {
    font-size: 1.8rem;
  }
}
/* =========================
   RESPONSIVE 650px
========================= */
@media (max-width: 650px) {
  .portfolio-stats, .portfolio-cta {
    padding: 3.5rem 0;
  }
  .portfolio-stats__top span {
    font-size: 1rem;
  }
  .portfolio-stats__top h2 {
    font-size: 1.9rem;
    max-width: 45rem;
  }
  .portfolio-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    max-width: 45rem;
    height: 11vh;
  }
  .portfolio-stats__bottom p {
    font-size: 1.25rem;
  }
  .portfolio-stat {
    padding: 0.9rem 1rem;
    border-radius: 1.8rem;
  }
  .portfolio-stat__icon {
    height: 3.5rem;
    font-size: 1.7rem;
  }
  .portfolio-cta h2 {
    font-size: 2.8rem;
  }
  .portfolio-cta p {
    font-size: 1.5rem;
  }
}
/* =========================
   RESPONSIVE 480px
========================= */
@media (max-width: 480px) {
  .portfolio-stats {
    padding: 2.4rem 0;
  }
  .portfolio-stats__top span {
    font-size: 0.95rem;
    letter-spacing: 0.2rem;
  }
  .portfolio-stats__top h2 {
    font-size: 1.9rem;
  }
  .portfolio-stats__grid {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 19rem;
    height: 19.5vh;
  }
  .portfolio-stats__bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
  .portfolio-stats__bottom p {
    font-size: 1.15rem;
    text-align: center;
  }
  .portfolio-stats__top {
    margin-bottom: 1.5rem;
  }
  .portfolio-stat {
    border-radius: 1.5rem;
    padding: 0.5rem 0.5rem;
  }
  .portfolio-stat__icon {
    height: 2rem;
    font-size: 1.5rem;
  }
  .portfolio-stat h3 {
    font-size: 1.7rem;
  }
  .portfolio-stat .line {
    width: 3rem;
    margin-bottom: 0.4rem;
  }
  .portfolio-stat p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .portfolio-cta h2 {
    font-size: 2.5rem;
  }
  .portfolio-cta p {
    font-size: 1.4rem;
  }
  .portfolio-cta__buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-cta__buttons .btn {
    width: 100%;
  }
}
/* =========================
   RESPONSIVE 375px
========================= */
@media (max-width: 375px) {
  .portfolio-stats__grid {
    gap: 0.7rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 17rem;
    height: 17.5vh;
  }
  .portfolio-stat__icon {
    height: 2rem;
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .portfolio-stat h3 {
    font-size: 1.4rem;
  }
  .portfolio-stat p {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .portfolio-stat .line {
    width: 3rem;
    margin-bottom: 0.4rem;
    height: 0.2rem;
  }
}
/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 11rem 0 7rem;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), transparent 45%), linear-gradient(180deg, #020617 0%, #050b16 100%);
  text-align: center;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.03) 50%, transparent 100%);
  pointer-events: none;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
  max-width: 85rem;
}
.contact-hero span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.contact-hero h1 {
  color: white;
  font-size: clamp(4.8rem, 6vw, 8rem);
  line-height: 1.05;
  margin-bottom: 2.5rem;
  font-weight: 800;
}
.contact-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
  line-height: 1.8;
  max-width: 70rem;
  margin: 0 auto;
}

/* =========================
   CONTACT INFO
========================= */
.contact-info {
  position: relative;
  padding: 0 0 8rem;
  background: #050b16;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

/* =========================
   CONTACT CARD
========================= */
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 3rem;
  border-radius: 2.8rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.35s ease;
  text-decoration: none;
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 35px rgba(37, 99, 235, 0.12);
}
.contact-card__icon {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-card h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.5rem;
  line-height: 1.6;
}

/* =========================
   CONTACT FORM SECTION
========================= */
.contact-form-section {
  position: relative;
  padding: 2rem 0 10rem;
  background: linear-gradient(180deg, #050b16 0%, #020617 100%);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  padding: 5rem;
  border-radius: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-form__info span {
  display: inline-block;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.contact-form__info h2 {
  color: white;
  font-size: clamp(3.8rem, 5vw, 5.8rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.contact-form__info p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.8rem;
  line-height: 1.8;
  max-width: 50rem;
}

/* =========================
   FORM ELEMENTS
========================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: white;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 2rem center/1.6rem, linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding-right: 5rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.contact-form select option {
  background: #ffffff;
  color: #0B0F19;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.8rem 2rem;
  border-radius: 1.8rem;
  color: white;
  font-size: 1.6rem;
  outline: none;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-group textarea {
  min-height: 18rem;
  resize: vertical;
}
.form-group select {
  cursor: pointer;
}

.contact-form .btn {
  width: fit-content;
  min-width: 22rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-form__info h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 650px) {
  .contact-hero {
    padding: 9rem 0 5rem;
  }
  .contact-hero h1 {
    font-size: 4.5rem;
  }
  .contact-hero p {
    font-size: 1.7rem;
  }
  .contact-info {
    padding-bottom: 5rem;
  }
  .contact-info__grid {
    gap: 1.5rem;
  }
  .contact-card {
    padding: 2.5rem 2rem;
    border-radius: 2rem;
  }
  .contact-card__icon {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 2rem;
  }
  .contact-card h3 {
    font-size: 1.8rem;
  }
  .contact-card p {
    font-size: 1.35rem;
  }
  .contact-form-section {
    padding-bottom: 7rem;
  }
  .contact-form-wrapper {
    padding: 3rem 2rem;
    border-radius: 2.2rem;
  }
  .contact-form__info h2 {
    font-size: 3.5rem;
  }
  .contact-form__info p {
    font-size: 1.6rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 1.45rem;
    padding: 1.6rem;
  }
  .contact-form .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 3.6rem;
  }
  .contact-hero p {
    font-size: 1.5rem;
  }
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__info h2 {
    font-size: 3rem;
  }
}
.legal-page {
  padding: 8rem 0;
}
.legal-page__container {
  max-width: 90rem;
}
.legal-page__header {
  margin-bottom: 6rem;
}
.legal-page__header span {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: #3B82F6;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legal-page__header h1 {
  margin-bottom: 2.4rem;
  font-size: clamp(3.6rem, 5vw, 5.8rem);
  line-height: 1.1;
  color: #FFFFFF;
}
.legal-page__header p {
  max-width: 72rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.7rem;
  line-height: 1.9;
}
.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-block {
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.legal-block:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.legal-block h2 {
  margin-bottom: 1.8rem;
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1.3;
}
.legal-block p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.6rem;
  line-height: 1.95;
}

.legal-small {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 6rem 0;
  }
  .legal-page__header {
    margin-bottom: 4rem;
  }
  .legal-page__header h1 {
    font-size: 4rem;
  }
  .legal-page__header p {
    font-size: 1.6rem;
  }
  .legal-block {
    padding: 2.4rem;
  }
  .legal-block h2 {
    font-size: 2rem;
  }
  .legal-block p {
    font-size: 1.5rem;
  }
  .legal-small {
    font-size: 1.2rem;
  }
}
/* =========================
POPUP OFFER
========================= */
.popup-offer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup-offer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.popup-offer {
  /* overlay */
}
.popup-offer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.popup-offer {
  /* content */
}
.popup-offer__content {
  position: relative;
  width: min(100%, 52rem);
  padding: 4rem 3rem;
  border-radius: 2.4rem;
  background: #fff;
  text-align: center;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: popupScale 0.35s ease;
}
.popup-offer {
  /* close */
}
.popup-offer__close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  border: none;
  background: transparent;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  color: #374151;
}
.popup-offer {
  /* tag */
}
.popup-offer__tag {
  display: inline-flex;
  padding: 0.8rem 1.6rem;
  margin-bottom: 2rem;
  border-radius: 99rem;
  background: #111827;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.popup-offer {
  /* title */
}
.popup-offer__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
}
.popup-offer {
  /* text */
}
.popup-offer__text {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4b5563;
}
.popup-offer {
  /* button */
}
.popup-offer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.2rem;
  padding: 1.4rem 2rem;
  border-radius: 1.4rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.popup-offer__button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* =========================
ANIMATION
========================= */
@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* =========================
MOBILE
========================= */
@media (max-width: 768px) {
  .popup-offer__content {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }
  .popup-offer__title {
    font-size: 2.5rem;
  }
  .popup-offer__text {
    margin-bottom: 2.4rem;
    font-size: 1.5rem;
  }
  .popup-offer__button {
    font-size: 1.5rem;
  }
}
/* =========================
   HERO INTERNO
========================= */
.hero-internal {
  position: relative;
  padding: 5rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.95));
}
.hero-internal::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
  z-index: 0;
}
.hero-internal .container {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero-internal h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-internal p {
  font-size: 1.6rem;
  color: #A1A1AA;
}

@media (max-width: 665px) {
  .hero-internal h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 527px) {
  .hero-internal h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 380px) {
  .hero-internal h1 {
    font-size: 2.3rem;
  }
  .hero-internal p {
    font-size: 1.3rem;
  }
}
/* =========================
   SERVICES
========================= */
.services-pro {
  padding: 10rem 0;
  background-image: image-set(url(../img/catalog/fondo-mobil.avif) type('image/avif'), url(../img/catalog/fondo-mobil.webp) type('image/webp'), url(../img/catalog/fondo-mobil.jpg) type('image/jpeg'));
  background-position: center;
  background-size: cover;
}
.services-pro__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.services-pro__tag {
  color: #2563eb;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.services-pro__title {
  font-size: 3.6rem;
  margin: 1rem 0 2rem;
}
.services-pro__content {
  max-width: 420px;
}
.services-pro__desc {
  font-size: 1.6rem;
  color: #A1A1AA;
  line-height: 1.6;
  margin-top: 1rem;
}
.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.services-pro {
  /* CARD CON IMAGEN */
}
.services-pro .service-card--image {
  padding: 0;
  overflow: hidden;
  gap: 0.5rem;
}
.services-pro .service-card--image .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.services-pro .service-card--image h3 {
  padding: 0.8rem 2rem 0;
  text-align: center;
}
.services-pro .service-card--image .service-card__desc {
  padding: 0 2rem;
}
@media (max-width: 460px) {
  .services-pro .service-card--image .service-card__desc {
    padding: 0 0.7rem;
    text-align: center;
    text-shadow: 0 0 black;
  }
}
.services-pro .service-card--image .service-card__link {
  padding: 1rem 2rem 2rem;
  text-align: center;
  display: inline;
}

@media (max-width: 480px) {
  .services-pro .service-card--image .service-card__desc {
    padding: 0.8rem 1rem 0;
    text-align: center;
  }
}
/* =========================
   RESPONSIVE SERVICES
========================= */
@media (max-width: 1024px) {
  .services-pro {
    padding: 5rem 0;
  }
  .services-pro__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: inherit;
  }
  .services-pro__desc {
    display: none;
  }
}
@media (max-width: 865px) {
  .services-pro {
    background-image: image-set(url(../img/catalog/fondo-mobil.avif) type('image/avif'), url(../img/catalog/fondo-mobil.webp) type('image/webp'), url(../img/catalog/fondo-mobil.jpg) type('image/jpeg'));
    background-position: center;
    background-size: cover;
  }
  .services-pro__title {
    line-height: 1.3;
    font-size: 2.5rem;
  }
}
@media (max-width: 640px) {
  .services-pro__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .services-pro .service-card--image .service-card__desc {
    position: static;
    opacity: 1;
    transform: none;
    text-align: center;
    color: #A1A1AA;
    padding: 0.8rem 1rem 0;
    text-shadow: 0 0 black;
  }
  .services-pro .service-card {
    min-height: auto;
  }
  .services-pro .service-card__main {
    opacity: 1 !important;
    transform: none !important;
  }
  .service-card__link {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .services-pro__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .services-pro__title {
    font-size: 2.1rem;
  }
  .services-pro .service-card--image .service-card__desc {
    padding: 0.8rem 1rem 0;
    text-align: center;
  }
  .service-card__link {
    font-size: 1.3rem;
  }
}
/* =========================
   DIFERENCIAL
========================= */
.why {
  padding: 8rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.06), transparent 70%);
}
.why h2 {
  font-size: 3.4rem;
  margin-bottom: 1rem;
}
.why__intro {
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.6rem;
  color: #A1A1AA;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.why__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  transition: 0.3s;
}
.why__item h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}
.why__item p {
  font-size: 1.4rem;
  color: #A1A1AA;
}
.why__item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why h2 {
    font-size: 2.6rem;
  }
  .why__intro {
    font-size: 1.4rem;
  }
}
/* =========================
   CTA
========================= */
.cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(2, 6, 23, 0.9));
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.25), transparent 70%);
  z-index: 0;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.5rem;
  color: #A1A1AA;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .cta {
    padding: 6rem 0;
  }
  .cta h2 {
    font-size: 2.4rem;
  }
  .cta p {
    font-size: 1.3rem;
  }
}
/* ==========================================
   INTRO SECTION
   ========================================== */
.catalog-intro {
  padding: 5rem 0;
  text-align: center;
}
.catalog-intro h1 {
  font-size: 5.4rem;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}
.catalog-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #A1A1AA;
  font-size: 1.6rem;
  line-height: 1.6;
}
.catalog-intro {
  /* 🔥 LIGHT MODE INTRO */
}
.catalog-intro--light {
  position: relative;
  padding: 9rem 0;
  line-height: 1.2;
  background: image-set(url("../img/catalog/banner-proyect-d.avif") type('image/avif'), url("../img/catalog/banner-proyect-d.webp") type('image/webp'), url("../img/catalog/banner-proyect-d.jpg") type('image/jpeg')) center/cover no-repeat;
  overflow: hidden;
}
.catalog-intro--light h1 {
  color: #0B0F19;
  margin-bottom: 3rem;
}
.catalog-intro--light p {
  color: #252a31;
  font-weight: 600;
}

/* ==========================================
   CATÁLOGO (Slider & Items)
   ========================================== */
.service-catalog {
  position: relative;
  padding: 9rem 0;
  line-height: 1.2;
  background: image-set(url(../img/catalog/fondo-desktop.avif) type('image/avif'), url(../img/catalog/fondo-desktop.webp) type('image/webp'), url(../img/catalog/fondo-desktop.jpg) type('image/jpeg')) center/cover no-repeat;
  overflow: hidden;
}
.service-catalog h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 5rem;
  color: #fff;
}

.catalog-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  /* 🚀 OPTIMIZACIÓN: Reserva espacio para evitar Redistribución forzada */
  min-height: 450px;
}

.catalog-item {
  background: rgba(1, 6, 24, 0.6705882353);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.catalog-item:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.catalog-images {
  position: relative;
  aspect-ratio: 16/11; /* 🚀 Previene saltos de diseño (CLS) */
  overflow: hidden;
  background: #0b0f19;
}
.catalog-images .catalog-track picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.catalog-images .catalog-track picture.active {
  opacity: 1;
}
.catalog-images .catalog-track picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navegación del Slider */
.catalog-prev,
.catalog-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}
.catalog-prev:hover,
.catalog-next:hover {
  background: #2563eb;
}

.catalog-prev {
  left: 10px;
}

.catalog-next {
  right: 10px;
}

/* Detalles del Contenido */
.catalog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.catalog-content h3 {
  font-size: 1.8rem;
  color: #fff;
}
.catalog-content p {
  font-size: 1.4rem;
  color: #A1A1AA;
}
.catalog-content .btn {
  margin: 1rem auto 0;
  width: min(100%, 301px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.catalog-features {
  padding: 0;
  list-style: none;
}
.catalog-features li {
  font-size: 1.3rem;
  color: #D4D4D8;
  margin-bottom: 0.4rem;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #9CA3AF;
}

/* ==========================================
   3. TRUST SECTION
   ========================================== */
.catalog-trust {
  padding: 5rem 0;
  text-align: center;
}
.catalog-trust h3 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.3rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}
.catalog-trust {
  /* 🔥 LIGHT MODE TRUST */
}
.catalog-trust--light {
  position: relative;
  padding: 6rem 0;
  background: image-set(url("../img/catalog/banner-proyect-d.avif") type('image/avif'), url("../img/catalog/banner-proyect-d.webp") type('image/webp'), url("../img/catalog/banner-proyect-d.jpg") type('image/jpeg')) center/cover no-repeat;
  overflow: hidden;
}
.catalog-trust--light h3 {
  color: #0B0F19;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.trust-grid div {
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-grid div:hover {
  transform: translateY(-8px);
}
.trust-grid div h4 {
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  color: #2563eb;
  margin-bottom: 0.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.trust-grid div p {
  color: #4B5563;
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 auto;
}

/* ==========================================
   4. BLOG SECTION
   ========================================== */
.catalog-blog {
  position: relative;
  padding: 9rem 0;
  line-height: 1.2;
  background: image-set(url(../img/blog/blog-desktop.avif) type('image/avif'), url(../img/blog/blog-desktop.webp) type('image/webp'), url(../img/blog/blog-desktop.jpg) type('image/jpeg')) center/cover no-repeat;
  overflow: hidden;
}
.catalog-blog__intro {
  max-width: 750px;
  margin: 0 auto 4rem;
  text-align: center;
}
.catalog-blog__intro h3 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 2rem;
}
.catalog-blog__intro p {
  color: #A1A1AA;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: rgba(18, 2, 23, 0.7882352941);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.blog-card img {
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-content h4 {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.4;
}
.blog-content p {
  font-size: 1.35rem;
  color: #A1A1AA;
  line-height: 1.6;
}

.blog-tag {
  font-size: 1.1rem;
  color: #2563eb;
  font-weight: 600;
}

.blog-cta {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: #D4D4D8;
  font-style: italic;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1110px) {
  .catalog-intro--light {
    padding: 5.5rem 7rem;
  }
  .catalog-intro h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 890px) {
  .catalog-intro h1 {
    font-size: 4rem;
  }
}
@media (max-width: 835px) {
  .service-catalog {
    background-image: image-set(url(../img/catalog/fondo-mobil.avif) type('image/avif'), url(../img/catalog/fondo-mobil.webp) type('image/webp'), url(../img/catalog/fondo-mobil.jpg) type('image/jpeg'));
    background-position: center;
    background-size: cover;
  }
  .catalog-blog {
    background-image: image-set(url(../img/blog/blog-mobil.avif) type('image/avif'), url(../img/blog/blog-mobil.webp) type('image/webp'), url(../img/blog/blog-mobil.jpg) type('image/jpeg'));
    background-position: center;
    background-size: cover;
  }
}
@media (max-width: 800px) {
  .catalog-intro--light {
    padding: 4.5rem 5.5rem;
  }
  .catalog-intro--light p {
    line-height: 1.4;
  }
}
@media (max-width: 705px) {
  .catalog-slider {
    grid-template-columns: 1fr;
  }
  .catalog-content {
    gap: 0.2rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .catalog-blog {
    padding: 5rem 0;
  }
  .catalog-blog__intro h3 {
    font-size: 3.5rem;
  }
}
@media (max-width: 640px) {
  .catalog-intro h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.9rem;
  }
  .service-catalog h2 {
    font-size: 2.4rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
  }
  .catalog-blog__intro h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .catalog-blog__intro p {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
}
@media (max-width: 485px) {
  .catalog-prev {
    left: 5px;
  }
  .catalog-next {
    right: 5px;
  }
}
@media (max-width: 480px) {
  .catalog-intro--light {
    background-image: image-set(url("../img/catalog/banner-proyect-m.avif") type('image/avif'), url("../img/catalog/banner-proyect-m.webp") type('image/webp'), url("../img/catalog/banner-proyect-m.jpg") type('image/jpeg'));
    padding: 5.5rem 0;
  }
  .catalog-trust--light {
    background-image: image-set(url("../img/catalog/banner-proyect-m.avif") type('image/avif'), url("../img/catalog/banner-proyect-m.webp") type('image/webp'), url("../img/catalog/banner-proyect-m.jpg") type('image/jpeg'));
    background-position: center;
    background-size: cover;
  }
  .catalog-trust--light .container {
    margin: 0;
    width: 100%;
    padding: 0 6px;
  }
}
@media (max-width: 390px) {
  .catalog-content p {
    font-size: 1.1rem;
  }
  .catalog-features li {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .catalog-intro--light p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0 -9px 11px -9px;
  }
  .catalog-intro h1 {
    font-size: 3rem;
    line-height: 1.05;
    margin: 0 -9px 11px -9px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .blog-content {
    padding: 1.8rem;
    gap: 0.8rem;
  }
  .blog-content h4 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .blog-content p {
    line-height: 1.4;
    font-size: 1.2rem;
  }
  .catalog-content .btn {
    font-size: 1.4rem;
    padding: 1rem;
  }
}
@media (max-width: 385px) {
  .catalog-prev, .catalog-next {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 290px) {
  .service-catalog h2 {
    font-size: 2.1rem;
    line-height: 1.3;
  }
}
/* =========================
MODEL PROFILE
========================= */
.perfil-intro {
  padding: 3rem 0;
}

.model-profile {
  padding: 3rem 0 5rem;
  background-image: image-set(url(../img/blog/blog-desktop.avif) type('image/avif'), url(../img/blog/blog-desktop.webp) type('image/webp'), url(../img/blog/blog-desktop.jpg) type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.container-model-profile {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================
HEADER
========================= */
.model-profile__header {
  text-align: center;
  margin-bottom: 1rem;
}
.model-profile__header span {
  display: inline-flex;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  background: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}
.model-profile__header h2 {
  font-size: 5rem;
  color: #000000;
  line-height: 1.1;
  margin: 0 0 2rem;
}
.model-profile__header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #252a31;
  padding: 0 1rem;
}

/* =========================
CARD
========================= */
.model-profile-card {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 6rem;
  padding: 3rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgb(0, 0, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

/* =========================
GALERÍA
========================= */
.model-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  background: rgba(1, 6, 24, 0);
  border: none;
  padding: 0.5rem;
}

.model-gallery__main {
  position: relative;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.model-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(1.01);
  cursor: zoom-in;
}

.model-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* ocultar thumbs */
.model-gallery__thumbs {
  display: none;
}

/* NAV */
.model-gallery__prev,
.model-gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.model-gallery__prev:hover,
.model-gallery__next:hover {
  background: #2563eb;
}

.model-gallery__prev {
  left: 12px;
}

.model-gallery__next {
  right: 12px;
}

/* =========================
INFO
========================= */
.model-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  min-width: 0;
}

.model-info h1 {
  font-size: 5rem;
  color: #fff;
  line-height: 1.05;
  margin: 0;
}

.model-info p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #A1A1AA;
  max-width: 600px;
  margin: 0;
}

.model-info__tag {
  width: fit-content;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #2563eb;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.model-info__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 1.2rem 2.5rem;
  padding: 0;
  margin: 0;
}

.model-info__list li {
  color: #D4D4D8;
  font-size: 1.45rem;
  list-style: none;
}

.model-info .btn {
  margin-top: 1rem;
  width: fit-content;
}

/* =========================
TABLET LARGE
========================= */
@media (max-width: 1150px) {
  .model-profile__header h2 {
    font-size: 4.3rem;
  }
  .model-profile__header p {
    font-size: 1.5rem;
  }
  .model-profile-card {
    grid-template-columns: 390px 1fr;
    gap: 4rem;
  }
  .model-slide {
    height: 450px;
  }
  .model-info h1 {
    font-size: 4rem;
  }
  .model-info p {
    font-size: 1.5rem;
  }
  .model-info__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* =========================
TABLET
========================= */
@media (max-width: 980px) {
  .model-profile__header h2 {
    font-size: 3.8rem;
  }
  .model-profile-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 3rem;
  }
  .model-gallery {
    max-width: 520px;
    margin: 0 auto;
  }
  .model-slide {
    height: 500px;
  }
  .model-info {
    text-align: center;
    align-items: center;
  }
  .model-info h1 {
    font-size: 4rem;
  }
  .model-info p {
    max-width: 680px;
  }
  .model-info__tag {
    margin: 0 auto;
  }
  .model-info__list {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }
}
/* =========================
MOBILE
========================= */
@media (max-width: 640px) {
  .model-profile {
    padding: 2rem 0 4rem;
  }
  .model-profile__header {
    margin-bottom: 0;
  }
  .model-profile__header span {
    font-size: 1rem;
    padding: 0.7rem 1.3rem;
  }
  .model-profile__header h2 {
    font-size: 3rem;
  }
  .model-profile__header p {
    font-size: 1.45rem;
    line-height: 1.7;
  }
  .model-profile-card {
    padding: 1.6rem;
    border-radius: 22px;
    gap: 2.5rem;
  }
  .model-slide {
    height: 360px;
  }
  .model-info {
    gap: 1.5rem;
  }
  .model-info h1 {
    font-size: 3rem;
  }
  .model-info p {
    font-size: 1.45rem;
  }
  .model-info__list {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .model-info .btn {
    width: 100%;
    text-align: center;
  }
}
/* =========================
SMALL MOBILE
========================= */
@media (max-width: 420px) {
  .model-profile__header h2 {
    font-size: 2.5rem;
  }
  .model-profile__header p {
    font-size: 1.35rem;
  }
  .model-slide {
    height: 335px;
  }
  .model-info h1 {
    font-size: 2.5rem;
  }
  .model-info p {
    font-size: 1.35rem;
    line-height: 1.7;
  }
  .model-info__list li {
    font-size: 1.3rem;
  }
}
/* =========================
LIGHTBOX TRACK
========================= */
.model-lightbox-track {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}/*# sourceMappingURL=app.css.map */
