@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Reset CSS */
/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* End Reset */

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}
main{
  padding: 3.75rem 0;
  }
.container {
  display: block;
  max-width: 90vw;
  margin: 0 auto;
}
h1{
  font-weight: 400;
  text-align: center;
}
/* h1::after{
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #000;
  left: 234px;
  position: relative;
} */
.form-assinante{
  margin: 0 auto;
  margin-top: 3rem;
}
.item-form{
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem;
  margin-bottom:1.5rem;
  border-radius: 18px;
  background: #F6F6F6;
}
.item-form label{
  font-size: 1.1rem;
  color: #212529;
}
.item-form input{
  border:0;
  background: transparent;
  border-bottom: 2px solid #D5D5D5;
  outline: none;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus{
  border-bottom: 2px solid #495057;
}
.item-submit{
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}
.btn-particular{
  background: #343a40;
  color: #f8f9fa;
  border:0;
  font-size: 1.1rem;
  border-radius:40px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
}
.btn-intertower{
  background: #343a40;
  color: #f8f9fa;
  border:0;
  font-size: 1.1rem;
  border-radius:40px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
}
.btn-telegram{
  background: #343a40;
  color: #f8f9fa;
  border:0;
  font-size: 1.1rem;
  border-radius:40px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  display: none;
}
#mensagemSucesso {
  color:green;
}