@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-light-blue: #0473f0;
  --clr-white: #f4f9fe;
  --ff-titles: "Bricolage Grotesque", sans-serif;
  --ff-texts: "Rubik", sans-serif;
}

body {
  background-color: var(--clr-white);
  color: #292827;
  overflow-x: hidden;
}

.header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
  background-color: var(--clr-white);
  z-index: 1000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #292827;
  border-radius: 4px;
  transition: 0.4s;
}

.menu-list {
  display: flex;
  list-style-type: none;
  gap: 1rem;
  font-family: var(--ff-titles);
  font-weight: 700;
}

.menu-item {
  padding: 5px 15px;
}

.menu-item a {
  color: #292827;
  text-decoration: none;
}

.contactoBtn:hover {
  color: var(--clr-white);
  transition: 0.2s;
}

.menu-item:last-of-type {
  background-color: var(--clr-light-blue);
  padding: 5px 15px;
  border-radius: 0.5rem;
  color: var(--clr-white);
}

.logo {
  font-family: var(--ff-titles);
  font-size: 2.5rem;
  font-weight: 800;
}

/* =====================
   HERO BASE
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* =====================
   CAPA DECORATIVA FULL VIEWPORT
===================== */

.hero-deco-layer {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* decoraciones */
.hero-deco {
  position: absolute;
  width: 320px;
  opacity: 0.4;
}

/* esquina abajo izquierda */
.hero-deco-bottom-left {
  bottom: 10%;
  left: 5%;
  transform: rotate(180deg);
}

/* esquina arriba derecha */
.hero-deco-top-right {
  top: 10%;
  right: 5%;
}

/* =====================
   CONTENIDO
===================== */

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-intro {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 2rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  position: absolute;
  max-width: 100%;
  opacity: 0.3;
  transform: rotate(-10deg);
}

.hero-title {
  font-family: var(--ff-titles);
  font-size: 4rem;
  line-height: 1;
}

.hero-text {
  font-family: var(--ff-texts);
  font-size: 1.15rem;
}

.hero-text span {
  color: var(--clr-light-blue);
  font-weight: 900;
  opacity: 0.88;
}

.hero-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 15px;
  background: linear-gradient(90deg, var(--clr-light-blue), transparent);
  border-radius: 10px;
  opacity: 0.5;
}

.clientes-section {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  background-color: var(--clr-white);
}

.clientes-section::after {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.1;
  background-image: url("../img/background-hero-circle-&-dots.png");
  background-size: contain;
  background-position: center;

  mix-blend-mode: multiply;
  /* 🔥 más integrado */

  pointer-events: none;
  z-index: 100;
}

.clientes-container {
  max-width: 900px;
  margin: 0 auto;
}

.clientes-title {
  font-family: var(--ff-titles);
  font-size: 4rem;
  font-weight: 900;
  color: var(--clr-light-blue);
  margin-bottom: 0.5rem;
}

