@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

img {
  width: 100%;
}

strong {
  font-weight: 600;
}

.x-banner-desktop {
  display: none;
}

h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

h3 {
  font-weight: 400;
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

body {
  width: 80%;
  min-height: 100vh;
  margin: 0 auto;
}

.x-container-blue {
  height: 60%;
  background: #276AB2;
  margin: 0 auto;
}

.x-wrapper-white {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.x-wrapper-blue {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.x-wrapper-blue h1 {
  color: #fff;
  text-align: center;
  margin-top: 2rem;
}

.x-wrapper-blue h3 {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
}

.x-text-white {
  text-align: center;
  width: 100%;
}

a {
  display: block;
  text-decoration: none;
}

.x-button-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  width: 190px;
  margin: 2rem auto 0 auto;
  color: #fff;
  padding: 8px;
  height: 50px;
}

.x-button-whatsapp p {
  font-size: 1.2rem;
}

.x-button-whatsapp svg {
  width: 30px;
}

.x-container-terms {
  max-width: 82%;
  margin: 1.6rem auto;
  text-align: center;
}

.x-container-terms a {
  color: inherit;
  text-decoration: underline;
  display: inline-block;
  font: inherit
}

@media (min-width: 961px) {
  .x-banner-desktop {
    display: block;
  }

  .x-banner-desktop img {
    width: 100%;
  }

  .x-container-white,
  .x-container-blue,
  .x-phone-mobile {
    display: none;
  }
}

@media (max-width: 960px) {
  body {
    width: 100%;
  }

  .x-banner-desktop {
    display: none;
  }

  h1 {
    font-weight: 600;
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 1.1rem;
  }

  .x-wrapper-white {
    width: 100%;
  }

  .x-image-white {
    width: 100%;
  }

  .x-wrapper-blue {
    justify-content: flex-start;
    width: 90%;
  }

  .x-wrapper-blue h1 {
    margin-top: 2.5rem;
  }
}

@media (max-width: 550px) {
  .x-container-terms p {
    font-size: 0.75rem;
  }
}