/* ============================
   PAYD Landing Page Styles
   ============================ */

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  background-color: #f0f4f8;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================
   Layout Container
   ============================ */
.landing-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 40, 100, 0.08);
}

/* ============================
   SECTION: INICIO (Hero)
   ============================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

.hero-logo {
  width: 350px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  border-radius: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #01437A;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
}

.hero-content h1 span {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;

  letter-spacing: 3px;
  margin-top: 8px;
  opacity: 0.9;
}

/* ============================
   SECTION: QUE ES PAYD
   ============================ */
.que-es-section {
  background: #fff;
  padding: 60px 40px;
  text-align: center;
}

.que-es-section .section-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  margin: -200px auto -150px;
}

.que-es-section .section-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.que-es-container {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #01437A 0%, #002855 100%);
  border-radius: 36px;
  padding: 110px 40px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.que-es-container h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.que-es-container h2:not(:first-of-type) {
  margin-top: 45px;
}

.que-es-container .que-es-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.8;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  text-align: justify;
}

.que-es-container .que-es-text strong {
  color: #ffffff;
}

/* ============================
   SECTION: ADQUIRIR
   ============================ */
.adquirir-section {
  background: #ffffff;
  padding: 80px 40px;
  text-align: center;
}

.adquirir-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #01437A;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.adquirir-pasos {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 650px;
  margin: 0 auto;
}