.clientes-subtitle {
  font-family: var(--ff-texts);
  font-size: 1.4rem;
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

.clientes-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.clientes-logos img {
  max-width: 240px;
  height: auto;
  opacity: 0.8;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.clientes-logos img:last-of-type {
  filter: brightness(0);
}

.clientes-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 768px) {
  .clientes-section {
    padding: 6rem 1rem;
  }

  /* 👇 decorativo más liviano */
  .clientes-section::after {
    opacity: 0.1;
    background-size: 100%;
    background-position: center;
  }

  .clientes-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .clientes-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  /* 👇 logos mejor distribuidos */
  .clientes-logos {
    justify-content: center;
    gap: 2rem;
  }

  .clientes-logos img {
    max-width: 120px;
  }

}

/* =====================
   STATS
===================== */

.hero-stats {
  margin: 5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stat {
  display: flex;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-stat .hover-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--clr-light-blue);
  transform-origin: bottom;
  transform: scaleY(0);
  z-index: -1;
}

.hero-stat>* {
  position: relative;
  z-index: 2;
  padding: 5% 5% 0;
}

.hero-stat.last {
  align-items: end;
}

.hero-stat.center {
  align-items: center;
}

.hero-stats .number {
  font-family: var(--ff-titles);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats .text {
  font-family: var(--ff-texts);
  font-size: 0.8rem;
}

/* hero services */
.hero-services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 5% 12% 2%;
}

.hero-services-container:last-of-type {
  padding-bottom: 6%;
}

.hero-services-item {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-flow: column;
  justify-content: space-between;

  border: 4px solid var(--clr-light-blue);
  padding: 5% 5%;
  border-radius: 0.5rem;

  font-family: var(--ff-texts);
  line-height: 1.4;

  color: var(--clr-light-blue);
  transition:
    color 0.4s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

/* capa de relleno */
.hero-services-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--clr-light-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -10;
}

/* imagen decorativa */
.hero-services-item::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;

  width: 100%;
  height: 100%;

  background-image: url("../img/background-points-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;

  pointer-events: none;

  opacity: 0.05;
  transition:
    opacity 0.4s ease,
    transform 0.5s ease;

  filter: brightness(0);

  z-index: 0;
}

.hero-services-item:hover::after,
.hero-services-item:active::after,
.hero-services-item:focus-visible::after {
  transition: 0.4s;
  filter: brightness(100);
}

/* contenido por encima */
.hero-services-item>* {
  position: relative;
  z-index: 1;
}

/* hover + mobile */
.hero-services-item:hover::before,
.hero-services-item:active::before,
.hero-services-item:focus-visible::before {
  transform: scaleY(1);
}

.hero-services-item:hover,
.hero-services-item:active,
.hero-services-item:focus-visible {
  color: var(--clr-white);
}

/* título */
.hero-services-item span {
  font-family: var(--ff-titles);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* etiqueta de descuento */
.price-discount {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;

  background-color: var(--clr-light-blue);
  color: var(--clr-white);

  line-height: 1;
}

/* cuando está en hover y cambia el fondo */
.hero-services-item:hover .price-discount,
.hero-services-item:active .price-discount,
.hero-services-item:focus-visible .price-discount {
  background-color: var(--clr-white);
  color: var(--clr-light-blue);
}

.hero-services-item-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #292827;
  margin-bottom: 1rem;
}

/* CTA en hover / active */
.hero-services-item:hover p,
.hero-services-item:active p,
.hero-services-item:focus-visible p {
  color: var(--clr-white);
}

/* CTA / botón */
.hero-services-item span:last-of-type {
  display: inline-block;
  width: fit-content;

  font-size: 1.2rem;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;

  background-color: #292827;
  color: var(--clr-white);

  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* CTA en hover / active */
.hero-services-item:hover span:last-of-type,
.hero-services-item:active span:last-of-type,
.hero-services-item:focus-visible span:last-of-type {
  background-color: var(--clr-white);
  color: var(--clr-light-blue);
}

/* modal */
/* OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

/* MODAL */
.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  width: 90%;
  max-width: 620px;
  background: var(--clr-white);
  color: #292827;
  border: 4px solid var(--clr-light-blue);
  border-radius: 0.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  z-index: 1000;
  pointer-events: none;
  /* 🔥 CLAVE */
}

.modal-content {
  padding: 32px 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: 900;
  color: var(--clr-light-blue);
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

/* ===== PLAN MODAL CONTENT ===== */

.modal-content {
  max-height: 75vh;
  overflow-y: auto;
  font-family: var(--ff-texts);
}

/* Título principal */
.plan-title {
  font-family: var(--ff-titles);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--clr-light-blue);
  /* gris oscuro */
}

/* Subtítulo */
.plan-subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

/* Secciones */
.plan-section {
  padding: 18px 0;
  border-top: 1px solid #e5e7eb;
}

.plan-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* Títulos de sección */
.plan-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #292827;
  margin-bottom: 10px;
}

/* Listas */
.plan-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Items */
.plan-section li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #292827;
}

/* Bullet moderno */
.plan-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clr-light-blue);
  /* azul SaaS */
  font-size: 18px;
  line-height: 1;
}

/* Negritas */
.plan-section strong {
  font-weight: 600;
  color: #292827;
}

/* Texto secundario */
.plan-section small {
  font-size: 12px;
  opacity: 0.8;
}

/* Scrollbar discreta */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

/* modal video de muestra */
/* ===== VIDEO DEMO ===== */

.plan-video-section {
  padding-bottom: 0;
}

.plan-video-text {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 14px;
  max-width: 95%;
}

.plan-video-wrapper {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--clr-light-blue);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Video */
.plan-video-wrapper img {
  width: 100%;
  height: 400px;
  display: block;
  margin: 1rem 0;
}

