* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-size: 1.6rem;
  font-family: "Be Vietnam Pro", sans-serif;
}

html {
  font-size: 62.5%;
}

img {
  display: block;
  max-width: 100%;
}

span,
a {
  display: inline-block;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.card-comentario {
  width: 55rem;
  background-color: hsl(0, 0%, 98%);
  padding: 0 2rem 2rem 2rem;
  border-radius: 5px;
  box-shadow: 1px 1px 2px -2px rgba(0, 0, 0, 0.75);
}
.card-comentario .img-perfil {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  transform: translateY(-50%);
}
.card-comentario .texto {
  text-align: center;
}
.card-comentario .texto span {
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .card-comentario {
    max-width: 32rem;
  }
}

.btn-primario {
  color: #ffffff;
  background-color: hsl(12, 88%, 59%);
  padding: 1.5rem 3rem;
  border-radius: 9999px;
  box-shadow: 0 3px 15px 0 hsla(12, 88%, 59%, 0.5);
  transition: all 0.3s ease;
  font-weight: 700;
}
.btn-primario.white {
  background-color: #ffffff;
  color: hsl(12, 88%, 59%);
}
.btn-primario:hover {
  opacity: 0.6;
}

.card-informacao {
  width: 100%;
  max-width: 54rem;
}
.card-informacao:not(:last-child) {
  margin-bottom: 3rem;
}
.card-informacao .top {
  display: flex;
  align-items: center;
}
.card-informacao .top span {
  background-color: hsl(12, 88%, 59%);
  padding: 1rem 2.5rem;
  color: #ffffff;
  font-weight: 500;
  border-radius: 2.5rem;
  margin-right: 2.5rem;
}
.card-informacao p {
  margin-top: 2rem;
  padding-left: 9.6rem;
}
@media (max-width: 1200px) {
  .card-informacao {
    max-width: 48rem;
  }
}
@media (max-width: 998px) {
  .card-informacao {
    max-width: 100%;
    text-align: center;
  }
  .card-informacao .top {
    flex-direction: column;
  }
  .card-informacao .top span {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .card-informacao p {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .card-informacao .top {
    flex-direction: row;
    background-color: hsl(13, 100%, 96%);
  }
  .card-informacao .top h3 {
    font-size: 1.5rem;
  }
  .card-informacao .top span {
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .card-informacao p {
    padding-left: 0;
  }
}

h1,
h2,
h3 {
  line-height: 120%;
  color: hsl(233, 12%, 13%);
  font-weight: 700;
}

h1 {
  font-size: 5.6rem;
}

h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 150%;
  color: rgba(0, 0, 0, 0.6);
}

.container {
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 124.6rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  display: flex;
  z-index: 1;
  background: transparent;
  transition: all 0.3s ease;
}
header.ativo {
  background-color: #ffffff;
  box-shadow: 0 1px 10px 2px rgba(0, 0, 0, 0.146);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .btn-mobile {
  display: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  width: 4rem;
  height: 4rem;
  display: none;
}
header .btn-mobile img {
  position: absolute;
  transition: all 0.3s ease;
}
header .btn-mobile img:last-child {
  opacity: 0;
  pointer-events: none;
}
header .btn-mobile.ativo img:first-child {
  opacity: 0;
  pointer-events: none;
}
header .btn-mobile.ativo img:last-child {
  opacity: 1;
  pointer-events: all;
}
header nav ul {
  display: flex;
}
header nav ul li:not(:last-child) {
  margin-right: 2.5rem;
}
header nav ul li:hover a {
  opacity: 0.6;
}
header nav ul a {
  color: hsl(233, 12%, 13%);
  transition: all 0.3s ease;
}
@media (max-width: 998px) {
  header nav ul li:not(:last-child) {
    margin-right: 1.8rem;
  }
}
@media (max-width: 768px) {
  header .btn-mobile {
    display: flex;
    z-index: 11;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    height: 100vh;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 10;
    display: none;
  }
  header nav.ativo {
    display: block;
  }
  header nav.ativo .overlay,
  header nav.ativo ul {
    transition: all 0.3s ease;
    animation: anima 0.8s forwards;
  }
  header nav .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  header nav ul {
    position: fixed;
    right: 2rem;
    top: 9rem;
    width: 100%;
    max-width: 26rem;
    height: 23rem;
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 5;
    border-radius: 0.5rem;
  }
  header nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  header .btn-primario {
    display: none;
  }
}
@media (max-width: 480px) {
  header nav ul {
    left: 50%;
    margin-left: -13rem;
  }
}
@keyframes anima {
  from {
    transform: translateY(-100vh);
  }
  to {
    transform: translateY(0);
  }
}

.s-principal {
  padding-top: 14rem;
  padding-bottom: 12rem;
  position: relative;
  overflow: hidden;
}
.s-principal::after {
  position: absolute;
  content: "";
  background: url(../images/bg-tablet-pattern.svg) no-repeat;
  background-size: auto;
  width: 60rem;
  height: 90rem;
  right: 0;
  top: -220px;
  z-index: -1;
}
.s-principal::before {
  position: absolute;
  content: "";
  background: url(../images/bg-tablet-pattern.svg) no-repeat;
  width: 60rem;
  height: 60rem;
  background-size: contain;
  left: -300px;
  bottom: 300px;
  z-index: -1;
}
.s-principal .conteudo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s-principal .conteudo-top .texto {
  width: 100%;
  max-width: 48rem;
}
.s-principal .conteudo-top .texto h1 {
  margin-bottom: 3.6rem;
}
.s-principal .conteudo-top .texto p {
  margin-bottom: 3.6rem;
  max-width: 35rem;
}
.s-principal .informacao {
  padding-top: 9rem;
  padding-bottom: 13rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.s-principal .informacao .left {
  width: 100%;
  max-width: 46rem;
}
.s-principal .informacao .left h2 {
  margin-bottom: 3.5rem;
}
.s-principal .informacao .left p {
  max-width: 36rem;
}
.s-principal .comentarios {
  width: 100%;
}
.s-principal .comentarios h2 {
  margin-bottom: 10rem;
  text-align: center;
}
.s-principal .comentarios .principal-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  transform: translateX(290px);
  transition: transform 0.3s;
}
.s-principal .comentarios .paginador {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.s-principal .comentarios .paginador .paginando {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  display: none;
}
.s-principal .comentarios .paginador .paginando span {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid hsla(12, 88%, 59%, 0.5);
  transition: all 0.3s ease;
}
.s-principal .comentarios .paginador .paginando span:hover {
  background-color: hsl(12, 88%, 59%);
}
.s-principal .comentarios .paginador .paginando span.ativo {
  background-color: hsl(12, 88%, 59%);
}
@media (max-width: 1200px) {
  .s-principal .conteudo-top .texto {
    max-width: 50rem;
  }
  .s-principal .conteudo-top .texto h1 {
    font-size: 4.8rem;
  }
  .s-principal .conteudo-top .image-desktop {
    max-width: 70%;
  }
  .s-principal .informacao .left {
    max-width: 40rem;
  }
}
@media (max-width: 998px) {
  .s-principal::before {
    display: none;
  }
  .s-principal .conteudo-top {
    flex-direction: column-reverse;
  }
  .s-principal .conteudo-top .texto {
    text-align: center;
    max-width: 100%;
  }
  .s-principal .conteudo-top .texto p {
    max-width: 100%;
  }
  .s-principal .conteudo-top .image-desktop {
    max-width: 100%;
  }
  .s-principal .informacao {
    flex-direction: column;
  }
  .s-principal .informacao .left {
    text-align: center;
    max-width: 100%;
    margin-bottom: 3rem;
  }
  .s-principal .informacao .left p {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .s-principal::after {
    position: absolute;
    content: "";
    background: url(../images/bg-tablet-pattern.svg) no-repeat;
    background-size: cover;
    width: 50rem;
    height: 50rem;
    left: 30px;
    top: -85px;
    z-index: -1;
  }
  .s-principal::before {
    width: 30rem;
    height: 30rem;
    left: 211px;
    top: 580px;
    display: block;
  }
  .s-principal .conteudo-top .texto {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 3.5rem;
  }
  .s-principal .conteudo-top .texto h1 {
    font-size: 4rem;
    max-width: 38rem;
    margin-bottom: 1.5rem;
  }
  .s-principal .conteudo-top .texto p {
    max-width: 90%;
  }
  .s-principal .informacao .left h2 {
    font-size: 3.5rem;
  }
  .s-principal .comentarios h2 {
    font-size: 3.5rem;
  }
  .s-principal .comentarios .paginador .paginando {
    display: block;
  }
}

.trabalhando-todo-dia {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: hsl(12, 88%, 59%);
}
.trabalhando-todo-dia .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trabalhando-todo-dia h2 {
  color: #ffffff;
  max-width: 53rem;
}
@media (max-width: 768px) {
  .trabalhando-todo-dia {
    text-align: center;
  }
  .trabalhando-todo-dia .container {
    flex-direction: column;
  }
  .trabalhando-todo-dia h2 {
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .trabalhando-todo-dia h2 {
    font-size: 3rem;
    max-width: 26rem;
  }
}

footer {
  background-color: hsl(228, 39%, 23%);
  padding-block: 7rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
footer .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .left ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
footer .left ul a svg path {
  transition: all 0.3s ease;
}
footer .left ul a svg:hover path {
  fill: hsl(12, 88%, 59%);
  stroke: hsl(12, 88%, 59%);
}
footer nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 40rem;
}
footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer nav ul li:hover a {
  opacity: 0.6;
}
footer nav ul a {
  transition: all 0.3s ease;
  color: #ffffff;
}
footer .mini-form {
  width: 100%;
  max-width: 35rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .mini-form form input {
  padding: 1.5rem 2.5rem;
  border-radius: 2.5rem;
  background-color: #ffffff;
  border: 0;
  outline: none;
}
footer .mini-form form .btn-primario {
  margin-left: 1rem;
}
footer .mini-form p {
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}
@media (max-width: 1200px) {
  footer nav {
    max-width: 30rem;
  }
}
@media (max-width: 998px) {
  footer .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
  footer .left {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  footer .left .logo {
    margin: 0 auto;
  }
  footer .left ul {
    margin-bottom: 2rem;
  }
  footer .left ul a img {
    width: 3rem;
    height: 3rem;
  }
  footer nav {
    max-width: 45rem;
  }
  footer .mini-form p {
    display: none;
  }
  footer p {
    text-align: center;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (max-width: 480px) {
  footer nav {
    max-width: 30rem;
  }
}