/* ========================================
   SHARED - LP DNE Internacional (UNE)
   Reusable styles used across sections
   ======================================== */

/* Page container */
.lp-container {
  max-width: 1157px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Section header: title + short black tick over a thin gray rule */
.section-header {
  margin-bottom: 34px;
}

.section-header__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.4;
  color: #1E1E1E;
  text-align: left;
  margin: 0 0 12px;
}

.section-header__rule {
  border-bottom: 1px solid #535353;
}

.section-header__rule::before {
  content: '';
  display: block;
  width: 49px;
  height: 2px;
  background-color: #000000;
}

/* Gray lead paragraph */
.section-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #626262;
  margin: 0;
}

/* Blue rounded square holding an icon */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background-color: #0066B3;
  border-radius: 16px;
}

/* Primary CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background-color: #0066B3;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #0074cc;
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .section-header__title {
    font-size: 28px;
  }

  .section-text {
    font-size: 18px;
  }

  .icon-badge {
    width: 72px;
    height: 72px;
  }

  .icon-badge img {
    max-width: 44px;
    max-height: 44px;
  }

  /* CTAs that become full-width on small screens */
  .cta-button--full-mobile {
    display: flex;
    width: 100%;
  }
}
