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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #22202a;
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}


/* NAV */

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeaf4;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eee6ff;
}

nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  color: #66616e;
}

nav a:hover {
  color: #7047eb;
}

.nav-button {
  padding: 11px 18px;
  background: #7047eb;
  color: white;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
}


/* HERO */

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, #eee7ff 0, transparent 29%),
    linear-gradient(145deg, #fff 45%, #faf8ff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 100px;
  background: #f2edff;
  color: #6842d8;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 23px;
}

.hero h1 {
  font-size: clamp(46px, 5vw, 69px);
  line-height: 1.03;
  letter-spacing: -3px;
  max-width: 650px;
}

.hero h1 span {
  color: #7047eb;
}

.hero-description {
  color: #6f6a78;
  max-width: 560px;
  font-size: 18px;
  margin: 26px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #17151c;
  color: white;
  padding: 10px 16px;
  min-width: 190px;
  border-radius: 12px;
}

.store-button small {
  display: block;
  font-size: 9px;
  opacity: .7;
}

.store-button strong {
  display: block;
  font-size: 16px;
}

.store-symbol,
.play-symbol {
  font-size: 25px;
}

.free-label {
  margin-top: 17px;
  font-size: 13px;
  color: #85808d;
}


/* PHONE */

.phone-area {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.phone {
  width: 285px;
  height: 580px;
  border-radius: 45px;
  background: #18161d;
  padding: 9px;
  box-shadow: 0 40px 80px rgba(57, 37, 105, .25);
  transform: rotate(2deg);
}

.phone-screen {
  height: 100%;
  border-radius: 37px;
  background: #faf9fd;
  padding: 70px 22px 20px;
  text-align: center;
}

.phone-island {
  position: absolute;
  width: 95px;
  height: 25px;
  border-radius: 20px;
  background: #17151b;
  margin: 13px 0 0 86px;
  z-index: 3;
}

.app-logo {
  width: 58px;
  height: 58px;
  background: #eee7ff;
  display: grid;
  place-items: center;
  border-radius: 17px;
  margin: 0 auto 12px;
  font-size: 27px;
  background: transparent;
  box-shadow: none;
}

.phone-screen h3 {
  font-size: 22px;
}

.phone-screen > p {
  color: #88828f;
  font-size: 12px;
  margin: 5px 0 22px;
}

.receipt {
  background: white;
  padding: 17px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(50,30,80,.07);
}

.receipt-title {
  font-weight: 800;
  font-size: 13px;
  padding-bottom: 12px;
}

.receipt-row,
.receipt-total {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 9px 0;
  border-top: 1px solid #eee;
}

.receipt-total {
  font-size: 13px;
  color: #7047eb;
}

.phone button {
  width: 100%;
  border: 0;
  background: #7047eb;
  color: white;
  border-radius: 13px;
  padding: 14px;
  font-weight: 800;
  margin-top: 17px;
}

.no-account {
  display: block;
  color: #aaa4af;
  margin-top: 10px;
}

.floating-card {
  position: absolute;
  background: white;
  box-shadow: 0 15px 40px rgba(60,40,100,.13);
  border-radius: 16px;
  padding: 12px 17px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 5;
}

.floating-card span {
  font-size: 25px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: #888;
  font-size: 11px;
}

.card-left {
  left: 0;
  top: 130px;
}

.card-right {
  right: 0;
  bottom: 130px;
}


/* GENERAL */

.section {
  padding: 105px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 65px;
}

.section-heading span,
.eyebrow {
  color: #7047eb;
  font-weight: 800;
  letter-spacing: 1.8px;
  font-size: 12px;
}

.section-heading h2 {
  font-size: 40px;
  letter-spacing: -1.5px;
  margin: 10px 0;
}

.section-heading p {
  color: #817b87;
}


/* STEPS */

.steps {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
  gap: 15px;
}

.step {
  text-align: center;
  padding: 35px 25px;
}

.step-number {
  width: 28px;
  height: 28px;
  background: #7047eb;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  margin: auto;
}

.step-icon {
  font-size: 45px;
  margin: 20px 0;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: #817c86;
  font-size: 14px;
}

.step-arrow {
  font-size: 30px;
  color: #d4cced;
}


/* APP SECTION */

.app-section {
  background: #f7f5fb;
  padding: 110px 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.app-preview {
  display: grid;
  place-items: center;
}

.mini-phone {
  width: 310px;
  padding: 9px;
  background: #1d1a22;
  border-radius: 43px;
  box-shadow: 0 35px 60px rgba(55,40,90,.18);
}

.mini-screen {
  min-height: 510px;
  background: white;
  border-radius: 35px;
  padding: 55px 20px 25px;
}

.tiny-logo {
  font-size: 30px;
}

.mini-screen h3 {
  margin: 12px 0 25px;
}

.person {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.person small {
  display: block;
  color: #999;
}

.avatar {
  width: 36px;
  height: 36px;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.purple { background: #7047eb; }
.green { background: #3aaa7b; }
.blue { background: #4685e8; }

.total-box {
  margin-top: 25px;
  background: #f1edff;
  color: #6540d1;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.app-copy h2 {
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 15px 0 20px;
}

.app-copy > p {
  color: #77717d;
  margin-bottom: 32px;
  font-size: 17px;
}

.benefit {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.benefit > div {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9e2ff;
  color: #7047eb;
  font-weight: 900;
}

.benefit span {
  color: #7b7580;
  font-size: 14px;
}

.benefit strong {
  color: #29252e;
}


/* CTA */

.cta {
  padding: 80px 0;
}

.cta-box {
  min-height: 280px;
  border-radius: 32px;
  background: linear-gradient(130deg, #6840dd, #8d64f4);
  color: white;
  padding: 55px 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.cta-box span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: .7;
}

.cta-box h2 {
  font-size: 39px;
  max-width: 600px;
  margin: 9px 0;
}

.cta-box p {
  opacity: .8;
}

.cta-icon {
  font-size: 100px;
  transform: rotate(10deg);
}


/* FAQ */

.small-container {
  max-width: 800px;
}

.faq details {
  border-bottom: 1px solid #e8e5eb;
  padding: 21px 5px;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}

.faq details p {
  color: #77717e;
  font-size: 14px;
  padding: 15px 0 4px;
}


/* FOOTER */

footer {
  background: #19171e;
  color: white;
  padding: 55px 0 25px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand p {
  color: #928d98;
  font-size: 13px;
  margin-top: 5px;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: #aaa5af;
  font-size: 13px;
}

.copyright {
  border-top: 1px solid #302d34;
  margin-top: 40px;
  padding-top: 22px;
  color: #6f6a73;
  font-size: 11px;
}


/* MOBILE */

@media (max-width: 800px) {

  .container {
    width: min(100% - 32px, 1160px);
  }

  nav,
  .nav-button {
    display: none;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .phone-area {
    margin-top: 20px;
  }

  .floating-card {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .app-grid {
    gap: 60px;
  }

  .app-copy {
    text-align: center;
  }

  .benefit {
    text-align: left;
  }

  .cta-box {
    padding: 40px 30px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-icon {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .brand-icon img,
.app-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon,
.app-logo {
  overflow: hidden;
}

.receipt-small-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
}

.tiny-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cta-icon img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
/* ===== LOGOS CUÁNTO PAGO ===== */

.brand-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.app-logo {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
}

.app-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
}

.receipt-small-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
}

.tiny-logo {
  width: 42px;
  height: 42px;
  display: inline-flex;
}

.tiny-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

}