@charset "UTF-8";
/* ================= TRANSITIONS ================= */
/* ================= EASING ================= */
/* ================= SHADOWS ================= */
/* ================= FX COLORS ================= */
.btn, .use-cases__filters .filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
}

.btn--ghost, .use-cases__filters .filter-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn--primary {
  background-color: #00c6f8;
  color: #080127;
  box-shadow: 6px 10px 30px rgba(0, 198, 248, 0.3);
}
.btn--primary:hover {
  background-color: #bfc20a;
  transform: translateY(-2px);
}
.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.btn--ghost:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero__visual {
  position: relative;
}
.hero__visual .hero__bg {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
}
.hero__phone {
  position: absolute;
  right: -40px;
  bottom: -300px;
}
.hero__phone img {
  width: 400px;
}
.hero__badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.hero__badges span {
  background: rgba(204, 201, 0, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero__title {
  font-size: 4rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__title span {
  color: #00c6f8;
}
.hero__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  margin-bottom: 0.6rem;
  opacity: 0.9;
}
.hero__actions {
  display: flex;
  gap: 1rem;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.hero__badges {
  animation-delay: 0.1s;
}

.hero__title {
  animation-delay: 0.25s;
}

.hero__features {
  animation-delay: 0.45s;
}

.hero__actions {
  animation-delay: 0.65s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__phone {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  animation: phoneIn 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes phoneIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.hero__rotating {
  display: inline-block;
  position: relative;
  color: #6EC1E4;
}

#rotating-text {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotate-out {
  opacity: 0;
  transform: translateY(-10px);
}

.rotate-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__container {
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__badges {
    flex-wrap: wrap;
  }
  .hero__visual .hero__bg {
    max-width: 420px;
  }
  .hero__phone {
    right: -20px;
    bottom: -220px;
  }
  .hero__phone img {
    width: 320px;
  }
  .hero__features li {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .hero__features li {
    justify-content: center;
    font-size: 0.875rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__visual {
    order: 2;
  }
  .hero__visual .hero__bg {
    max-width: 100%;
  }
  .hero__phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -3rem;
    display: flex;
    justify-content: center;
  }
  .hero__phone img {
    width: 260px;
  }
  /* Animaciones más suaves en mobile */
  .hero__content > * {
    animation-duration: 0.6s;
    transform: translateY(20px);
  }
  .hero__phone {
    animation: fadeUp 0.8s ease forwards;
    transform: translateY(40px) scale(0.95);
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 5rem 0 3rem;
  }
  .hero__title {
    font-size: 1.125rem;
  }
  .hero__phone img {
    width: 220px;
  }
}
.problem-solution {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #080127 0%, #0B1220 100%);
  overflow: hidden;
}

/* ---------- Eyebrow ---------- */
.ps-eyebrow {
  text-align: center;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00c6f8;
  margin-bottom: 1rem;
}

/* ---------- Heading ---------- */
.ps-heading {
  text-align: center;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 auto 4rem;
}

/* ---------- Layout ---------- */
.problem-solution__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.ps-card {
  background: #111A2E;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}
.ps-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.ps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* PROBLEMA */
.ps-card--problem {
  filter: saturate(0.8);
}
.ps-card--problem .ps-title {
  color: #B7C4D1;
}

/* SOLUCIÓN */
.ps-card--solution {
  border: 1px solid rgba(0, 198, 248, 0.35);
  box-shadow: 0 0 20px rgba(0, 198, 248, 0.6);
}
.ps-card--solution .ps-title {
  color: #00c6f8;
}

/* ---------- Media ---------- */
.ps-media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* ---------- Content ---------- */
.ps-content {
  padding: 2rem;
}

.ps-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ---------- List ---------- */
.ps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ps-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: #B7C4D1;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Animación escalonada */
.ps-card.is-visible .ps-list li {
  opacity: 1;
  transform: translateX(0);
}
.ps-card.is-visible .ps-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.ps-card.is-visible .ps-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.ps-card.is-visible .ps-list li:nth-child(3) {
  transition-delay: 0.3s;
}

/* ---------- Connector ---------- */
.ps-connector {
  position: relative;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.ps-connector span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #00c6f8, transparent);
  transform: translateX(-100%);
}
.ps-connector.is-active span {
  animation: connector-flow 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes connector-flow {
  to {
    transform: translateX(100%);
  }
}
/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .problem-solution {
    padding: 4rem 1.5rem;
  }
  .ps-heading {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .problem-solution__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  /* Cards */
  .ps-card {
    max-width: 520px;
    margin: 0 auto;
  }
  .ps-media img {
    height: 280px;
  }
  /* Connector → vertical */
  .ps-connector {
    width: 4px;
    height: 60px;
    margin: 0 auto;
  }
  .ps-connector span {
    background: linear-gradient(180deg, transparent, #00c6f8, transparent);
    transform: translateY(-100%);
  }
  .ps-connector.is-active span {
    animation: connector-flow-vertical 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}
/* ---------- Small mobile ---------- */
@media (max-width: 480px) {
  .ps-heading {
    font-size: 1.5rem;
  }
  .ps-content {
    padding: 1.5rem;
  }
  .ps-title {
    font-size: 1.125rem;
  }
  .ps-list li {
    font-size: 0.875rem;
  }
  .ps-media img {
    height: 220px;
  }
}
@keyframes connector-flow-vertical {
  to {
    transform: translateY(100%);
  }
}
@media (max-width: 900px) {
  .ps-card--solution {
    order: 2;
  }
}

.features {
  width: 100%;
  height: auto;
  padding: 6rem 2rem;
  background-image: url(/assets/el\ diego.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.features__subtitle {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  color: #B7C4D1;
}

/* ---------- Grid ---------- */
.features__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* ---------- Card ---------- */
.feature-card {
  background: #111A2E;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border-color: #00c6f8;
}

/* ---------- Media ---------- */
.feature-media {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 198, 248, 0.12);
}
.feature-media img {
  width: 32px;
  height: 32px;
}

/* ---------- Content ---------- */
.feature-content h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.feature-content p {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  color: #B7C4D1;
  line-height: 1.6;
  margin: 0;
}
.feature-content p:not(:last-child) {
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .features {
    padding: 4.5rem 1.5rem;
    background-position: center top;
  }
  .features__header {
    margin-bottom: 3rem;
  }
  .features__title {
    font-size: 2rem;
  }
  .features__subtitle {
    font-size: 0.875rem;
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .feature-card {
    padding: 1.75rem;
    gap: 1.25rem;
  }
  .feature-media {
    width: 52px;
    height: 52px;
  }
  .feature-media img {
    width: 28px;
    height: 28px;
  }
  .feature-content h3 {
    font-size: 0.875rem;
  }
  .feature-content p {
    font-size: 0.875rem;
  }
}
@media (max-width: 640px) {
  .features {
    padding: 3.5rem 1rem;
    background-position: center;
  }
  .features__header {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  .features__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .features__subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .feature-media {
    margin: 0 auto;
    width: 48px;
    height: 48px;
  }
  .feature-media img {
    width: 26px;
    height: 26px;
  }
  .feature-content h3 {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
  }
  .feature-content p {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}
.how-it-works {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #080127 0%, #0B1220 100%);
}

/* ---------- Header ---------- */
.how-it-works__header {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  color: #FFFFFF;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3rem;
}
.how-it-works__header .hiw-eyebrow {
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00c6f8;
  margin-bottom: 1rem;
}
.how-it-works__header .hiw-heading {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ---------- Timeline wrapper ---------- */
.steps {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 3.5rem;
  z-index: 1;
  margin-bottom: 2rem;
}

/* Línea base */
.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

/* Línea de progreso (scroll-driven) */
.steps::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 2px;
  height: 0;
  background: #00c6f8;
  transition: height 0.4s ease;
}

/* ---------- Step ---------- */
.step {
  position: relative;
  padding: 2rem 1.5rem 2rem 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.step.is-active {
  border-color: #00c6f8;
  box-shadow: 0 8px 24px rgba(0, 198, 248, 0.15);
}

/* Punto en la línea */
.step::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: -3.6rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.step.is-active::before {
  background: #00c6f8;
  box-shadow: 0 0 0 4px rgba(0, 198, 248, 0.2);
}

/* ---------- Index (contador) ---------- */
.step__index {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(2, 255, 242, 0.2);
  margin-bottom: 0.5rem;
}

/* ---------- Media ---------- */
.step__media {
  margin-bottom: 1rem;
}
.step__media img {
  width: 48px;
  height: 48px;
}

/* ---------- Content ---------- */
.step__content h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.step__content p {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #B7C4D1;
}

@media (max-width: 1024px) {
  .how-it-works {
    padding: 4.5rem 1.5rem;
  }
  .how-it-works__header {
    margin-bottom: 2.5rem;
  }
  .how-it-works__header .how-it-works__title {
    font-size: 2rem;
  }
  .how-it-works__header .how-it-works__subtitle {
    font-size: 20px;
  }
  .how-it-works__header .hiw-heading {
    font-size: 2rem;
  }
  .steps {
    max-width: 520px;
    padding-left: 3rem;
  }
  .steps::before,
  .steps::after {
    left: 20px;
  }
  .step {
    padding: 1.75rem 1.25rem 1.75rem 3rem;
    margin-bottom: 1.75rem;
  }
  .step::before {
    left: -3.1rem;
    width: 12px;
    height: 12px;
  }
  .step__index {
    font-size: 2.25rem;
  }
  .step__media img {
    width: 44px;
    height: 44px;
  }
  .step__content h3 {
    font-size: 1.125rem;
  }
  .step__content p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 3.5rem 1rem;
  }
  .how-it-works__header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .how-it-works__header .how-it-works__title {
    font-size: 2rem;
  }
  .how-it-works__header .how-it-works__subtitle {
    font-size: 20px;
  }
  .how-it-works__header .hiw-eyebrow {
    font-size: 0.75rem;
  }
  .how-it-works__header .hiw-heading {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .steps {
    max-width: 100%;
    padding-left: 2.25rem;
  }
  .steps::before,
  .steps::after {
    left: 16px;
  }
  .step {
    padding: 1.5rem 1rem 1.5rem 2.5rem;
    margin-bottom: 1.5rem;
  }
  .step::before {
    left: -2.4rem;
    top: 2rem;
  }
  .step__index {
    font-size: 2rem;
  }
  .step__media img {
    width: 40px;
    height: 40px;
  }
  .step__content h3 {
    font-size: 0.875rem;
  }
  .step__content p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .step {
    padding-left: 2.25rem;
  }
  .step::before {
    left: -2.2rem;
  }
  .step__index {
    font-size: 1.75rem;
  }
}
.use-cases {
  background-image: url(/assets/fondo\ diego.png);
  background-position: center;
}

.use-cases__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}

.use-cases__title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  padding: 20px;
}

.use-cases__subtitle {
  font-size: 1rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #B7C4D1;
  line-height: 1.6;
}

.use-cases__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.use-case-card {
  background: #111A2E;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transform: translateY(3px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.use-case-card.is-visible {
  opacity: 0;
  transform: translateY(0);
}
.use-case-card.is-active {
  border-color: rgba(0, 198, 248, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.use-case-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.use-case-content {
  padding: 2rem;
}
.use-case-content h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.use-case-content p {
  font-size: 1rem;
  color: #B7C4D1;
  line-height: 1.6;
}
.use-case-content p:not(:last-child) {
  margin-bottom: 0.75rem;
}

.use-cases__filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.use-cases__filters .filter-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  border-radius: 6px;
  transition: all 0.4s ease;
}
.use-cases__filters .filter-btn.is-active {
  background-color: #00c6f8;
  color: #080127;
  border-color: transparent;
  box-shadow: 6px 10px 30px rgba(0, 198, 248, 0.3);
}

.use-case-card {
  transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.use-case-card.is-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .use-cases__grid {
    gap: 2rem;
  }
  .use-case-media img {
    height: 180px;
  }
}
/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .use-cases {
    padding: 4rem 1.5rem;
    background-position: center top;
  }
  .use-cases__header {
    margin-bottom: 3rem;
  }
  .use-cases__title {
    font-size: 2rem;
    padding: 0;
  }
  .use-cases__subtitle {
    font-size: 0.875rem;
  }
  .use-cases__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 2rem;
  }
  .use-case-card {
    transform: none;
  }
  .use-case-card:hover {
    transform: none;
  }
  .use-case-media img {
    height: 220px;
  }
}
/* ---------- Mobile ---------- */
@media (max-width: 480px) {
  .use-cases {
    padding: 3.5rem 1.25rem;
  }
  .use-cases__title {
    font-size: 1.5rem;
  }
  .use-cases__subtitle {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .use-case-content {
    padding: 1.5rem;
  }
  .use-case-content h3 {
    font-size: 1rem;
  }
  .use-case-content p {
    font-size: 0.875rem;
  }
  .use-case-media img {
    height: 180px;
  }
  .use-cases__filters {
    gap: 0.5rem;
  }
  .use-cases__filters .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.final-cta {
  position: relative;
  padding: 6rem 2rem;
  background: radial-gradient(1200px 400px at 50% 0%, rgba(0, 198, 248, 0.15), transparent 60%), #080127;
  overflow: hidden;
}

.final-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  background: #111A2E;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ================= TITLES ================= */
.final-cta__title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

.final-cta__subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #B7C4D1;
}

/* ================= BUTTON ================= */
/* ================= SOCIAL PROOF ================= */
.final-cta__social {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta__counter {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: #00c6f8;
}

.final-cta__label {
  font-size: 0.875rem;
  color: #7C8A99;
}

.final-cta.is-visible .final-cta__social {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.final-cta__counter-wrapper {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
}

/* PLUS */
.final-cta__plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00c6f8;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* COUNTER */
.final-cta__counter {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: #00c6f8;
}

/* LABEL */
.final-cta__label {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: #7C8A99;
  line-height: 1.2;
}

/* MICROCOPY */
.final-cta__microcopy {
  margin-top: 0.1rem;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(0, 198, 248, 0.75);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================= STATE ACTIVO ================= */
.final-cta.is-visible .final-cta__plus {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}
.final-cta.is-visible .final-cta__microcopy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

@media (max-width: 1024px) {
  .final-cta {
    padding: 4.5rem 1.5rem;
    background: radial-gradient(900px 320px at 50% 0%, rgba(0, 198, 248, 0.14), transparent 60%), #080127;
  }
  .final-cta__inner {
    max-width: 760px;
    padding: 3rem 2rem;
    gap: 1.25rem;
  }
  .final-cta__title {
    font-size: clamp(1.125rem, 4vw, 2rem);
  }
  .final-cta__subtitle {
    font-size: 0.875rem;
    max-width: 560px;
  }
  .final-cta__counter {
    font-size: 1.5rem;
  }
  .final-cta__microcopy {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .final-cta {
    padding: 3.5rem 1rem;
    background: radial-gradient(700px 260px at 50% 0%, rgba(0, 198, 248, 0.12), transparent 60%), #080127;
  }
  .final-cta__inner {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    gap: 1rem;
  }
  .final-cta__title {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .final-cta__subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .final-cta__social {
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.75rem;
  }
  .final-cta__counter-wrapper {
    justify-content: center;
  }
  .final-cta__counter {
    font-size: 1.125rem;
  }
  .final-cta__plus {
    font-size: 1.125rem;
  }
  .final-cta__label {
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
  }
  .final-cta__microcopy {
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
}
.footer {
  background-color: #ffffff;
  padding: 4rem 2rem 2rem;
  color: #080127;
  text-align: left;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__logo {
  width: 120px;
  margin: -10px 0;
}
.footer__contact {
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #080127;
  margin: 0.5rem 0 1.5rem;
}
.footer__link {
  display: block;
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #080127;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}
.footer__link:hover {
  color: #00c6f8;
}
.footer__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-bottom: 1rem;
}
.footer__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background-color: #00c6f8;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.footer__list li {
  margin-bottom: 0.5rem;
}
.footer__list a {
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #080127;
  text-decoration: none;
  transition: color 0.4s ease;
}
.footer__list a:hover {
  color: #00c6f8;
}
.footer__text {
  font-size: 0.875rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #080127;
  margin-bottom: 1.5rem;
}
.footer__stores {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__stores a {
  display: inline-block;
}
.footer__stores img {
  height: 40px;
  width: auto;
}
.footer__social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.footer__social a {
  font-size: 1.125rem;
  color: #080127;
  transition: color 0.4s ease;
  text-decoration: none;
  display: inline-block;
  border-radius: 50%;
  transition: background-color 0.4s ease;
  padding: 0.5rem;
  margin: 0.5rem;
}
.footer__social a:hover {
  color: #ffffff;
  background-color: #00c6f8;
}

@media (max-width: 1024px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer__container {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .footer__logo {
    width: 100px;
  }
  .footer__title {
    font-size: 1.125rem;
  }
  .footer__title::before {
    height: 20px;
  }
  .footer__contact, .footer__text, .footer__link, .footer__list a {
    font-size: 0.75rem;
  }
  .footer__stores {
    gap: 0.75rem;
  }
  .footer__stores img {
    height: 36px;
  }
  .footer__social {
    gap: 0.75rem;
  }
  .footer__social a {
    font-size: 0.875rem;
    padding: 0.45rem;
    margin: 0.25rem;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 2.5rem 1rem 1.5rem;
    text-align: center;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__title {
    font-size: 0.875rem;
    padding-left: 0;
  }
  .footer__title::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .footer__contact, .footer__text {
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
  }
  .footer__list {
    margin-bottom: 1rem;
  }
  .footer__stores {
    justify-content: center;
  }
  .footer__stores img {
    height: 34px;
  }
  .footer__social {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .footer__social a {
    font-size: 0.875rem;
    padding: 0.6rem;
  }
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img {
  height: 150px;
  margin: -40px;
  width: auto;
  transition: transform 0.25s ease;
}
.site-header__logo:hover img {
  transform: scale(1.05);
}
.site-header__nav .nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
}
.site-header__nav .nav-link {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #080127;
  position: relative;
}
.site-header__nav .has-submenu {
  position: relative;
}
.site-header__nav .has-submenu:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__nav .submenu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
}
.site-header__nav .submenu li a {
  display: block;
  padding: 10px 16px;
  color: #080127;
}
.site-header__nav .submenu li a:hover {
  background-color: gray;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ================= SCROLL ================= */
.site-header.is-scrolled {
  background-color: rgba(8, 1, 39, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled a,
.site-header.is-scrolled input {
  color: #FFFFFF;
}
.site-header.is-scrolled input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-search input {
  background: transparent;
  border: 1px solid gray;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
}
.header-search input:focus {
  outline: none;
  border-color: #00c6f8;
}

@media (max-width: 1024px) {
  .site-header__inner {
    padding: 12px 24px;
    gap: 16px;
  }
  .site-header__logo img {
    height: 110px;
    margin: -28px;
  }
  .site-header__nav .nav-list {
    gap: 16px;
  }
  .site-header__nav .nav-link {
    font-size: 0.875rem;
  }
  .site-header__nav .submenu {
    top: 130%;
    min-width: 160px;
  }
  .site-header__nav .submenu li a {
    padding: 8px 14px;
  }
  .site-header__actions {
    gap: 12px;
  }
  .header-search input {
    padding: 6px 12px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 10px 16px;
  }
  .site-header__logo img {
    height: 80px;
    margin: -18px;
  }
  .site-header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .site-header__nav .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  .site-header__nav .nav-link {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .site-header__nav .has-submenu:hover .submenu {
    opacity: 0;
    pointer-events: none;
  }
  .site-header__nav .submenu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .site-header__nav .submenu li a {
    padding: 10px 32px;
    font-size: 0.875rem;
  }
  .site-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-header__actions {
    gap: 8px;
  }
  .header-search {
    display: none;
  }
}
.header-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header-toggle {
    display: inline-flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #080127;
  }
}
/* ================= OVERLAY ================= */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 1, 39, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.login-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ================= MODAL ================= */
.login-modal {
  background: #111A2E;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.login-overlay.is-active .login-modal {
  transform: none;
  opacity: 1;
}

/* ================= TEXT ================= */
.login-modal__title {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
}

.login-modal__subtitle {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: #7C8A99;
  margin-bottom: 1.75rem;
}

/* ================= CLOSE ================= */
.login-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #7C8A99;
  font-size: 1.25rem;
  cursor: pointer;
}
.login-modal__close:hover {
  color: #00c6f8;
}

/* ================= GOOGLE ================= */
.login-google {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  justify-content: start;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
}
.login-google img {
  text-align: center;
  margin: auto;
  width: 100%;
  height: 5vh;
}

/* ================= DIVIDER ================= */
.login-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}
.login-divider::before, .login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.login-divider span {
  margin: 0 0.75rem;
  color: #7C8A99;
  font-size: 0.75rem;
}

/* ================= FORM ================= */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.login-form input {
  background: #0B1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem;
  color: #FFFFFF;
}

.login-footer {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: #7C8A99;
}

@media (max-width: 768px) {
  .login-overlay {
    padding: 1.5rem;
    align-items: flex-start;
  }
  .login-modal {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
    margin-top: 10vh;
  }
  .login-modal__title {
    font-size: 1.125rem;
  }
  .login-modal__subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .login-google {
    grid-template-columns: 48px 1fr;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .login-google img {
    width: 28px;
    height: 28px;
  }
  .login-form input {
    padding: 0.85rem;
    font-size: 0.875rem;
  }
  .login-footer {
    font-size: 0.7rem;
  }
}
/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .login-modal {
    padding: 1.5rem 1.25rem;
    margin-top: 8vh;
  }
  .login-modal__close {
    top: 1rem;
    right: 1rem;
    font-size: 1.1rem;
  }
  .login-google {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .login-google img {
    margin-bottom: 0.25rem;
  }
  .login-divider span {
    font-size: 0.65rem;
  }
}

/*# sourceMappingURL=main.css.map */
