* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
}

fieldset {
  border: none;
}

a {
  text-decoration: none;
}

picture {
  display: block;
}

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

html {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
}

body {
  font-size: 1.6rem;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.3;
}
@media screen and (min-width: 736px) {
  h1 {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

h2 {
  font-size: 2.9rem;
  line-height: 1.3;
}
@media screen and (min-width: 736px) {
  h2 {
    font-size: 2.9rem;
  }
}

h3 {
  font-size: 2.3rem;
}
@media screen and (min-width: 736px) {
  h3 {
    font-size: 2.3rem;
  }
}

h4 {
  font-size: 1.9rem;
}
@media screen and (min-width: 736px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1.8rem;
}
@media screen and (min-width: 736px) {
  h5 {
    font-size: 1.9rem;
  }
}

p {
  color: #585858;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (min-width: 736px) {
  p {
    font-size: 1.7rem;
    line-height: 1.7;
  }
}

.subheading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #E53351;
  margin-bottom: 20px;
}
@media screen and (min-width: 736px) {
  .subheading {
    font-weight: initial;
  }
}

.subheading-semibold {
  font-size: 2.2rem;
  font-weight: 700;
  color: #E53351;
  margin-bottom: 20px;
}

.flex {
  display: flex;
}

.row-wrap {
  flex-flow: row wrap;
}

.row-reverse {
  flex-flow: row-reverse wrap;
}

.align-center {
  align-items: center;
}

.align-content-start {
  align-content: flex-start;
}

.align-items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.text-align-center {
  text-align: center;
}

.color-white {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #fff;
}

.container {
  width: 85%;
  height: inherit;
  margin: auto;
}
@media screen and (min-width: 1600px) {
  .container {
    width: 65%;
  }
}
@media screen and (min-width: 2500px) {
  .container {
    width: 50%;
  }
}

@media screen and (min-width: 736px) {
  .section-intro {
    width: 75%;
    margin: auto;
  }
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 80px;
}
@media screen and (min-width: 736px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 110px;
  }
}

.elevate {
  position: relative;
  z-index: 2;
}

.background-black {
  background-color: #000;
}

.background-white {
  background-color: #fff;
}

.u-link-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.header {
  width: 100%;
  height: 100px;
  background-color: transparent;
}
@media screen and (min-width: 980px) {
  .header {
    height: 120px;
  }
}

.logo {
  position: relative;
  margin: auto;
  z-index: 2;
}
@media screen and (min-width: 980px) {
  .logo {
    margin: initial;
    transform: none;
  }
}
.logo svg {
  width: 100px;
}

.logo-mobile-margin {
  margin-bottom: 20px;
}

.header-menu-open {
  position: absolute;
  top: 29px;
  right: 20px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 2;
}
@media screen and (min-width: 980px) {
  .header-menu-open {
    display: none;
  }
}

.header-menu-close {
  position: absolute;
  top: 29px;
  right: 20px;
  padding: 5px 10px;
  cursor: pointer;
}

.header-menu-icon-svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.7);
}

