/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Overused Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: rgb(247, 247, 247);
  color: rgb(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ============================================
   NAV  —  fondo igual al body #f7f7f7
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgb(247, 247, 247);
  width: 100%;
}

.nav-container {
  width: 100%;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo image */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  width: 136px;
  height: 42px;
  object-fit: contain;
}

/* Thin vertical divider */
.nav-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 9999px;
  background-color: rgba(247, 247, 247, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: background-color 0.15s;
}

.nav-links li a:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

/* Contáctanos mobile — solo visible en dropdown */
.nav-contactanos-mobile {
  display: none;
}

/* Contáctanos — botón negro en nav */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  margin-left: auto;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.nav-cta-btn:hover {
  opacity: 0.82;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}

/* ============================================
   HERO  —  fondo claro, texto negro
   ============================================ */
.hero {
  background-color: rgb(247, 247, 247);
  padding: 40px 20px 96px;
  text-align: center;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge "acquify co." */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 32px;
}

.badge-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  flex-shrink: 0;
}

/* Headline */
.headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: rgb(0, 0, 0);
  text-align: center;
  max-width: 1060px;
  width: 100%;
  margin-bottom: 20px;
}

/* Subheadline */
.subheadline {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  max-width: 560px;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 52px;
}

/* ============================================
   VIDEO
   ============================================ */
.video-wrapper {
  width: 100%;
  max-width: 760px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.14);
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: rgb(22, 21, 18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}

.play-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-btn svg {
  width: 72px;
  height: 72px;
  display: block;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.08);
}

.video-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.15s;
}

/* Primary — negro sobre claro, igual que el botón del footer */
.btn-primary {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 16px 32px;
  font-size: 17px;
}

.btn-primary:hover { opacity: 0.82; }

/* Ghost — borde suave */
.btn-ghost {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 20px;
}

.btn-ghost:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.9);
}

/* Sliding text animation (igual que el original) */
.btn-primary,
.btn-footer {
  flex-direction: row;
  gap: 8px;
}

.btn-text,
.btn-text-hover {
  display: block;
}

.btn-text-hover {
  display: none;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow,
.btn-footer:hover .btn-arrow {
  transform: translateX(3px);
}

/* Footer button — blanco sólido */
.btn-footer {
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.9);
  padding: 12px 20px;
  border-radius: 4px;
  border: none;
}

.btn-footer:hover { opacity: 0.85; }

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-social-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-social-icon svg {
  width: 15px;
  height: 15px;
}

.cta-note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

/* ============================================
   PROCESO
   ============================================ */
.process {
  background-color: rgb(247, 247, 247);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 80px 20px 96px;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: rgb(0, 0, 0);
  margin-bottom: 12px;
}

.process-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* Steps grid */
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.step-divider {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  align-self: stretch;
  flex-shrink: 0;
  margin: 20px 0;
}

/* Numbered circle */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  flex-shrink: 0;
}

.step-number--active {
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  flex: 1;
}

/* Bottom tag */
.step-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 5px 14px;
  margin-top: auto;
}

.step-tag--active {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  border-color: rgb(0, 0, 0);
}

/* Responsive */
@media (max-width: 810px) {
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .process-step {
    padding: 0 16px;
  }
}

/* Botón CTA debajo del proceso */
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.btn-process-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  transition: opacity 0.15s;
}

.btn-process-cta:hover {
  opacity: 0.80;
}

.btn-process-cta .btn-arrow {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}

.btn-process-cta:hover .btn-arrow {
  transform: translateX(3px);
}

@media (max-width: 810px) {
  .process-cta {
    margin-top: 40px;
  }

  .btn-process-cta {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

/* ============================================
   FOOTER  —  negro puro
   ============================================ */
.footer {
  background-color: rgb(0, 0, 0);
  padding: 64px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  padding-bottom: 64px;
}

/* Footer left */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Footer right columns */
.footer-right {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  flex: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact row with icon */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  background-color: rgb(33, 31, 27);
  flex-shrink: 0;
}

.footer-icon svg {
  width: 14px;
  height: 14px;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 20px 0 24px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-brand {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 16px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 810px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: rgb(247, 247, 247);
    flex-direction: column;
    padding: 8px 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 2px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-divider { display: none; }
  .nav-cta-btn { display: none; }

  .nav-contactanos-mobile {
    display: block;
    margin-top: 6px;
  }

  .nav-contactanos-link {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    color: rgb(255, 255, 255) !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    text-align: center;
  }

  .nav-contactanos-link:hover {
    background-color: rgba(0, 0, 0, 0.75) !important;
  }

  /* ── Hero ── */
  .hero {
    padding: 20px 20px 48px;
  }

  .hero-container {
    width: 100%;
    align-items: center;
  }

  .badge {
    font-size: 12px;
    padding: 8px 12px;
    margin-bottom: 14px;
    align-self: center;
  }

  .headline {
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .subheadline {
    font-size: 13px;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  .video-wrapper {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 14px 20px;
  }

  /* ── Stats ── */
  .stats {
    padding: 40px 20px;
  }

  .stats-inner {
    justify-content: center;
  }

  .stat {
    min-width: 100px;
    align-items: center;
  }

  /* ── Proceso ── */
  .process {
    padding: 56px 20px 64px;
  }

  .process-header {
    text-align: center;
  }

  .process-title {
    text-align: center;
  }

  .process-subtitle {
    text-align: center;
    max-width: 100%;
  }

  .process-step {
    padding: 0 8px;
    align-items: center;
    text-align: center;
  }

  .step-title {
    text-align: center;
  }

  .step-desc {
    text-align: center;
  }

  /* ── Nav dropdown ── */
  .nav-links li a {
    width: 100%;
    border-radius: 8px;
    text-align: left;
    padding: 10px 14px;
  }

  /* ── Footer ── */
  .footer {
    padding: 48px 20px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .footer-left {
    max-width: 100%;
    width: 100%;
  }

  .footer-right {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }

  .footer-col {
    align-items: flex-start;
  }

  .footer-bottom-inner {
    padding: 0 0 4px;
  }
}
