/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
}

a{
  font: inherit;
  color: #fff;
  text-decoration: none;
}

/* background */
body::before{
  content: "";
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;

  background: radial-gradient(141.42% 141.42% at 100% 0%, rgba(56, 152, 211, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.5;
  z-index: -1;
}

body{
  background-color: #06080B;
}

h1{
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 78.4px;
  letter-spacing: -1.512px;
}

p{
  display: flex;
  height: 29px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;

  color: #ffffffcc;
  text-align: center;
  font-family: Manrope;
  font-style: normal;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 400;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  text-align: center;
  gap: 30px;
  z-index: 10;
  width: 80%;
  margin-inline: auto;
}

.content{
  width: 947px;
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ctas{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

#contact{
  width: 188px;
  height: 56px;

  border-radius: 4px;
  background: #3898D3;
}

#cases{
  width: 188px;
  height: 56px;

  border-radius: 4px;
  background: #333945;
}

.button{
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px){
 main{
  width: 358px;
 }

 h1{
  color: #FFF;
  text-align: center;
  font-size: 32px;
  line-height: 44.4px; /* 138.75% */
  letter-spacing: -1.512px;
  width: 358px;
 }

 .content {
  max-width: 100%;
  padding: 0 20px; /* Garante que o texto não encoste nas bordas */
}
 
.button{
  height: ;
}

 p {
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  max-width: 100%;
}
}