/* wrapper original se mantiene */

/* SLIDER */
.plan-video-wrapper .pvw-slider {
  position: relative;
  overflow: hidden;
}

.plan-video-wrapper .pvw-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.plan-video-wrapper .pvw-slide {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* NAV */
.plan-video-wrapper .pvw-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.plan-video-wrapper .pvw-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.plan-video-wrapper .pvw-prev {
  left: 10px;
}

.plan-video-wrapper .pvw-next {
  right: 10px;
}

/* ocultar nav si hay 1 imagen */
.plan-video-wrapper.pvw-single .pvw-nav {
  display: none;
}

/* LIGHTBOX FULLSCREEN (aislado) */
.pvw-lightbox {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
  /* evita que la imagen toque bordes */
  box-sizing: border-box;
}

.pvw-lightbox.pvw-active {
  opacity: 1;
  pointer-events: all;
}

.pvw-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pvw-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

/* Mobile ajustes video de muestra */
@media (max-width: 480px) {
  .plan-video-text {
    font-size: 13px;
  }

  .plan-video-wrapper {
    border-radius: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .plan-title {
    font-size: 22px;
  }

  .plan-section h3 {
    font-size: 15px;
  }

  .plan-section li {
    font-size: 13px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .modal {
    width: 94%;
    border-radius: 14px;
  }

  .modal-content {
    padding: 24px 18px;
  }
}

/* video */
.videoContainer {
  width: 100%;
  min-height: 90vh;
  background-color: var(--clr-light-blue);
  display: flex;
  align-items: center;
  padding: 4rem 6%;
  position: relative;
  z-index: 0;
}

/* elemento decorativo */
.videoContainer::after {
  content: "";
  position: absolute;

  width: 360px;
  height: 360px;

  background-image: url("../img/background-hero-corner-grey.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  bottom: 0;
  left: 0;

  pointer-events: none;
  z-index: -1;
  filter: brightness(100);
}

.videoContent {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Texto */
.videoText h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  font-family: var(--ff-titles);
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.videoText p {
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  font-family: var(--ff-texts);
  color: var(--clr-white);
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 3rem;
}

/* Mockup */
.videoMockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

/* elemento decorativo */
.videoMockup::after {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;

  background-image: url("../img/background-triangle-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  bottom: 0;
  right: 0;

  filter: brightness(100);
  opacity: 0.1;
  pointer-events: none;
  z-index: -2;
}

.videoMockup img {
  width: 100%;
  max-width: 520px;
  transform: translateY(0);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

/* Hover solo desktop */
@media (hover: hover) {
  .videoMockup img:hover {
    transform: translateY(-10px);
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .videoContainer {
    padding: 3rem 1.5rem;
  }

  .videoContent {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .videoText p {
    margin: 0 auto;
  }

  .videoMockup {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* scroll */
.scrollSection {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--clr-white);
}

/* contenedor horizontal */
.scrollInner {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  will-change: transform;
}

/* slide */
.scrollItem {
  flex: 0 0 80%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 0 10%;
  gap: 2rem;
  background: var(--clr-white);
}

/* texto */
.scrollItem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--ff-titles);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #292827;
}

/* imagen */
.scrollItem img {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.12));
  transform: translateY(0);
  animation: floatSoft 6s ease-in-out infinite;
}

/* flotado sutil */
@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

.scrollItem:nth-child(even) h2 {
  order: 2;
}

.scrollItem:nth-child(even) img {
  order: 1;
}

.scrollContent {
  max-width: 520px;
}

.scrollTag {
  display: inline-block;
  font-size: 1rem;
  font-family: var(--ff-texts);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-light-blue);
  margin-bottom: 1rem;
}

.scrollTitle {
  margin-bottom: 1.2rem;
}

.scrollText {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.7;
  font-family: var(--ff-texts);
}

.scrollMedia {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollMedia img {
  position: relative;
  z-index: 1;
}

.scrollMedia::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.scrollItem:nth-child(1) .scrollMedia::before {
  background-image: url("../img/background-triangle-pattern.png");
}

.scrollItem:nth-child(2) .scrollMedia::before {
  background-image: url("../img/background-triangle-pattern.png");
}

.scrollItem:nth-child(3) .scrollMedia::before {
  background-image: url("../img/background-triangle-pattern.png");
}

.scrollItem:nth-child(4) .scrollMedia::before {
  background-image: url("../img/background-triangle-pattern.png");
}

.scrollItem:nth-child(1) .scrollMedia::before {
  background-image:
    radial-gradient(circle at center,
      rgba(48, 127, 224, 0.35),
      transparent 60%),
    url("../img/background-triangle-pattern.png");
}

/* features list */
.scrollFeatures {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.scrollFeatures li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--ff-texts);
  font-size: 1rem;
  line-height: 1.5;
  color: #292827;
  opacity: 0.85;
}

/* icono */
.featureIcon {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--clr-light-blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

/* texto */
.featureText strong {
  font-weight: 600;
  color: #292827;
}

.scrollItem:nth-child(3) .featureIcon,
.scrollItem:nth-child(4) .featureIcon {
  background: var(--clr-light-blue);
  box-shadow: 0 0 0 4px rgba(192, 57, 174, 0.556);
}

/* mobile */
@media (max-width: 900px) {
  .scrollItem {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem 8%;
    gap: 2rem;
  }

  .scrollItem h2 {
    font-size: 2.4rem;
  }

  .scrollItem img {
    max-width: 300px;
  }

  .scrollMedia::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
  }

  .scrollFeatures {
    align-items: center;
  }

  .scrollFeatures li {
    justify-content: center;
    text-align: left;
    max-width: 320px;
  }
}

/* requerimientos */
.requirements-section {
  padding: 6rem 6%;
  background: var(--clr-light-blue);
  color: #ffffff;
  position: relative;
  z-index: -2;
}

/* imagen decorativa de fondo*/
.requirements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-image: url("../img/background-triangle-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;

  pointer-events: none;
  filter: brightness(100);
  opacity: 0.06;

  z-index: 0;
}

/* imagen decorativa esquina*/
.requirements-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;

  width: 320px;
  height: 320px;

  background-image: url("../img/background-tringle-white-black.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  pointer-events: none;

  z-index: 0;
}

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

.requirements-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.requirements-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  font-family: var(--ff-titles);
  margin-bottom: 1rem;
}

.requirements-header p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.7;
  font-family: var(--ff-texts);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.requirement-card {
  border: 4px solid var(--clr-white);
  border-radius: 0.5rem;
  font-family: var(--ff-texts);
  line-height: 1.4;
  padding: 2rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  backdrop-filter: blur(15px);
}

.requirement-icon {
  position: absolute;
  top: 0;
  right: 5%;
  display: inline-block;
  font-size: 2rem;
  font-family: var(--ff-titles);
  font-weight: 900;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.requirement-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  font-family: var(--ff-titles);
  margin-bottom: 0.6rem;
}

.requirement-card p {
  font-size: 1rem;
  font-family: var(--ff-texts);
  line-height: 1.6;
  opacity: 0.7;
}

.requirements-footer {
  margin-top: 4rem;
  max-width: 600px;
}

.requirements-footer p {
  font-size: 1rem;
  font-family: var(--ff-texts);
  opacity: 0.8;
}

/* preguntas recuentes */
.faqSection {
  position: relative;
  padding: 100px 20px;
  background: var(--clr-white);
  color: #292827;
  font-family: var(--ff-titles);
  z-index: 2;
}

/* imagen decorativa */
.faqSection::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 26%;
  height: 100%;

  background-image: url("../img/background-hero-circle-&-dots.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;

  pointer-events: none;

  transition:
    opacity 0.4s ease,
    transform 0.8s ease;
  opacity: 0.3;
  z-index: -10;
}

.faqContainer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.faqTag {
  color: #3b82f6;
  font-family: var(--ff-texts);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 1px;
}

.faqTitle {
  font-size: 3rem;
  font-family: var(--ff-titles);
  margin: 10px 0;
}

.faqSubtitle {
  font-family: var(--ff-texts);
  margin-bottom: 50px;
  opacity: 0.7;
}

.faqList {
  text-align: left;
}

.faqItem {
  border-bottom: 4px solid #0472f057;
}

.faqQuestion {
  width: 100%;
  background: none;
  border: none;
  color: #292827;
  padding: 20px 10px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}

.faqIcon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faqItem.active .faqIcon {
  transform: rotate(45deg);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  opacity: 0.9;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faqItem.active .faqAnswer {
  max-height: 200px;
  padding: 10px 10px 20px;
}

/* Animación al aparecer */
.faqItem {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.faqItem.visible {
  opacity: 1;
  transform: translateY(0);
}

/* footer */
.footerContainer {
  position: relative;
  width: 100%;
  background-color: var(--clr-white);
  padding: 0 5%;
  overflow: hidden;
  margin-top: 5rem;
}

/* esquina con dibujo */
/* 
.footerContainer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background-color: var(--clr-light-blue);
  border-top-left-radius: 100%;
  background-image: url("../img/escritorio-fondo-trans.png");
  background-size: 170px 170px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  z-index: 0;
} */

.footerContainer h2 {
  font-size: 3rem;
  font-family: var(--ff-titles);
  font-weight: 900;
  color: var(--clr-light-blue);
  margin-bottom: 1rem;
}

.footerContainer p {
  display: inline-block;
  font-size: 1rem;
  font-family: var(--ff-texts);
  font-weight: 700;
  color: var(--clr-white);
  padding: 0.8rem 1.2rem;
  background-color: var(--clr-light-blue);
  border-radius: 0.2rem;
  margin-bottom: 2rem;
}

.footerContainer a {
  text-decoration: none;
  color: var(--clr-white);
}

@media (max-width: 1024px) {
  .hero {
    padding: 0 2rem;
  }

  .hero-intro {
    grid-template-columns: 1fr 2fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-services-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem 3rem;
  }

  .scrollItem h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {

  /* ---------- HEADER ---------- */
  .header {
    padding: 0.8rem 1rem;
  }

  .menu-list {
    gap: 0.6rem;
    font-size: 0.85rem;
  }

  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background-color: var(--clr-white);
    backdrop-filter: blur(10px);
    transition: right 0.4s ease;
    padding-top: 6rem;
    z-index: 1000;
  }

  .menu.open {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    font-size: 1.2rem;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 0 1rem;
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-content {
    margin-bottom: 3rem;
  }

  .hero-deco {
    width: 375px;
  }

  .hero-deco-top-right {
    display: none;
  }

  .hero-deco-bottom-left {
    bottom: -20%;
    left: 25%;
    transform: rotate(0);
  }

  .hero-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 1rem 0;
  }

  /* ---------- STATS ---------- */
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .hero-stat {
    justify-content: center;
  }

  .hero-stats .number {
    font-size: 2.5rem;
  }

  /* ---------- SERVICES ---------- */
  .hero-services-container {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
  }

  .hero-services-item span {
    font-size: 1.8rem;
  }

  /* ---------- VIDEO ---------- */
  .videoContainer {
    padding: 5rem 0.5rem;
  }

  .videoContainer::after {
    width: 240px;
    height: 240px;
    opacity: 0.1;
  }

  /* ---------- SCROLL SECTION ---------- */
  .scrollSection {
    position: relative;
    height: auto;
    overflow: hidden;
  }

  .scrollInner {
    flex-direction: column;
    transform: none !important;
    padding: 0;
  }

  .scrollItem {
    flex: none;
    flex-direction: column;
    text-align: center;
  }

  .scrollItem {
    padding: 1rem 1rem;
    width: 100%;
  }

  .scrollMedia::before {
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .scrollSection,
  .scrollInner,
  .scrollItem {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .scrollItem h2 {
    font-size: 2.2rem;
  }

  .scrollItem img {
    width: 200px;
  }

  /* requerimientos */
  .requirements-section::after {
    width: 120px;
    height: 120px;
  }

  .requirement-card {
    line-height: 1.4;
    padding: 0.5rem 1rem;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border 0.3s ease;
  }

  /* preguntas frecuentes */
  .faqSection {
    padding: 100px 0.5rem 0.5rem;
  }

  /* imagen decorativa */
  .faqSection::after {
    width: 100%;
    height: 80%;
    background-image: url("../img/background-hero-circle-&-dots.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    opacity: 0.1;
  }

  .faqTag {
    font-size: 1.2rem;
  }

  .faqTitle {
    font-size: 1.8rem;
  }

  /* ---------- FOOTER ---------- */
  .footerContainer {
    padding: 2rem 1rem;
  }

  .footerContainer h2 {
    font-size: 2rem;
  }
}