html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  cursor: default;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
figcaption,
hr,
dl,
dd {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
select,
button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
input[type="text"],
textarea {
  width: 100%;
}
input,
textarea,
button {
  border: 1px solid gray;
}
button {
  padding: 0;
  line-height: inherit;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
button * {
  pointer-events: none;
}
img,
iframe,
video,
object,
embed {
  display: block;
  max-width: 100%;
}
svg {
  max-width: 100%;
}
table {
  table-layout: fixed;
  width: 100%;
}
[hidden] {
  opacity: 0;
  visibility: hidden;
}
noscript {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em;
}
[tabindex="-1"] {
  outline: none !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
* {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
img {
  display: block;
  max-width: 100%;
}
a {
  margin: 0px;
  padding: 0px;
  display: block;
}
table {
  border-spacing: 0px;
}
button {
  border: none;
}
hr {
  border: none;
}
:root {
  --main: #051744;
  --light: #fefefe;
  --sec: #fcb51f;
  --dark: #000000;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
  max-width: 65px;
}
@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
html {
  font-size: 16px;
  font-family: "montserrat", sans-serif;
  color: var(--main);
  background-color: var(--light);
}
.view {
  transition: 0.6s;
}
a,
svg path,
button {
  transition: 0.3s;
}
.btn {
  background-color: var(--sec);
  color: var(--light);
  border-radius: 90px;
  padding: 10px 30px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4em;
  box-shadow: 0 0 10px var(--sec);
  max-width: fit-content;
  text-transform: uppercase;
}
.btn img {
  transition: 0.3s;
}
.btn:hover {
  background-color: var(--main);
  box-shadow: 0 0 10px var(--main);
}
.btn:hover img {
  transform: rotate(360deg);
}
.header {
  padding: 20px 10px;
  background-color: var(--main);
}
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.redes a:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px var(--light));
}
.main {
  background: url(/img/main-bg.webp) no-repeat center center;
  background-size: cover;
  padding: 80px 10px;
}
.main-grid {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0;
}
@media only screen and (max-width: 750px) {
  .main-grid {
    justify-content: center;
  }
}
.formphp {
  background-color: var(--light);
  padding: 40px 20px;
  min-height: 685px;
  max-width: 495px;
  border-radius: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.formphp .btn {
  margin-bottom: auto;
  margin-top: 40px;
}
@media only screen and (max-width: 370px) {
  .formphp {
    padding: 20px 10px;
  }
}
.form-text {
  display: grid;
  text-align: center;
  gap: 10px;
}
.form-text h1 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1em;
  font-style: italic;
}
.form-text h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
}
@media only screen and (max-width: 370px) {
  .form-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1em;
  }
  .form-text h2 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4em;
  }
}
.form-content {
  display: grid;
  gap: 20px;
  margin-top: auto;
}
.form-content input {
  background-color: none;
  border: 2px solid var(--main);
  border-radius: 13px;
  padding: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--main);
}
.form-content input::placeholder {
  font-style: italic;
  color: #051744b6;
}
@media only screen and (max-width: 370px) {
  .form-content input {
    width: 100%;
  }
}
.politica p,
.termos p {
  margin-top: 10px;
}
.politica h3,
.termos h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}
.politica ul,
.termos ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
.politica ul li,
.termos ul li {
  text-indent: 50px;
}
.politica h2,
.termos h2 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
}
.politica,
.termos {
  padding: 10px 10px;
}
.digitalmix {
  text-align: center;
  color: #f2f2f280;
  background-color: #121412;
  padding: 30px 10px;
}
.digitalmix-grid {
  display: grid;
  gap: 15px;
}
.digitalmix-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.digitalmix-grid > p,
.digitalmix-grid > div > p {
  font-size: 1rem !important;
}
@media only screen and (max-width: 360px) {
  .digitalmix-grid > div {
    display: grid;
    justify-items: center;
    gap: 10px;
  }
}
.vantagens {
  padding: 80px 10px;
}
.vantagens-grid {
  display: grid;
  gap: 30px;
  justify-items: center;
  text-align: center;
}
.vantagens-title {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: var(--main);
}
.vantagens-title h3 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4em;
  font-style: italic;
}
.vantagens-title p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
}
.vantagens-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}
.uma-vantagem {
  border: 1px solid var(--main);
  border-radius: 20px;
  min-height: 257px;
  max-width: 340px;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
.uma-vantagem h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--main);
}
.uma-vantagem p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--dark);
}