.nav {
  display: none;
}
@media screen and (min-width: 980px) {
  .nav {
    display: initial;
    z-index: 2;
  }
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 31px;
  text-align: center;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: all 200ms ease-in-out;
}
.nav-mobile .logo {
  display: inline-block;
  margin-bottom: 20px;
}
.nav-mobile ul {
  width: 90%;
  padding-top: 10px;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-mobile--is-visible {
  opacity: 1;
  visibility: visible;
}

.nav__item {
  display: block;
  margin-bottom: 10px;
  list-style: none;
}
@media screen and (min-width: 980px) {
  .nav__item {
    display: inline-block;
    margin-bottom: 0;
  }
}

.nav__link {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: inline-block;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (min-width: 980px) {
  .nav__link {
    margin-left: 16px;
    padding: 15px 15px;
    font-size: 1.5rem;
  }
}
.nav__link:hover {
  color: #fff;
}

.nav__link--is-active {
  color: #E53351;
  font-weight: 700;
  border-bottom: 2px solid #E53351;
}
.nav__link--is-active:hover {
  color: #E53351;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: #000;
  text-align: center;
  z-index: 1;
}
.hero:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 2px;
  left: 0;
  background: url("./img/hero-picture.png") no-repeat;
  background-size: 100%;
  background-position: center bottom -80px;
  z-index: 1;
  opacity: 0.5;
}
@media screen and (min-width: 736px) {
  .hero:after {
    background-size: 500px;
    background-position: right 80px top 100px;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1200px) {
  .hero:after {
    background-size: 550px;
    background-position: right 140px top 60px;
  }
}
@media screen and (min-width: 1920px) {
  .hero:after {
    background-size: 610px;
    background-position: right 150px top 80px;
  }
}
@media screen and (min-width: 980px) {
  .hero {
    height: 600px;
    text-align: initial;
  }
}
@media screen and (min-width: 1920px) {
  .hero {
    height: 700px;
    text-align: initial;
  }
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 736px) {
  .hero-content {
    top: 45%;
    left: initial;
    transform: translateY(-50%);
  }
}

.hero__title {
  margin-bottom: 40px;
  font-size: 4.2rem;
  line-height: 1.2;
}
@media screen and (min-width: 736px) {
  .hero__title {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    font-size: 4.6rem;
  }
}
@media screen and (min-width: 980px) {
  .hero__title {
    margin-right: initial;
    margin-left: initial;
    font-size: 5rem;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .hero__title {
    font-size: 5.2rem;
  }
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  background: transparent;
  border: transparent;
  color: #00AEBC;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.8px;
  transition: all 120ms ease-in-out;
  cursor: pointer;
  outline: none;
  border: 3px solid #00AEBC;
}
@media screen and (min-width: 480px) {
  .button {
    max-width: 290px;
  }
}

.button-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  background: transparent;
  border: transparent;
  color: #00AEBC;
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: all 120ms ease-in-out;
  cursor: pointer;
  outline: none;
  border: 3px solid #00AEBC;
}

.button-fill {
  max-width: 100%;
}

@supports (display: grid) {
  .grid-services {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  @media screen and (min-width: 736px) {
    .grid-services {
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 80px;
      margin-top: 80px;
    }
  }
  @media screen and (min-width: 1200px) {
    .grid-services {
      width: 90%;
      margin: auto;
      margin-top: 80px;
    }
  }
}
@supports not (display: grid) {
  .grid-services {
    display: flex;
    flex-wrap: wrap;
  }
  .grid-services > * {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
  @media screen and (min-width: 980px) {
    .grid-services > * {
      flex: 0 0 31%;
      margin-right: 2%;
    }
  }
}
.services-content {
  position: relative;
}

.service {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.service:last-child {
  margin-bottom: 0;
}

.service-picture {
  flex-shrink: 0;
}

.service__img {
  width: 42px;
  height: 42px;
  margin: auto;
  object-fit: cover;
}

.service-content {
  text-align: center;
}

.service__title {
  margin-top: 15px;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.service__description {
  width: 90%;
  margin: auto;
  margin-top: 8px;
}
@media screen and (min-width: 736px) {
  .service__description {
    width: initial;
    margin: initial;
    margin-top: 8px;
  }
}

.contact-options {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .contact-options {
    flex-direction: row;
    justify-content: initial;
  }
}
@media screen and (min-width: 1200px) {
  .contact-options {
    width: 80%;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 50px;
  }
}

.contact-option {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  cursor: pointer;
}
@media screen and (min-width: 980px) {
  .contact-option {
    flex: 0 0 33%;
    margin-bottom: 40px;
  }
}

.contact-option__icon {
  text-align: center;
}

.contact-option__svg {
  width: 26px;
  height: 26px;
  stroke: rgba(0, 0, 0, 0.7);
  transform: translateY(5px);
}

.contact-option__label {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.7rem;
  font-weight: 600;
}

.container-choose360 {
  display: block;
  width: 100%;
  padding-top: 50px;
}
@media screen and (min-width: 1200px) {
  .container-choose360 {
    padding-right: 200px;
    padding-left: 200px;
  }
}

.iframe-choose360 {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 1200px) {
  .iframe-choose360 {
    height: 350px;
  }
}

.section-contact-resposta {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  height: calc(100vh - 245px);
}

.contact-resposta {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: auto;
  padding: 5px;
}

.contact-resposta__text {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

.form {
  position: relative;
  flex: 0 0 100%;
  max-width: 600px;
  margin: auto;
  z-index: 2;
}
@media screen and (min-width: 736px) {
  .form {
    flex: 0 0 50%;
  }
}

.form-field:not(:first-child) {
  margin-top: 40px;
}

input,
select,
textarea {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  height: 54px;
  padding-right: 12px;
  padding-left: 12px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  outline: none;
  transition: all 120ms ease-in-out;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  color: #E53351;
  border: 1px solid #E53351;
}

select {
  background-color: #fff;
  font-size: 1.5rem;
}

textarea {
  height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.form-label {
  display: block;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.2px;
  transition: all 120ms ease-in-out;
}
.form-label i {
  display: inline-block;
  font-size: 1.3rem;
  transform: translateY(-1px);
}
@media screen and (min-width: 736px) {
  .form-label {
    font-size: 1.6rem;
  }
}

.form-label-is--active {
  color: #E53351;
}

@keyframes autofill {
  to {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
  }
}
@keyframes autofillfocus {
  to {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #fff;
    background: transparent;
  }
}
input:-webkit-autofill {
  animation-name: autofill;
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}
input:-webkit-autofill:focus {
  animation-name: autofillfocus;
  -webkit-animation-name: autofillfocus;
}

/* Base for label styling */
[type=checkbox]:not(:checked),
[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

[type=checkbox]:not(:checked) + label,
[type=checkbox]:checked + label {
  position: relative;
  display: block;
  padding-left: 26px;
  margin-top: 15px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.54);
}

[type=checkbox]:not(:checked) + label:last-child,
[type=checkbox]:checked + label:last-child {
  padding-bottom: 0;
}

/* checkbox aspect */
[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}

[type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(105, 62, 179, 0.85);
  border-radius: 2px;
  background: rgba(105, 62, 179, 0.85);
}

/* checked mark aspect */
[type=checkbox]:not(:checked) + label:after,
[type=checkbox]:checked + label:after {
  content: url("icons/check.svg");
  position: absolute;
  top: 1px;
  left: 1px;
  transition: all 200ms ease;
}

/* checked mark aspect changes */
[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled checkbox */
[type=checkbox]:disabled:not(:checked) + label:before,
[type=checkbox]:disabled:checked + label:before {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.4);
}

[type=checkbox]:disabled:checked + label:after {
  color: #999;
}

[type=checkbox]:disabled + label {
  color: #aaa;
}

@supports (display: grid) {
  .grid-cards {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  @media screen and (min-width: 736px) {
    .grid-cards {
      grid-template-columns: 1fr 1fr;
      grid-gap: 45px;
      align-items: center;
      margin-top: 45px;
    }
  }
  @media screen and (min-width: 1200px) {
    .grid-cards {
      grid-gap: 60px;
      grid-template-columns: 1fr 1fr 1fr;
      margin-top: 60px;
    }
  }

  @media screen and (min-width: 1200px) {
    .grid-team {
      grid-gap: 60px;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      margin-top: 60px;
    }
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  @media screen and (min-width: 980px) {
    .gallery {
      grid-gap: 20px;
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
.gallery__picture {
  height: 200px;
}
@media screen and (min-width: 736px) {
  .gallery__picture {
    height: 400px;
  }
}

@supports not (display: grid) {
  .grid-cards, .gallery {
    display: flex;
    flex-wrap: wrap;
  }
  .grid-cards > *, .gallery > * {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
  @media screen and (min-width: 736px) {
    .grid-cards > *, .gallery > * {
      flex: 0 0 47%;
      margin-right: 3%;
    }
  }
  @media screen and (min-width: 980px) {
    .grid-cards > *, .gallery > * {
      flex: 0 0 31%;
      margin-right: 2%;
    }
  }

  .gallery__picture {
    height: 250px;
    margin-bottom: 20px;
  }
  @media screen and (min-width: 736px) {
    .gallery__picture {
      margin-bottom: 25px;
    }
  }
}
.card {
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  transition: all 100ms ease-in-out;
}

.card__img {
  height: 180px;
  object-fit: cover;
}
@media screen and (min-width: 736px) {
  .card__img {
    height: 280px;
  }
}

.card-content {
  min-height: 100px;
  background-color: #fff;
  padding: 15px;
}
@media screen and (min-width: 736px) {
  .card-content {
    min-height: 107px;
    padding: 15px 15px 20px 15px;
  }
}

.card__category {
  color: #E53351;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card__title {
  margin-bottom: 8px;
  color: #000;
  line-height: 1.3;
}
@media screen and (min-width: 736px) {
  .card__title {
    line-height: 1.4;
  }
}

.card__date {
  font-size: 1.5rem;
}

.card__text {
  margin-top: 5px;
}
.card__text p {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  font-size: 1.5rem;
}

.card__svg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.8);
}

.card-featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card-featured-content {
  order: 2;
  flex: 0 0 100%;
  margin-top: 20px;
}
@media screen and (min-width: 736px) {
  .card-featured-content {
    order: 1;
    flex: 0 0 45%;
    margin-top: 0;
  }
}

.card-featured-picture {
  order: 1;
  flex: 0 0 100%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .card-featured-picture {
    order: 2;
    flex: 0 0 50%;
    margin: initial;
  }
}

.card-featured__img {
  height: 200px;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 736px) {
  .card-featured__img {
    height: 550px;
  }
}

.card-featured__title {
  margin-bottom: 15px;
}

.card-featured-description {
  display: none;
  margin-bottom: 30px;
}
@media screen and (min-width: 736px) {
  .card-featured-description {
    display: block;
  }
}
.card-featured-description p {
  margin-bottom: 15px;
  font-size: 1.7rem;
  line-height: 1.6;
}
.card-featured-description p:last-child {
  margin-bottom: initial;
}
.card-featured-description strong {
  display: none;
}

.card-featured-description-white p {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-margin {
  margin-bottom: 40px;
}
@media screen and (min-width: 736px) {
  .gallery-margin {
    margin-bottom: 60px;
  }
}

.gallery__picture {
  cursor: zoom-in;
}

.gallery__img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-case__img {
  height: 180px;
  object-fit: cover;
}

.card-team {
  text-align: center;
  background-color: #000;
}
.card-team:hover .card-team__picture {
  border: 2px solid #fff;
}
.card-team:hover .card-team__img {
  filter: initial;
  transform: scaleX(-1);
}
.card-team:hover .card-team-content {
  border: 2px solid #fff;
  border-top: none;
}

.card-team__img {
  padding-bottom: 0;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 150ms cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media screen and (min-width: 736px) {
  .card-team__img {
    padding-bottom: 0;
  }
}

.card-team-content {
  padding: 10px;
  padding-bottom: 13px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.card-team__name {
  font-size: 2.1rem;
  font-weight: 700;
}

.card-team__role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  margin-top: -2px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.pagination__pages {
  margin-right: 12px;
  margin-left: 12px;
}

.pagination__arrow {
  min-width: 35px;
  background-color: #fff;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.pagination__icon {
  width: 20px;
  height: 20px;
  stroke: rgba(0, 0, 0, 0.45);
  transform: translateY(4px);
}

.pagination__number {
  display: inline-block;
  padding: 8px;
  min-width: 35px;
  margin-right: 6px;
  margin-left: 6px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.55);
  font-size: 1.5rem;
  text-align: center;
}

.pagination__number--active {
  color: #fff;
  border: 1px solid #00AEBC;
  background-color: #00AEBC;
}

.lightbox__picture {
  opacity: 0;
  visibility: hidden;
}

.lightbox__picture--visible {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  margin: auto;
  max-width: 1366px;
  max-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 6;
}
@media screen and (min-width: 980px) {
  .lightbox__image {
    width: auto;
  }
}

.lightbox__icon {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 20px;
  right: 15px;
  stroke: #fff;
  z-index: 7;
  cursor: pointer;
}
@media screen and (min-width: 980px) {
  .lightbox__icon {
    top: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .lightbox__icon {
    top: 40px;
    right: 40px;
  }
}

.no-scroll {
  overflow: hidden;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  transition: all 150ms linear;
  visibility: hidden;
  z-index: 6;
}

.drawer-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.post {
  padding-top: 50px;
}
@media screen and (min-width: 736px) {
  .post {
    padding-top: 80px;
  }
}

.article-wrapper {
  width: 85%;
  margin: auto;
}
@media screen and (min-width: 736px) {
  .article-wrapper {
    width: 75%;
  }
}
@media screen and (min-width: 1200px) {
  .article-wrapper {
    width: 55%;
  }
}

.article__date {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.7rem;
  text-align: center;
}

.article__picture {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 736px) {
  .article__picture {
    width: 80%;
    max-width: 900px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.article__img {
  height: 220px;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 736px) {
  .article__img {
    height: auto;
    max-height: 600px;
  }
}

.article-content {
  padding-bottom: 40px;
}
@media screen and (min-width: 736px) {
  .article-content {
    padding-bottom: 60px;
  }
}
.article-content strong {
  display: block;
  font-size: 2.2rem;
  color: #00AEBC;
  margin-bottom: -5px;
}
.article-content p {
  margin-top: 20px;
}

.article-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  justify-content: center;
}
@media screen and (min-width: 736px) {
  .article-footer {
    justify-content: space-between;
  }
}

.article-footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 736px) {
  .article-footer-wrapper {
    justify-content: space-between;
    padding-top: 15px;
  }
}

.author {
  order: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 736px) {
  .author {
    order: 1;
    margin-top: 0;
  }
}

.author-avatar {
  display: block;
  margin-right: 30px;
}

.author-img {
  width: 135px;
  height: 135px;
  object-fit: cover;
}

.author-name {
  margin-bottom: 2px;
}

.author-text {
  margin-bottom: 2px;
  font-size: 1.5rem;
}

.author-text-secondary {
  color: rgba(88, 88, 88, 0.7);
  font-size: 1.4rem;
}

.share {
  order: 1;
  margin-top: 20px;
}
@media screen and (min-width: 736px) {
  .share {
    order: 2;
    margin-top: initial;
    transform: translateX(9px);
  }
}
.share:before {
  content: "Compartilhar:";
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  color: #585858;
  font-size: 1.5rem;
  transform: translateY(-6px);
}

.share-icon {
  display: inline-block;
  padding: 5px;
  margin-right: 5px;
  margin-left: 5px;
  cursor: pointer;
}

.share-svg {
  width: 24px;
  height: 24px;
}

.share-facebook svg {
  fill: #3b5998;
}

.share-twitter svg {
  fill: #1da1f2;
}

.share-whatsapp svg {
  fill: #25d366;
}

.chat {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  z-index: 3;
}

.chat__icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  margin-top: 14px;
  fill: #fff;
}

.footer {
  padding-top: 51px;
  padding-bottom: 51px;
  background-color: #000;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: initial;
  }
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .footer-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  font-weight: 500;
}

.logo-footer {
  position: relative;
  text-align: center;
}
.logo-footer > .footer__text {
  max-width: 200px;
}

.footer-content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 980px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-content-item {
  margin-top: 40px;
}
@media screen and (min-width: 980px) {
  .footer-content-item {
    margin-top: initial;
    margin-left: 70px;
    max-width: 200px;
  }
}

.footer__item {
  list-style: none;
}

.footer__header {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 80%;
  margin: auto;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #E53351;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 980px) {
  .footer__header {
    width: 100%;
    padding-right: 25px;
    padding-bottom: 10px;
    margin: initial;
    margin-top: 0;
  }
}

.footer-list {
  margin-top: 30px;
}
@media screen and (min-width: 736px) {
  .footer-list {
    margin-top: 20px;
  }
}

.footer-info__text {
  margin-top: 20px;
}

.footer-info__text--link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.footer-info__text--link:hover {
  color: #fff;
}

.footer-info__phone--link {
  color: rgba(255, 255, 255, 0.7);
}
.footer-info__phone--link:hover {
  color: #fff;
}

.footer-info__phone {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 20px;
}

.footer__item {
  margin-bottom: 6px;
}

.footer__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  fill: rgba(255, 255, 255, 0.5);
  transform: translateY(5px);
}

.footer__link {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: inline-block;
  width: 80%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__link:hover {
  color: #fff;
}
.footer__link:hover .footer__icon {
  fill: #fff;
}
@media screen and (min-width: 736px) {
  .footer__link {
    width: 100%;
  }
}