.adquirir-paso-card {
  position: relative;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adquirir-paso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Paso 1 Specifics */
.adquirir-paso-card.paso-1 {
  border: 3px solid #00a2e8;
  border-radius: 28px;
}

.adquirir-paso-card.paso-1 .paso-card-main {
  padding: 24px 30px;
  padding-right: 190px;
  text-align: left;
}

.adquirir-paso-card.paso-1 .paso-badge {
  background: #00a2e8;
  color: #ffffff;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.adquirir-paso-card.paso-1 .paso-desc {
  color: #01437A;
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}

.adquirir-paso-card.paso-1 .paso-footer-bar {
  background: #00a2e8;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 0 0 24px 24px;
  text-align: left;
  margin: -1px -1px -1px -1px;
}


.align-center {

  text-align: center;
}

.adquirir-paso-card.paso-1 .paso-card-image {
  position: absolute;
  right: -40px;
  top: -50px;
  bottom: -20px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.adquirir-paso-card.paso-1 .paso-card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* Paso 2 Specifics */
.adquirir-paso-card.paso-2 {
  border: 3px solid #01437A;
  border-radius: 28px;
}

.adquirir-paso-card.paso-2 .paso-card-main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.adquirir-paso-card.paso-2 .paso-card-main {
  padding: 24px 30px;
  padding-left: 210px;
  text-align: right;
}

.adquirir-paso-card.paso-2 .paso-badge {
  background: #01437A;
  color: #ffffff;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.adquirir-paso-card.paso-2 .paso-desc {
  color: #01437A;
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}

.adquirir-paso-card.paso-2 .paso-desc strong {
  font-weight: 800;
}

.adquirir-paso-card.paso-2 .paso-footer-bar {
  background: #01437A;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 0 0 24px 24px;
  text-align: right;
  margin: -1px -1px -1px -1px;
}

.adquirir-paso-card.paso-2 .paso-card-image {
  position: absolute;
  left: -20px;
  top: -20px;
  bottom: -20px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.adquirir-paso-card.paso-2 .paso-card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* App Download Badges */
.download-badges {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

.badge-btn {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #333333;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: left;
}

.badge-btn:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-btn svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-sub {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.badge-main {
  font-size: 16px;
  font-weight: 700;
}



/* ==========================================
   SECTION: CONTRATACIÓN Y USO (UNIFIED BLUE)
   ========================================== */
.contratacion-uso-section {
  background: #ffffff;
  padding: 60px 0px;
  text-align: center;
}

.contratacion-uso-container {
  background: linear-gradient(180deg, #01437A 0%, #002855 100%);
  border-radius: 36px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contratacion-uso-container h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.contratacion-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contratacion-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.contratacion-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.contratacion-card .card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contratacion-card .card-icon svg {
  width: 44px;
  height: 44px;
  color: #00a2e8;
}

.contratacion-card .card-content p {
  font-size: 20px;
  color: #01437A;
  line-height: 1.5;
  margin: 0;
}

.contratacion-card .card-content p strong {
  font-weight: 700;
  color: #01437A;
}

/* Uso & Seguimiento Card */
.uso-app-card {
  background: #ffffff;
  border-radius: 36px;
  padding: 45px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.uso-app-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.uso-app-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.uso-app-item .num {
  font-size: 1.05rem;
  font-weight: 700;
  color: #01437A;
  flex-shrink: 0;
  margin-top: 2px;
}

.uso-app-item .text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #01437A;
  margin: 0 0 4px 0;
}

.uso-app-item.highlighted .text h3 {
  color: #00a2e8;
}

.uso-app-item .text p {
  font-size: 20px;
  color: #003262;
  line-height: 1.5;
  margin: 0;
}



/* ============================
   SECTION: TERMINOS
   ============================ */
.terminos-section {
  background: #ffffff;
  padding: 10px 40px;
  text-align: center;
}

.terminos-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #01437A;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.termino-block {
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.termino-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #01437A;
  margin-bottom: 16px;
}

.termino-block p {
  font-size: 20px;
  color: #02437a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.termino-block p strong {
  font-weight: 700;
  color: #01437A;
}

.termino-block ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.termino-block ul li {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  color: #02437a;
  line-height: 1.7;
  margin-bottom: 8px;
}

.termino-block ul li::before {
  content: "•";
  color: #00a2e8;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.termino-block ul li strong {
  color: #01437A;
  font-weight: 700;
}

.termino-highlight-sentence {
  font-size: 1rem;
  font-weight: 700;
  color: #01437A;
  margin-top: 16px;
  margin-bottom: 24px;
}

.termino-highlight-sentence.font-normal {
  font-weight: 400;
  color: #02437a;
}

.cta-wrapper {
  margin-top: 24px;
  text-align: center;
}

.termino-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  gap: 16px;
  background: linear-gradient(90deg, #1d4ed8 0%, #00a2e8 100%);
  color: #ffffff;
  padding: 10px 10px 10px 30px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 162, 232, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.termino-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 162, 232, 0.3);
}

.termino-cta .cta-text {
  text-transform: none;
  letter-spacing: 0.5px;
}

.termino-cta .cta-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a2e8;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.termino-cta .cta-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ==========================================
   SECTION: POLÍTICAS Y FOOTER (UNIFIED BLUE)
   ========================================== */
.politicas-footer-section {
  background-color: #f0f4f8;
  text-align: center;
}

.politicas-footer-container {
  background: linear-gradient(180deg, #01437A 0%, #002855 100%);
  border-radius: 36px;
  padding: 65px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.politicas-footer-container h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 45px;
  letter-spacing: 1px;
  text-align: center;
}

.politica-block {
  margin-bottom: 35px;
}

.politica-label {
  display: inline-block;
  background: #00a2e8;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 162, 232, 0.15);
}

.politica-block p {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

.politica-block p strong {
  color: #ffffff;
  font-weight: 700;
}

.politicas-footer-logo {
  text-align: center;
  margin-top: 50px;
}

.politicas-footer-logo img {
  width: 220px;
  height: auto;
}

.copyright-text {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 24px;
  text-align: center;
}



/* Scroll-triggered animations (disabled) */
.animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ============================
   Responsive (Mobile)
   ============================ */
@media (max-width: 600px) {
  .hero-content {
    padding: 100px 24px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h1 span {
    font-size: 1.6rem;
  }

  .hero-logo {
    width: 80%;
  }

  .adquirir-section,
  .contratacion-uso-section,
  .terminos-section,
  .politicas-footer-section {
    padding: 40px 16px;
  }

  .politicas-footer-container {
    padding: 40px 16px;
    border-radius: 24px;
  }

  .politicas-footer-container h2 {
    font-size: 1.4rem;
  }

  .politicas-footer-logo img {
    width: 165px;
  }

  .que-es-section {
    padding: 40px 16px;
  }

  .que-es-section .section-image {
    margin: -100px auto -80px;
    max-width: 320px;
  }

  .que-es-container {
    padding: 100px 20px 40px;
    border-radius: 24px;
  }

  .que-es-container h2 {
    font-size: 1.4rem;
  }

  .adquirir-pasos {
    gap: 35px;
    padding: 0;
  }

  .adquirir-paso-card {
    min-height: auto;
  }

  .adquirir-paso-card.paso-1 .paso-card-main,
  .adquirir-paso-card.paso-2 .paso-card-main {
    padding: 20px 20px 10px;
    text-align: center;
  }

  .adquirir-paso-card.paso-1 .paso-card-image,
  .adquirir-paso-card.paso-2 .paso-card-image {
    position: static;
    width: 140px;
    margin: 10px auto;
    order: -1;
  }

  .adquirir-paso-card.paso-1 .paso-footer-bar,
  .adquirir-paso-card.paso-2 .paso-footer-bar {
    text-align: center;
    padding: 10px 20px;
  }

  .contratacion-uso-container {
    padding: 40px 16px;
    border-radius: 24px;
  }

  .contratacion-uso-container h2 {
    font-size: 1.4rem;
  }

  .contratacion-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }

  .uso-app-card {
    padding: 30px 20px;
    border-radius: 24px;
  }



  .termino-cta {
    width: 100%;
    font-size: 20px;
    padding: 8px 8px 8px 20px;
    border-radius: 30px;
  }

  .termino-cta .cta-icon {
    width: 36px;
    height: 36px;
  }

  .termino-cta .cta-icon svg {
    width: 18px;
    height: 18px;
  }

  .download-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}