@font-face {
  font-family: 'Gotham';
  src: url("./fonts/GOTHAM-MEDIUM.TTF");
}

@font-face {
  font-family: 'Gotham Light';
  src: url("./fonts/GOTHAM-XLIGHT.TTF");
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: Helvetica;
  color: #111827;
}

body {
  background: #F1F2F4;
}

html,
body {
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 70px;
  background: black;
  color: white;
}

.logo {
  width: 170px;
  height: 49px;
}

.hero {
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  display: block;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 20px;
}

h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 16px;
}

h4 {
  color: #6b7280;
  margin-bottom: 8px;
}

p {
  color: #6b7280;
  font-size: 20px;
  line-height: 24px;
}

.intro {
  background: #fff;
}

.intro .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 137px;

}

.intro h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  width: 277px;
}

.intro p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4B5563;
  width: 630px;
}

.benefits {
  background: #e5e7eb;
  margin: 0 16px 29px;
  border-radius: 16px;
}

.benefits {
  margin: 0;
  border-radius: 0;
}

.benefits h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin: 0;
}

.benefits h4 {
  font-size: 20px;
  line-height: 36px;
  font-weight: 700;
  margin: 0;
  color: #4B5563;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: white;
  padding: 32px 21px 52px;
  border-radius: 12px;
  box-shadow: 0px 4px 12.3px rgba(139, 139, 139, 0.25);
}

.card img {
  width: 40px;
  margin-bottom: 19px;
}

.card h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 40px;
}

.card p {
  font-size: 14px;
  line-height: 20px;
}

.who {
  background: #111;
  color: white;
}

.who h2,
.who li,
.who p {
  color: #D8D8D8;
}

.who ul {
  margin: 20px 0;
}

.who h2 {
  font-size: 30px;
  line-height: 36px;
}

.who li {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 8px;
}

.who p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.highlight {
  margin-top: 42px;
}

.cta {
  background: url("../img/LP_Moto_Desk.png") center/cover no-repeat;
  color: white;
  text-align: center;
}

.cta .container {
  padding: 66.5px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(21, 21, 19, 0.7);
  margin: 0;
  max-width: none;
}

.cta h2,
.cta p {
  color: white;
}

.cta h2 {
  font-size: 40px;
  line-height: 50px;
}

.cta p {
  width: 690px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.cta a {
  width: 406px;
  font-size: 18px;
  line-height: 28px;
}

.contact {
  background: #fff;
  text-align: center;
}

.contact-container {
  padding: 60px 20px;
}

.contact h4 {
  font-size: 24px;
  line-height: 44px;
  font-weight: 700;
  color: #4B5563;
  margin: 0;
}

.contact h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  margin: 0px 0 16px;
}

.btn.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  width: 406px;
}

.btn.whatsapp img {
  width: 20px;
}

.contact-sub {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #4B5563;
}

.contact-phone {
  margin-top: 16px;
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.contact-phone a {
  text-decoration: none;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #FFD400;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.footer {
  background: #252525;
  color: #FFFFFF;
  font-size: 12px;
}

.footer u {
  color: #FFFFFF;
}

.footer-top {
  padding: 40px 0;
}

.footer-top p {
  font-family: 'Gotham', Helvetica;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #FFFFFF;
}

.footer-divider {
  height: 1px;
  background: #FFD400;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0 50px;
}

.footer-bottom img {
  height: 30px;
  margin-bottom: 20px;
}

.footer-bottom p {
  font-family: 'Gotham', Helvetica;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 18px;
  font-weight: 500;
  text-align: left;
  color: #FFFFFF;
}

.mobile-break {
   display: none; 
  }

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 13px 16px;
  }

  .logo {
    width: 144px;
    height: 45px;
  }

  h2 {
    font-size: 24px;
  }

  .benefits {
    margin: 0 16px 29px;
    border-radius: 16px;
  }

  .benefits h2,
  .benefits h4 {
    max-width: 255px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 30px 16px;
  }

  .intro .container {
    flex-direction: column;
    gap: 20px;
  }

  .intro h2,
  .intro p {
    width: 100%;
  }

  .who {
    display: flex;
    align-items: center;
    margin: 0 14.5px 24px;
    border-radius: 16px;
    height: 487px;
  }

  .who .container {
    padding: 30px 16px;
  }

  .cta {
    display: flex;
    align-items: center;
    margin: 0 14.5px 16px;
    border-radius: 16px;
    height: 487px;
    background-size: 500%;
    background-position-y: -333px;
  }

  .cta .container {
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
    border-radius: 16px;
    height: 487px;
  }

  .cta h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .cta p {
    width: 100%;
    font-size: 16px;
  }

  .cta a {
    width: 100%;
  }

  .contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 47px 16px 46px;
  }

  .contact h4 {
    font-size: 16px;
    line-height: 44px;
    margin: 0;
  }

  .contact h2 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    max-width: 312px;
  }

  .contact-sub {
    max-width: 241px;
  }

  .contact-phone {
    font-size: 32px;
    line-height: 44px;
  }

  .btn.whatsapp {
    width: 270px;
    height: 60px;
    border-radius: 24px;
  }

  .footer-top p,
  .footer-bottom p {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
  }

  .footer-divider {
    width: 89%;
    margin: 20px 24px;
  }

  .mobile-break {
   display: block; 
  }
}