/*
Theme Name: Tema7-Blisq-Tema-7
Theme URI: http://blisq.pt
Author: Blisq
Author URI: http://blisq.pt
Description: Tema desenvolvido para uso exclusivo da Blisq Creative
Version: V7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Blisq
Text Domain: Blisq
*/

@import url("https://use.typekit.net/gnm1nku.css");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

/* 
  font-family: "afronaut", sans-serif;
*/

:root {
  --color-orange: #ff692e;
  --color-black: #000;
  --color-grey: #949494;
  --color-white: #fff;
  --color-secondary-grey: #555;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.overflow {
  overflow: hidden;
}

body {
  font-family: "Space Grotesk", sans-serif;
  counter-reset: h2-before;
  overflow-x: hidden;
}

html.overflow body {
  padding-right: 15px;
}

a {
  text-decoration: none;
}

h2,
.frontpage-contacts-heading {
  color: var(--color-black);
  font-family: "afronaut", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
}

h2 strong {
  color: #f14400;
  font-weight: 400;
}

h2.white,
.frontpage-contacts-heading {
  color: var(--color-white);
}

.custom-input-wrapper {
  position: relative;
}

.label-as-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  color: #b7b7b7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 152.941%;
  letter-spacing: -0.34px;
  top: 15px;
  left: 30px;
}

.main-input:valid~.label-as-placeholder,
textarea:valid~.label-as-placeholder {
  display: none;
}

table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: left;
}

table thead tr{
  background-color: #dededf;
}

table td,
table th {
    border: 1px solid #dededf;
    color: #000;
    padding: 10px;
    font-size: 12px;
    line-height: 1.4;
}

table thead td{
    font-size: 14px;
}

/* Containers */

.container {
  max-width: 1840px;
  margin: 0 auto;
}

.frontpage-services-card-container {
  max-width: 1715px;
}

.footer-container {
  max-width: 1287px;
}

.contacts-container {
  max-width: 1681px;
}

.info-page-container {
  max-width: 705px;
}

.single-service-intro-container {
  max-width: 1270px;
}

.single-service-description-container {
  max-width: 1421px;
}

.single-service-info-container {
  max-width: 1450px;
  margin: 0 auto;
}

/* Botões */

.main-button {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 152.941%;
  letter-spacing: -0.34px;
  padding: 7px 19.5px;
  background-color: var(--color-black);
  display: block;
  width: fit-content;
  height: fit-content;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.main-button:hover {
  background-color: transparent;
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

.main-button.white {
  background-color: var(--color-white);
  color: var(--color-black);
}

.main-button.orange {
  background-color: var(--color-orange);
  color: var(--color-black);
}

.main-button.orange:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* header */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 40px 0 40px;
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.header-flex {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-navigation {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: var(--color-black);
  right: 0;
  top: -100vh;
  transition: all 0.4s;
  padding: 100px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

header svg path {
  transition: all 0.5s;
}

header.white svg path:nth-of-type(8),
header.white svg path:nth-of-type(9),
header.white svg path:nth-of-type(10),
header.white svg path:nth-of-type(11),
header.white svg path:nth-of-type(12) {
  fill: var(--color-white);
}

.header-navigation.active {
  top: 0;
}

.header-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
  height: 100%;
}

.header-navigation li {
  position: relative;
  border-bottom: 1px solid #2f2f2f;
}

.header-navigation li::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 100vw;
  height: 0;
  background-color: var(--color-orange);
  transition: all 0.4s;
}

.header-navigation li:hover::after {
  height: 3px;
}

.header-navigation li a {
  color: #5a5a5a;
  font-size: 108.947px;
  font-style: normal;
  font-weight: 300;
  line-height: 76.667%;
  position: relative;
  transition: all 0.2s;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 50px;
  width: fit-content;
}

.header-navigation li a::before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 145px);
  height: 0px;
  background-color: var(--color-orange);
  transition: all 0.8s;
}

.header-navigation li a:hover::before {
  height: 8px;
}

.header-navigation li a:hover,
.header-navigation li a:hover::after {
  color: var(--color-white);
}

.header-navigation li a::after {
  content: "Saber Mais";
  position: relative;
  display: inline-block;
  color: #808285;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  top: 13px;
}

.header-item {
  color: var(--color-black);
  font-size: 19px;
  font-weight: 300;
  line-height: 84.211%;
  letter-spacing: -0.38px;
  text-transform: uppercase;
  z-index: 10;
  transition: all 0.5s;
}

.header-item:hover {
  color: var(--color-orange);
}

.header-logo {
  z-index: 10;
}

header.white .header-item {
  color: var(--color-white);
}

.hamburguer-icon {
  display: block;
  width: 27px;
  cursor: pointer;
  margin-left: auto;
  z-index: 999;
}

.hamburguer-icon span {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--color-black);
  transition: all 0.3s;
  position: relative;
}

.hamburguer-icon:hover span {
  background: var(--color-orange);
}

header.white .hamburguer-icon span {
  background: var(--color-white);
}

.hamburguer-icon span+span {
  margin-top: 8px;
}

.hamburguer-icon.active span:nth-child(1) {
  animation: ease 0.7s top forwards;
}

.hamburguer-icon.not-active span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}

.hamburguer-icon.active span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}

.hamburguer-icon.not-active span:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}

.hamburguer-icon.active span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}

.hamburguer-icon.not-active span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }

  50% {
    top: 13px;
    transform: rotate(0);
  }

  100% {
    top: 13px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 11px;
    transform: rotate(45deg);
  }

  50% {
    top: 11px;
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }

  50% {
    bottom: 11px;
    transform: rotate(0);
  }

  100% {
    bottom: 11px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 11px;
    transform: rotate(135deg);
  }

  50% {
    bottom: 11px;
    transform: rotate(0);
  }

  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* footer */
footer {
  background-color: var(--color-black);
  padding: 65px 40px 41px 40px;
  position: relative;
}

footer::after {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background-image: url(assets/images/footer-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
}

footer h4 {
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 200%;
  text-transform: uppercase;
  margin-bottom: 7px;
}

footer a {
  color: var(--color-white);
  font-size: 17px;
  font-weight: 400;
  line-height: 105.882%;
  letter-spacing: -0.34px;
  display: block;
  transition: all 0.2s;
}

footer a:hover {
  color: #848484;
}

.footer-services-list,
.footer-contacts>div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-socials-flex {
  display: flex;
  gap: 14px;
}

.footer-contacts a span {
  color: var(--color-orange);
}

.footer-socials a {
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.footer-socials a:hover {
  scale: 1.1;
}

.footer-socials .instagram {
  background-image: url(assets/images/icons/instagram.svg);
}

.footer-socials .facebook {
  background-image: url(assets/images/icons/facebook.svg);
}

.footer-socials .linkedin {
  background-image: url(assets/images/icons/linkedin.svg);
}

.custom-container-big {
  margin-top: 135px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
}

.icon-blisq {
  transition: all 0.2s;
}

.icon-blisq:hover {
  scale: 1.1;
}

.footer-links>div {
  display: flex;
  gap: 50px;
}

.footer-links a {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: -0.2px;
}

/* frontpage: hero */

.frontpage-hero {
  position: relative;
  height: 100vh;
  max-height: 1080px;
  padding: 284px 4% 50px 10%;
  display: flex;
  flex-direction: column;
  gap: 130px;
  overflow: hidden;
}

.frontpage-hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frontpage-hero h1 {
  color: var(--color-black);
  font-family: "afronaut", sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 95.833%;
  z-index: 1;
  position: relative;
  pointer-events: none;
}

.frontpage-hero .title-wrapper {
  max-width: 785px;
}

.frontpage-hero h1 strong {
  color: #f14400;
}

.frontpage-hero .wrapper {
  max-width: 877px;
  z-index: 1;
  pointer-events: none;
  position: relative;
  align-self: flex-end;
}

.frontpage-hero p {
  color: var(--color-black);
  font-size: 33px;
  font-weight: 300;
  line-height: 118.182%;
  letter-spacing: -0.66px;
}

.frontpage-hero p strong {
  font-weight: 700;
}

.frontpage-voice {
  background-color: var(--color-orange);
  padding: 120px 40px 55px 40px;
  position: relative;
}

.frontpage-voice::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(assets/images/frontpage-voice-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  width: 624px;
  height: 650px;
}

.frontpage-voice .title-wrapper {
  max-width: 588px;
}

.frontpage-voice .wrapper {
  max-width: 1095px;
  margin: 80px 21% 67px auto;
}

.frontpage-animated-word {
  background: linear-gradient(to bottom, #000, #000) no-repeat;
  background-size: 0;
  background-clip: text;
  color: rgba(0, 0, 0, 0.24);
  font-size: 44px;
  font-weight: 700;
  line-height: 109.091%;
  letter-spacing: -0.88px;
}

.frontpage-voice .animated-text p:not(:last-child) {
  margin-bottom: 15px;
}

p.small-p {
  color: #000;
  font-size: 19px;
  font-weight: 400;
  line-height: 136.842%;
  letter-spacing: -0.38px;
  margin-bottom: 10px;
}

.frontpage-voice .main-button {
  margin-top: 12px;
}

.frontpage-services h2 {
  margin-left: 40px;
}

.frontpage-services {
  padding: 80px 0px 90px 0px;
}

.single .frontpage-services {
  background-color: #f0f0f0;
  margin-top: 200px;
}

.frontpage-services-list {
  margin-top: 90px;
}

.single .frontpage-services-list {
  margin-top: 50px;
}

.frontpage-services-card {
  background-color: transparent;
  overflow-y: hidden;
  max-height: 180px;
  display: block;
  border-bottom: 1px solid #cacaca;
  padding: 47px 40px;
  position: relative;
}

.frontpage-services-card::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: 80% bottom;
  transition: all 0.2s;
  transition-delay: 200ms;
}

.frontpage-services-card:nth-of-type(1)::before {
  background-image: url(assets/images/masks/card-shape-1.svg);
}

.frontpage-services-card:nth-of-type(2)::before {
  background-image: url(assets/images/masks/card-shape-2.svg);
}

.frontpage-services-card:nth-of-type(3)::before {
  background-image: url(assets/images/masks/card-shape-3.svg);
}

.frontpage-services-card:nth-of-type(4)::before {
  background-image: url(assets/images/masks/card-shape-4.svg);
}

.frontpage-services-card:hover::before {
  opacity: 1;
}

.frontpage-services-card:hover {
  background-color: #fff;
  box-shadow: 0 4px 200px 0 rgba(0, 0, 0, 0.06);
  max-height: 1000px;
}

.frontpage-services-card img,
.frontpage-services-card,
.frontpage-services-card h3,
.frontpage-services-card .service-intro p,
.frontpage-services-card .know-more,
.frontpage-services-card .service-list ul {
  transition: all 0.8s;
}

.frontpage-services-card-info--content {
  transition: all 0.9s;
}

.frontpage-services-card figure {
  position: relative;
}

/* .frontpage-services-card:nth-of-type(1) figure::before {
  content: " ";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100%;
  background-image: url(assets/images/masks/card-shape-1.svg);
  background-repeat: no-repeat;
  width: 950px;
  height: 950px;
  opacity: 0;
  transition: all 0.8s;
} */

.frontpage-services-card:hover figure::before {
  opacity: 1;
}

.frontpage-services-card img {
  position: relative;
}

.frontpage-services-card .service-list {
  max-width: 709px;
}

.frontpage-services-card:nth-of-type(odd) img {
  transform: rotateZ(-7deg);
  top: -58px;
}

.frontpage-services-card:nth-of-type(even) img {
  transform: rotateZ(6deg) translateX(-140px);
}

.frontpage-services-card:nth-of-type(2) img {
  top: -75px;
}

.frontpage-services-card:nth-of-type(odd):hover img {
  transform: rotateZ(6deg);
  top: 0;
  scale: 1.3;
}

.frontpage-services-card:nth-of-type(even):hover img {
  transform: rotate(-4.67deg);
  top: 0;
  scale: 1.3;
}

.frontpage-services-card h3 {
  color: var(--color-grey);
  font-size: 60px;
  font-weight: 300;
  line-height: 76.667%;
}

.frontpage-services-card:hover h3 {
  color: var(--color-black);
}

.frontpage-services-card .service-intro p {
  color: #555;
  font-size: 16px;
  font-weight: 300;
  line-height: 143.75%;
  margin-top: 13px;
}

.frontpage-services-card:hover .service-intro p {
  color: var(--color-secondary-grey);
}

.frontpage-services-card .frontpage-services-card-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.frontpage-services-card-content {
  display: flex;
  gap: 190px;
  align-items: center;
}

.frontpage-services-card .know-more {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  position: relative;
  top: 500px;
}

.frontpage-services-card:hover .know-more {
  top: 0;
}

.frontpage-services-card-info--content {
  position: relative;
}

.frontpage-services-card:hover .frontpage-services-card-info--content {
  top: 0;
}

.frontpage-services-card .service-list ul {
  margin: 5px 0 0 15px;
  opacity: 0;
  visibility: hidden;
  list-style: none;
}

.frontpage-services-card .service-list ul ul {
  margin: 0 0 15px 15px;
}

.frontpage-services-card:hover .service-list ul {
  opacity: 1;
  visibility: visible;
}

.frontpage-services-card .service-list li {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}

.frontpage-services-card .service-list li strong {
  font-weight: 700;
}

.frontpage-services-card .service-list ul ul li {
  display: flex;
  position: relative;
  gap: 3px;
}

.frontpage-services-card .service-list ul ul li::before {
  content: "-";
  position: relative;
  display: inline-block;
}

.frontpage-areas {
  background-color: #f0f0f0;
  padding: 123px 0 53px 0;
  position: relative;
  overflow: hidden;
}

.frontpage-areas::after {
  content: " ";
  position: absolute;
  bottom: -70%;
  right: -10%;
  background-image: url(assets/images/masks/aural-shape.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1112px;
  height: 1138px;
  animation: rotateShape 10s linear infinite;
  transform-origin: center;
  z-index: 0;
  opacity: 0.3;
}

/* Animação de rotação */
@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.main-container{
  max-width: 1920px;
  margin: 0 auto;
}

.frontpage-areas-top-content {
  display: flex;
  padding: 0 40px;
  gap: 8%;
  position: relative;
  z-index: 1;
}

.frontpage-areas-top-content .title-wrapper {
  max-width: 790px;
}

.frontpage-areas-top-content .wrapper {
  width: 575px;
  padding-top: 12px;
}

.frontpage-contacts {
  background-color: var(--color-black);
  padding: 120px 0px 325px 0px;
  position: relative;
  overflow: hidden;
}

.frontpage-contacts::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(assets/images/contacts-shape.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.frontpage-contacts .contacts-container {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 12%;
  position: relative;
  z-index: 1;
  margin: 0 40px 0 40px;
}

.frontpage-contacts form {
  display: flex;
  flex-direction: column;
}

form .main-input,
form textarea {
  background-color: transparent;
  border: 1px solid #696969;
  width: 100%;
  padding: 12px 29px;
  margin-bottom: 11px;
  position: relative;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.941%;
  letter-spacing: -0.34px;
}

form .main-input.error,
form textarea.error {
  border-left: 5px solid var(--color-orange);
}

form .main-input::placeholder,
form textarea::placeholder {
  color: #b7b7b7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 152.941%;
  letter-spacing: -0.34px;
}

form input,
form textarea {
  color: var(--color-white);
}

.response-ajax {
  color: #ff692e;
  font-size: 17px;
  font-weight: 400;
  line-height: 152.941%;
  letter-spacing: -0.34px;
  margin-top: 10px;
}

.response-ajax.error {
  color: var(--color-orange);
}

.response-ajax.success {
  color: #fff;
}

form textarea {
  resize: none;
  height: 385px;
  margin-bottom: 15px;
}

form textarea:focus {
  outline: none;
}

.validation {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 15px;
}

.validation label {
  color: #f7f7f7;
  font-size: 14px;
  font-weight: 400;
  line-height: 185.714%;
  letter-spacing: -0.28px;
  cursor: pointer;
}

.validation input[type="checkbox"] {
  appearance: none;
  width: 29px;
  height: 29px;
  border: 1px solid #696969;
  cursor: pointer;
}

.validation input[type="checkbox"].error {
  border: 1px solid var(--color-orange);
}

.validation input[type="checkbox"]:checked {
  background-color: #696969;
}

form .submit {
  appearance: none;
  -webkit-appearance: none;
  color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 152.941%;
  letter-spacing: -0.34px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  -webkit-border-radius: 0px;
  border: none;
  transition: all 0.2s;
}

form .submit:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.marquee {
  overflow: hidden;
  display: flex;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee {
  position: absolute;
  bottom: 350px;
  overflow: hidden;
  width: 100%;
}

.marquee.inverted {
  bottom: 50px;
}

.frontpage-areas-sliders {
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.frontpage-areas-list {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.frontpage-areas-list .frontpage-areas-list-inner {
  display: inline-block;
  white-space: nowrap;
  transform: translateX(0);
}

.frontpage-areas-list:nth-of-type(1) .frontpage-areas-list-inner {
  animation: marquee 25s linear infinite;
}

.frontpage-areas-list:nth-of-type(2) .frontpage-areas-list-inner {
  animation: marquee-inverted 20s linear infinite;
}

.frontpage-areas-list:nth-of-type(3) .frontpage-areas-list-inner {
  animation: marquee 30s linear infinite;
}

.frontpage-areas-card {
  padding: 32.5px 40px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 27px;
  position: relative;
  display: inline-flex;
  white-space: normal;
  flex-shrink: 0;
  width: 852px;
  align-items: center;
  background-color: white;
  margin: 0 20px;
  border-radius: 4px;
  padding: 25px 40px;
  transition: transform 0.3s ease;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-inverted {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.frontpage-areas-list:not(:last-child) {
  margin-bottom: 20px;
}

.frontpage-areas-card::before {
  content: " ";
  position: relative;
  display: inline-block;
  left: 0;
  background-image: url(assets/images/icons/orange-checkbox.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 35px;
  height: 34px;
}

.frontpage-areas-bottom-content {
  margin-top: 120px;
  padding-left: 40px;
  z-index: 1;
  position: relative;
}

.frontpage-areas-card h3 {
  color: #949494;
  font-size: 60px;
  font-weight: 600;
  line-height: 76.667%;
}

.frontpage-clients {
  max-width: 1920px;
  margin: 0 auto;
  padding: 110px 40px 94px 40px;
}

.frontpage-clients-top-content h2 {
  font-size: 40px;
}

.frontpage-clients-slider {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.frontpage-clients-card {
  flex: 0 0 8%;
  display: flex;
  justify-content: center;
  height: 100%;
}

.logo-img {
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* Info page */

.info-page {
  display: grid;
  grid-template-columns: 29% 1fr;
}

.info-page-title {
  background-color: var(--color-white);
  padding: 210px 96px 140px 40px;
  position: relative;
}

.info-page-title h1 {
  color: #000;
  font-family: "afronaut", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
}

.info-page-content {
  background-color: #f0f0f0;
  padding: 210px 40px 140px 96px;
}

.info-page-content table{
  margin-top: 30px;
}

.info-page-content h2 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  line-height: 24px;
  letter-spacing: -0.4px;
  margin: 30px 0 10px 0;
  position: relative;
  display: flex;
  gap: 5px;
}

.info-page-content h2 > strong{
    color: #000;
    font-weight: 700;
}

.info-page-container h2::before {
  content: counter(h2-before, decimal-leading-zero) ".";
  counter-increment: h2-before;
  color: #ff692e;
}

.info-page h3{
  font-size: 18px;
  margin: 30px 0 10px 0;
  color: #000;
}

.info-page-content h4{
  margin: 30px 0 10px 0;
  color: #ff692e;
  font-size: 16px;
}

.info-page-content ul {
  margin-left: 25px;
}

.info-page-content p,
.info-page-content li {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.3px;
}

.info-page-content .updated-version {
  color: #6d6d6d;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  display: block;
}

.info-page-title .title-wrapper {
  max-width: 416px;
  position: fixed;
  top: 216px;
}

.not-found {
  background-color: var(--color-black);
  background-image: url(assets/images/bg-footer.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  text-align: center;
  padding: 235px 40px 140px 40px;
}

.not-found h1 {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 700;
  line-height: 200%;
  text-transform: uppercase;
}

.not-found h2 {
  color: var(--color-white);
  text-align: center;
  font-family: "afronaut", sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 95.833%;
}

.not-found h2 strong {
  color: var(--color-orange);
}

.not-found .wrapper {
  max-width: 595px;
  margin: 20px auto 30px auto;
}

.not-found p {
  color: #fff;
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  line-height: 136.842%;
  letter-spacing: -0.38px;
}

.not-found .main-button {
  display: block;
  margin: 30px auto 0 auto;
}

/* Single Serviço */

.single-service-banner {
  max-height: 600px;
  overflow: hidden;
}

.single-service-banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: flex;
}

.single-service-info-section {
  padding: 180px 40px 0 40px;
}

.single-service-info-section:nth-of-type(odd) .gallery {
  order: 2;
}

.single-service-info-section:nth-of-type(odd) .info-content {
  order: 1;
}

.single-service-info-section:last-child {
  padding-bottom: 200px;
}

.single-service-info-section .single-service-info-container {
  display: grid;
  grid-template-columns: 1fr 46%;
  align-items: center;
  gap: 130px;
}

.info-content h2 {
  color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}

.info-content--description p {
  color: #000;
  font-size: 19px;
  font-weight: 300;
  line-height: 136.842%;
  letter-spacing: -0.38px;
  margin-bottom: 10px;
}

.info-content--description p:not(:last-child) {
  margin-bottom: 10px;
}

.dropdowns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
  margin-top: 25px;
}

.dropdown-title {
  background-color: #f0f0f0;
  padding: 15px 28px 15px 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown-title::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-black);
  transition: all 0.2s;
}

.dropdown-title.open::before {
  width: 8px;
}

.dropdown-title::after {
  content: " ";
  position: relative;
  display: inline-block;
  width: 11px;
  height: 6px;
  background-image: url(assets/images/icons/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.dropdown-title.open::after {
  transform: rotateZ(180deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s;
}

.dropdown-title.open~.dropdown-content {
  max-height: 300px;
  opacity: 1;
  padding-top: 10px;
}

.dropdown-content p {
  color: #000;
  font-size: 19px;
  font-weight: 300;
  line-height: 136.842%;
  letter-spacing: -0.38px;
}

.dropdown-title h3 {
  color: #000;
  font-size: 19px;
  font-weight: 700;
  line-height: 136.842%;
  letter-spacing: -0.38px;
}

.info-content--get-in-touch {
  border-top: 1px solid #e3e3e3;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.info-content--get-in-touch h4 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 118.182%;
  letter-spacing: -0.44px;
  width: 44%;
}

.info-multimedia {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.gallery {
  height: 100%;
  display: flex;
  height: 430px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.gallery::before {
  content: " ";
  position: absolute;
  top: -180px;
  left: -80px;
  width: 160%;
  height: 160%;
  background-image: url(assets/images/masks/card-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.card {
  position: absolute;
  width: 100%;
  height: 359px;
  left: 0;
  top: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.7s ease, z-index 0.3s ease;
  transform-origin: center center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Posições e rotações específicas para cada card */
.card:nth-child(6n + 1) {
  transform: rotate(-4deg);
  z-index: 1;
}

.card:nth-child(6n + 2) {
  transform: rotate(2deg);
  z-index: 2;
}

.card:nth-child(6n + 3) {
  transform: rotate(-2deg);
  z-index: 3;
}

.card:nth-child(6n + 4) {
  transform: rotate(3deg);
  z-index: 2;
}

.card:nth-child(6n + 5) {
  transform: rotate(-1deg);
  z-index: 1;
}

.card:nth-child(6n + 6) {
  transform: rotate(1deg);
  z-index: 1;
}

.card.active {
  transform: rotate(0.3deg);
  z-index: 5;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 7px;
  min-width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333333;
  width: 25px;
  border-radius: 28px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 18px;
  color: #333;
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

.single-service-intro {
  padding: 190px 40px 50px 40px;
}

.single-service-intro h1 {
  color: var(--color-black);
  font-family: "afronaut", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  /* 100% */
}

.single-service-intro h1 strong {
  color: #f14400;
  font-weight: 400;
}

.single-service-intro p {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.64px;
  margin-top: 21px;
}

.single-service-intro .single-service-intro-container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.single-service-description {
  padding: 60px 40px 218px 40px;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.single-service-description::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, 1) 50%);
}

.single-service-description-content {
  position: relative;
  z-index: 1;
}

.single-service-description .marquee.inverted {
  bottom: -50px;
}

.single-service-description .marquee {
  bottom: 150px;
  height: 221px;
}

.single-service-description .single-service-description-container {
  display: grid;
  grid-template-columns: 39% 1fr;
  gap: 196px;
  position: relative;
  z-index: 1;
}

.single-service-description h2 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.64px;
}

.single-service-description p {
  color: #7d7d7d;
  font-size: 23px;
  font-weight: 300;
  line-height: 126.087%;
  letter-spacing: -0.46px;
  margin-bottom: 6px;
}

.single-service-description p strong {
  color: var(--color-white);
  font-weight: 700;
}

/* Queries */
@media screen and (min-width: 1921px) {
  .custom-container-big{
    max-width: 1920px;
    margin: 135px auto 0 auto;
  }

  /* Frontpage */
  .container,
  .frontpage-hero-container,
  .single-service-intro-container,
  .footer-container,
  .frontpage-services h2,
  .frontpage-services-card-container,
  .frontpage-contacts .contacts-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .frontpage-areas-bottom-content,
  .frontpage-areas-top-content{
    padding: 0;
  }

  .frontpage-hero-container{
    width: 100%
  }

  .main-container{
    padding: 0 40px;
  }

  /* Service */
  .single-service-description-container{
    margin: 0 auto;
  }

  /* Info Page */
  .info-page{
    max-width: 1920px;
    margin: 0 auto;
  }

  .info-page-content{
    position: relative;
  }

  .info-page-content::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #f0f0f0;
    top: 0;
    right: -100%;
  }
}

@media screen and (max-height: 630px) {
  .header-navigation{
    z-index: 10;
  }
}

@media screen and (max-width: 1745px) {
  .frontpage-hero h1 {
    font-size: 115px;
  }

  .frontpage-hero {
    padding: 230px 4% 50px 10%;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 57px;
  }

  .frontpage-animated-word {
    font-size: 42px;
  }

  .frontpage-voice .title-wrapper {
    max-width: 545px;
  }

  .header-navigation li a {
    font-size: 99px;
  }
}

@media screen and (max-width: 1680px) {
  .frontpage-hero h1 {
    font-size: 110px;
  }

  .frontpage-hero {
    gap: 100px;
    max-height: 1050px;
    padding-top: 300px;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 55px;
  }

  .frontpage-voice .wrapper {
    margin: 70px 15% 60px auto;
  }

  .frontpage-services-card h3 {
    font-size: 57px;
  }

  .frontpage-areas-card h3 {
    font-size: 55px;
  }

  .frontpage-areas-top-content {
    gap: 5%;
  }

  .header-navigation li a {
    font-size: 90px;
  }

  .info-page-title {
    font-size: 55px;
  }

  .not-found h2 {
    font-size: 115px;
  }

  .single-service-intro h1 {
    font-size: 56px;
  }

  .single-service-intro p {
    font-size: 30px;
  }

  .single-service-banner {
    max-height: 580px;
  }
}

@media screen and (max-width: 1550px) {
  .frontpage-hero p {
    font-size: 30px;
  }

  .frontpage-hero .wrapper {
    max-width: 845px;
  }

  .frontpage-clients {
    padding: 80px 40px;
  }

  footer a {
    font-size: 16px;
  }

  .frontpage-animated-word {
    font-size: 40px;
  }

  .frontpage-voice {
    padding: 100px 40px 50px 40px;
  }

  .frontpage-services-card h3 {
    font-size: 55px;
  }

  .frontpage-services-card-content {
    gap: 120px;
  }

  .frontpage-contacts .contacts-container {
    gap: 10%;
    grid-template-columns: 41% 1fr;
  }

  .frontpage-contacts {
    padding: 100px 40px 250px 40px;
  }

  .marquee img {
    max-height: 200px;
  }

  .frontpage-areas-card h3 {
    font-size: 50px;
  }

  .frontpage-areas-card::before {
    width: 30px;
    height: 30px;
  }

  .frontpage-areas-card img {
    max-width: 55px;
    object-fit: contain;
  }

  .frontpage-areas {
    padding: 80px 0 50px 0;
  }

  .header-navigation li a {
    font-size: 80px;
  }

  .header-navigation li a::after {
    font-size: 15px;
  }

  .info-page-title h1 {
    font-size: 50px;
  }

  .info-page-content {
    padding: 210px 40px 100px 70px;
  }

  .info-page-title {
    padding: 210px 70px 0 40px;
  }

  .not-found h2 {
    font-size: 110px;
  }

  .not-found p {
    font-size: 18px;
  }

  .not-found .wrapper {
    max-width: 570px;
  }

  .frontpage-areas::after {
    width: 967px;
    height: 992px;
  }

  .single-service-intro h1 {
    font-size: 50px;
  }

  .single-service-intro p {
    font-size: 28px;
  }

  .single-service-banner {
    max-height: 540px;
  }

  .single-service-description h2 {
    font-size: 30px;
  }

  .single-service-description .single-service-description-container {
    grid-template-columns: 34% 1fr;
    gap: 150px;
  }

  .info-content h2 {
    font-size: 30px;
  }

  .single .frontpage-services {
    margin-top: 150px;
  }

  .frontpage-services-card:nth-of-type(even):hover img,
  .frontpage-services-card:nth-of-type(odd):hover img {
    scale: 1.2;
  }

  .gallery::before {
    width: 140%;
    height: 140%;
  }
}

@media screen and (max-width: 1440px) {
.frontpage-hero h1 {
  font-size: 86px;
  }

  .frontpage-hero p {
    font-size: 28px;
  }

  .frontpage-hero .wrapper {
    max-width: 745px;
  }

  .frontpage-hero {
    padding: 200px 4% 50px 10%;
    max-height: 805px;
    gap: 30%;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 45px;
  }

  .frontpage-voice .wrapper {
    margin: 70px 9% 60px auto;
  }

  .frontpage-voice .title-wrapper {
    max-width: 508px;
  }

  .frontpage-services-card h3 {
    font-size: 50px;
  }

  .frontpage-services-card .service-list li,
  .frontpage-services-card .service-intro p {
    font-size: 15px;
  }

  .frontpage-services-card-content {
    gap: 50px;
  }

  .frontpage-services-card .know-more {
    font-size: 15px;
  }

  .frontpage-services-card img {
    max-width: 400px;
    object-fit: contain;
  }

  .frontpage-services-card .frontpage-services-card-container {
    gap: 50px;
  }

  .custom-container-big {
    margin-top: 100px;
  }

  .frontpage-contacts {
    padding: 100px 0px 160px 0px;
  }

  .frontpage-areas-card h3 {
    font-size: 43px;
  }

  .frontpage-areas-card {
    width: 650px;
    padding: 18px 35px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 689px;
  }

  .frontpage-areas-bottom-content {
    margin-top: 80px;
  }

  .header-navigation li a {
    padding-bottom: 25px;
    font-size: 77px;
  }

  .info-page-content h2 {
    font-size: 19px;
  }

  .info-page-content h3{
    font-size: 17px;
  }

  .info-page-title {
    padding: 170px 70px 100px 40px;
  }

  .info-page-content {
    padding: 170px 40px 100px 70px;
  }

  .info-page-title .title-wrapper {
    top: 170px;
  }

  .not-found h2 {
    font-size: 105px;
  }

  form textarea {
    height: 350px;
  }

  .frontpage-areas-card {
    margin: 0 15px;
  }

  .single-service-intro h1 {
    font-size: 48px;
  }

  .single-service-intro p {
    font-size: 27px;
  }

  .single-service-intro .single-service-intro-container {
    display: flex;
    justify-content: flex-start;
    gap: 150px;
  }

  .single-service-banner {
    max-height: 580px;
  }

  .single-service-banner {
    max-height: 485px;
  }

  .single-service-description h2 {
    font-size: 29px;
  }

  .single-service-description p {
    font-size: 21px;
  }

  .marquee img {
    max-height: 175px;
  }

  .info-content h2 {
    font-size: 29px;
  }

  .info-content--description p,
  .dropdown-content p {
    font-size: 16px;
  }

  .single-service-info-section .single-service-info-container {
    grid-template-columns: 1fr 48%;
    gap: 100px;
  }

  .single-service-info-section {
    padding: 150px 40px 0 40px;
  }

  .dropdown-title h3 {
    font-size: 17px;
  }

  .info-content--get-in-touch h4 {
    font-size: 19px;
  }

  .single .frontpage-services {
    margin-top: 120px;
  }

  .frontpage-services-card:nth-of-type(even):hover img,
  .frontpage-services-card:nth-of-type(odd):hover img {
    scale: 1.1;
  }

  .frontpage-clients-top-content h2 {
    font-size: 37px;
  }
}

@media screen and (max-width: 1376px) {
  .frontpage-hero {
    padding: 200px 4% 50px 8%;
    max-height: 768px;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 40px;
  }

  .frontpage-voice .wrapper {
    margin: 60px 9% 60px auto;
  }

  .frontpage-animated-word {
    font-size: 38px;
  }

  .header-item {
    font-size: 18px;
  }

  .frontpage-voice .title-wrapper {
    max-width: 388px;
  }

  .frontpage-services-card h3 {
    font-size: 38px;
  }

  .frontpage-services-list {
    margin-top: 50px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 572px;
  }

  .frontpage-services-card img {
    max-width: 375px;
  }

  .frontpage-services {
    padding: 70px 0;
  }

  .frontpage-services-card .service-list {
    max-width: 585px;
  }

  .frontpage-services-card .frontpage-services-card-container {
    justify-content: flex-start;
    gap: 70px;
  }

  .frontpage-hero p {
    font-size: 25px;
  }

  .frontpage-hero .wrapper {
    max-width: 693px;
  }

  .frontpage-hero h1 {
    font-size: 78px;
  }

  .frontpage-areas-card h3 {
    font-size: 37px;
  }

  .frontpage-areas-card img {
    max-width: 50px;
  }

  .frontpage-areas-card {
    width: 650px;
  }

  .frontpage-areas-card {
    margin: 0 15px;
  }

  .frontpage-areas-card {
    width: 530px;
  }

  .frontpage-areas-card {
    padding: 20px 30px;
  }

  .frontpage-areas-bottom-content {
    margin-top: 60px;
  }

  .header-navigation li a::after {
    font-size: 14px;
  }

  .header-navigation li a {
    font-size: 75px;
  }

  .info-page-title h1 {
    font-size: 42px;
  }

  .info-page-title .title-wrapper {
    max-width: 300px;
  }

  .not-found h2 {
    font-size: 100px;
  }

  .not-found p {
    font-size: 17px;
  }

  .not-found .wrapper {
    max-width: 534px;
  }

  .single-service-intro {
    padding: 160px 40px 50px 40px;
  }

  .single-service-intro h1 {
    font-size: 46px;
  }

  .single-service-intro p {
    font-size: 25px;
  }

  .single-service-description {
    padding: 60px 40px 175px 40px;
  }

  .single-service-description p {
    font-size: 20px;
  }

  .single-service-description h2 {
    font-size: 28px;
  }

  .single-service-info-section .single-service-info-container {
    gap: 90px;
  }

  .dropdown-content p,
  .info-content--description p {
    font-size: 17px;
  }

  .single-service-info-section {
    padding: 130px 40px 0 40px;
  }
}

@media screen and (max-width: 1376px) and (max-height: 768px) {
  .header-navigation li a {
    font-size: 60px;
  }
}

@media screen and (max-width: 1280px) {
  .frontpage-hero h1 {
    font-size: 68px;
  }

  .frontpage-hero p {
    font-size: 24px;
  }

  .frontpage-hero .wrapper {
    max-width: 650px;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 37px;
  }

  .frontpage-animated-word {
    font-size: 34px;
  }

  .frontpage-clients-card {
    flex: 0 0 10%;
  }

  .frontpage-voice .title-wrapper {
    max-width: 460px;
  }

  .frontpage-services-card h3 {
    font-size: 35px;
  }

  .frontpage-services-card img {
    max-width: 360px;
  }

  .frontpage-services-card .know-more {
    font-size: 14px;
  }

  .frontpage-areas-card h3 {
    font-size: 35px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 617px;
  }

  .header-navigation li a {
    font-size: 70px;
    gap: 40px;
  }

  .info-page-title h1 {
    font-size: 39px;
  }

  form textarea {
    height: 315px;
  }

  .frontpage-areas::after {
    width: 870px;
    height: 850px;
  }

  .single-service-description {
    padding: 60px 40px 150px 40px;
  }

  .single-service-description .marquee {
    height: 200px;
  }

  .single-service-info-section .single-service-info-container {
    gap: 66px;
  }

  .dropdown-title h3 {
    font-size: 17px;
  }

  .info-content h2 {
    font-size: 27px;
  }

  .info-content--get-in-touch h4 {
    font-size: 19px;
  }

  .single-service-info-section {
    padding: 100px 40px 0 40px;
  }

  .frontpage-services-card::before {
    display: none;
  }

  .frontpage-clients-top-content h2 {
    font-size: 35px;
  }
}

@media screen and (max-width: 1180px) {
  .frontpage-hero {
    padding: 200px 4% 50px 7%;
  }

  .header-item {
    font-size: 17px;
  }

  .custom-logo-link svg {
    width: 230px;
  }

  .frontpage-services-card .know-more {
    display: none;
  }

  .frontpage-services-card .frontpage-services-card-container {
    justify-content: space-between;
  }

  .frontpage-contacts .contacts-container {
    gap: 7%;
    grid-template-columns: 41% 1fr;
  }

  .frontpage-areas-card {
    width: 520px;
  }

  .frontpage-areas-card h3 {
    font-size: 35px;
  }

  .frontpage-areas-card::before {
    width: 26px;
    height: 26px;
  }

  .info-page-content {
    padding: 130px 40px 80px 40px;
  }

  .info-page-title .title-wrapper {
    top: 130px;
  }

  .info-page-title {
    padding: 130px 50px 0 40px;
  }

  .not-found h2 {
    font-size: 95px;
  }

  .single-service-intro p {
    font-size: 24px;
  }

  .single-service-intro h1 {
    font-size: 45px;
  }

  .single-service-intro .single-service-intro-container {
    display: flex;
    justify-content: flex-start;
    gap: 130px;
  }

  .single-service-description .single-service-description-container {
    gap: 120px;
  }

  .info-content h2 {
    font-size: 25px;
  }

  .dropdown-content p,
  .info-content--description p {
    font-size: 16px;
  }

  .info-content--get-in-touch h4 {
    font-size: 18px;
    width: 56%;
  }

  .dropdown-title h3 {
    font-size: 16px;
  }

  .main-button {
    font-size: 16px;
  }
}

@media screen and (max-width: 1080px) {
  .single-service-info-section:nth-of-type(odd) .gallery{
    order: 1;
  }

  .frontpage-hero p {
    font-size: 23px;
  }

  .frontpage-hero .wrapper {
    max-width: 660px;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 42px;
  }

  .footer-logo{
    max-width: 200px;
  }

  .footer-logo > img{
    width: 100%;
    height: auto;
  }

  .frontpage-animated-word {
    font-size: 33px;
  }

  .frontpage-voice .animated-text p:not(:last-child) {
    margin-bottom: 10px;
  }

  .frontpage-voice .wrapper {
    margin: 40px auto;
  }

  .frontpage-voice .title-wrapper {
    max-width: 399px;
  }

  .frontpage-services-card h3 {
    font-size: 35px;
  }

  .frontpage-services-list {
    margin-top: 40px;
  }

  .frontpage-services-card {
    padding: 40px;
  }

  .frontpage-contacts .contacts-container {
    grid-template-columns: 1fr;
  }

  .marquee img {
    max-height: 170px;
  }

  .frontpage-areas-top-content {
    flex-direction: column;
    gap: 30px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 604px;
  }

  .frontpage-areas-top-content .wrapper {
    width: 80%;
  }

  .header-navigation li a {
    font-size: 70px;
    gap: 35px;
  }

  .info-page {
    display: grid;
    grid-template-columns: 1fr;
  }

  .info-page-title {
    padding: 150px 50px 0 40px;
    background-color: #f0f0f0;
  }

  .info-page-title .title-wrapper {
    top: 0;
    position: relative;
    max-width: 100%;
  }

  .info-page-content {
    padding: 40px 40px 80px 40px;
  }

  .info-page-title h1 {
    font-size: 35px;
  }

  .info-page-container {
    max-width: 100%;
  }

  .not-found h2 {
    font-size: 90px;
  }

  .frontpage-clients-slider {
    overflow-x: auto;
    gap: 40px;
    height: 100%;
  }

  .frontpage-clients-card {
    flex: 0 0 200px;
  }

  .frontpage-clients-slider::-webkit-scrollbar {
    display: none;
  }

  .frontpage-clients {
    padding: 70px 0;
  }

  .frontpage-clients-top-content,
  .frontpage-clients-slider {
    padding: 0 40px;
  }

  .frontpage-areas::after {
    width: 770px;
    height: 750px;
    bottom: -58%;
  }

  .single-service-intro {
    padding: 145px 40px 50px 40px;
  }

  .single-service-intro p {
    font-size: 23px;
  }

  .single-service-description h2 {
    font-size: 24px;
  }

  .single-service-description .single-service-description-container {
    gap: 100px;
  }

  .single-service-description {
    padding: 60px 40px 120px 40px;
  }

  .single-service-description .marquee {
    height: 150px;
  }

  .single-service-description .marquee {
    bottom: 100px;
  }

  .single-service-info-section .single-service-info-container {
    grid-template-columns: 1fr;
  }

  .info-multimedia {
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .frontpage-hero {
    padding: 200px 40px 70px 40px;
    height: fit-content;
    max-height: 100%;
    gap: 50px;
  }

  .frontpage-hero p {
    font-size: 22px;
  }
  
  h2,
  .frontpage-contacts-heading {
    font-size: 40px;
  }

  .frontpage-voice {
    padding: 70px 40px 50px 40px;
  }

  .frontpage-animated-word {
    font-size: 30px;
  }

  p.small-p {
    font-size: 18px;
  }

  .main-button {
    font-size: 16px;
  }

  .frontpage-services-card:nth-of-type(odd) img {
    top: -68px;
  }

  .frontpage-services-card:nth-of-type(2) img {
    top: -113px;
  }

  .frontpage-services-card:hover img {
    top: 0;
  }

  .frontpage-services-card img {
    max-width: 300px;
  }

  .frontpage-contacts {
    padding: 80px 0px 160px 0px;
  }

  .frontpage-areas-card {
    width: 490px;
  }

  .frontpage-areas-card h3 {
    font-size: 32px;
  }

  .frontpage-areas-sliders {
    margin-top: 40px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 561px;
  }

  .header-navigation li a {
    font-size: 68px;
    gap: 30px;
  }

  .not-found h2 {
    font-size: 85px;
  }

  .not-found p {
    font-size: 16px;
  }

  .not-found .wrapper {
    max-width: 500px;
  }

  .not-found {
    padding: 200px 40px 90px 40px;
  }

  .response-ajax {
    font-size: 15px;
  }

  .single-service-intro .single-service-intro-container {
    gap: 20px;
    flex-direction: column;
  }

  .single-service-intro p {
    margin-top: 0;
  }

  .single-service-description .single-service-description-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-service-description p {
    font-size: 19px;
  }

  .single-service-description {
    padding: 60px 40px 100px 40px;
  }

  .frontpage-services-card a {
    /* pointer-events: none; */
  }

  .frontpage-services-card.show a {
    pointer-events: all;
  }

  .single .frontpage-services-list {
    margin-top: 20px;
  }
}

@media screen and (max-width: 890px) {
  body.page-template-default{
    overflow-x: unset;
  }

  /* main{
    overflow-x: hidden;
  } */

  .frontpage-services-card{
    overflow-y: unset;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 37px;
  }

  .custom-logo-link svg {
    width: 210px;
  }

  .frontpage-voice .title-wrapper {
    max-width: 356px;
  }

  .frontpage-services-card .service-list {
    max-width: 100%;
  }

  .frontpage-services-card h3 {
    font-size: 36px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 518px;
  }

  .header-navigation li a {
    font-size: 65px;
  }

  .info-page-title h1 {
    font-size: 33px;
  }

  .info-page-content h2 {
    font-size: 18px;
    margin: 20px 0 8px 0;
  }

  .info-page-content h2 {
    font-size: 16px;
    margin: 20px 0 8px 0;
  }

  .not-found h2 {
    font-size: 80px;
  }

  .frontpage-services-card .service-list ul {
    opacity: 1;
    visibility: visible;
  }

  .frontpage-services-card {
    max-height: fit-content;
  }

  .frontpage-services-card.show .service-list {
    max-height: 1000px;
  }

  .frontpage-services-card:nth-of-type(odd) img,
  .frontpage-services-card:nth-of-type(2) img,
  .frontpage-services-card:nth-of-type(4) img,
  .frontpage-services-card:nth-of-type(even) img {
    top: auto;
    left: auto;
    transform: rotateZ(-2deg);
    height: auto;
  }

  .frontpage-services-card .frontpage-services-card-container{
    gap: 30px;
    align-items: flex-start;
  }

  .frontpage-services-card:nth-of-type(even):hover img,
  .frontpage-services-card:nth-of-type(odd):hover img {
    scale: 1;
    transform: none;
  }

  .frontpage-services-card-content{
    position: sticky;
    top: 20px;
    height: fit-content;
  }

  .frontpage-services-card img {
    max-width: 270px;
  }

  .frontpage-services-card .service-list li{
    font-size: 14px;
  }

  .frontpage-areas::after {
    width: 570px;
    height: 550px;
    bottom: -37%;
  }

  .single-service-intro h1 {
    font-size: 43px;
  }

  .single-service-intro p {
    font-size: 22px;
  }

  .info-content h2 {
    font-size: 24px;
  }

  .single .frontpage-services {
    margin-top: 90px;
  }

  .frontpage-clients-top-content h2 {
    font-size: 33px;
  }
}

@media screen and (max-width: 768px) {
  .frontpage-hero .wrapper {
    align-self: flex-start;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 34px;
  }

  .frontpage-clients-slider {
    margin-top: 20px;
  }

  .frontpage-clients {
    padding: 50px 0px;
  }

  .footer-logo {
    max-width: 180px;
  }

    footer a {
    font-size: 15px;
  }

  .footer-links>div {
    display: flex;
    gap: 40px;
  }

  .frontpage-voice .title-wrapper {
    max-width: 321px;
  }

  .frontpage-areas-card {
    width: 420px;
  }

  .frontpage-areas-card h3 {
    font-size: 30px;
  }

  .frontpage-areas-card {
    padding: 15px 25px;
  }

  .frontpage-areas-card img {
    max-width: 45px;
  }

  .frontpage-areas {
    padding: 60px 0 50px 0;
  }

  .frontpage-areas-top-content {
    gap: 20px;
  }

  .frontpage-areas-sliders {
    margin-top: 30px;
  }

  .frontpage-areas-list:not(:last-child) {
    margin-bottom: 15px;
  }

  .frontpage-areas-card {
    margin: 0 5px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 483px;
  }

  .header-navigation li a {
    font-size: 58px;
  }

  .header-navigation li a::after {
    font-size: 13px;
  }

  .info-page-title h1 {
    font-size: 30px;
  }

  .not-found h2 {
    font-size: 75px;
  }

  .not-found p {
    font-size: 15px;
  }

  .not-found .wrapper {
    max-width: 465px;
  }

  .not-found {
    padding: 180px 40px 70px 40px;
  }

  .frontpage-areas::after {
    width: 470px;
    height: 450px;
    bottom: -35%;
  }

  .single-service-intro h1 {
    font-size: 42px;
  }

  .single-service-intro p {
    font-size: 21px;
  }

  .single-service-description {
    padding: 50px 40px 80px 40px;
  }

  .single-service-description p {
    font-size: 18px;
  }

  .frontpage-contacts {
    padding: 80px 0px 100px 0px;
  }
}

@media screen and (max-width: 735px) {
  /* Footer */
  footer .footer-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 10%;
  }

  .footer-logo {
    max-width: 210px;
    grid-column: span 2;
  }

  .footer-services{
    grid-row: span 2;
  }

  /* Serviços */
  .frontpage-services-card .service-list{
    display: none;
  }
}

@media screen and (max-width: 630px) {
  .frontpage-hero h1 {
    font-size: 60px;
  }

  .frontpage-hero .wrapper {
    max-width: 100%;
  }

  .frontpage-hero p {
    font-size: 20px;
  }

  .frontpage-animated-word {
    font-size: 27px;
  }

  .frontpage-services-card-content,
  .frontpage-services-card-content figure {
    width: 100%;
  }

  .frontpage-services-card-content figure img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .frontpage-services-card h3 {
    font-size: 31px;
  }

  .frontpage-services-card .service-list li,
  .frontpage-services-card .service-intro p {
    font-size: 14px;
  }

  .frontpage-services-card .service-list ul {
    margin-left: 5px;
  }

  .frontpage-services-card .service-list ul ul {
    margin-left: 10px;
  }

  .frontpage-services-card .frontpage-services-card-container {
    gap: 20px;
    flex-direction: column;
  }

  .frontpage-services-card-content {
      position: relative;
      top: 0;
      height: fit-content;
  }

  .frontpage-services-card a{
    width: 100%;
  }

  .footer-links>div {
    gap: 30px;
  }

  .custom-container-big {
    margin-top: 40px;
  }

  .frontpage-areas-card {
    gap: 20px;
  }

  .frontpage-areas-card h3 {
    font-size: 26px;
  }

  .header-navigation li a {
    font-size: 46px;
  }

  .header-navigation li a::after {
    top: 5px;
    font-size: 12px;
  }

  .info-page-content p,
  .info-page-content li {
    font-size: 14px;
  }

  .not-found h2 {
    font-size: 65px;
  }

  .not-found h1 {
    font-size: 12px;
  }

  .single-service-intro h1 {
    font-size: 37px;
  }

  .single-service-intro p {
    font-size: 20px;
  }

  .single-service-intro {
    padding: 130px 40px 50px 40px;
  }

  .single-service-description h2 {
    font-size: 23px;
  }

  .info-multimedia {
    width: 85%;
  }

  .single-service-info-section {
    padding: 70px 40px 0 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links>div {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}

@media screen and (max-width: 550px) {
  
  .frontpage-hero h1 {
    font-size: 57px;
  }

  .frontpage-hero {
    padding: 180px 5% 50px 5%;
    height: 100dvh;
    max-height: 630px;
  }

  .header-item {
    display: none;
  }

  header {
    padding: 30px 5% 0 5%;
  }

  .frontpage-hero p {
    font-size: 20px;
  }

  .frontpage-voice {
    padding: 50px 5% 50px 5%;
  }

  .frontpage-services h2 {
    margin-left: 5%;
  }

  .frontpage-services-card {
    padding: 40px 5% 30px 5%;
  }

  .frontpage-services-list {
    margin-top: 20px;
  }

  .frontpage-services-card h3 {
    font-size: 28px;
  }

  .frontpage-services {
    padding: 50px 0;
  }

  footer {
    padding: 40px 5%;
  }

  .footer-links>div {
    width: 100%;
    gap: 20px;
    justify-content: space-between;
  }

  .footer-links > a {
    margin: 0 auto;
  }

  .frontpage-clients {
    padding: 50px 0;
  }

  .frontpage-clients-top-content,
  .frontpage-clients-slider {
    padding: 0 5%;
  }

  .frontpage-clients-card {
    flex: 0 0 80px;
  }

  .frontpage-clients-card img {
    width: 100%;
  }

  .frontpage-contacts {
    padding: 50px 0 80px 0;
  }

  .frontpage-contacts .contacts-container {
    margin: 0 5%;
  }

  .validation label {
    font-size: 13px;
  }

  .validation input[type="checkbox"] {
    width: 25px;
    height: 25px;
  }

  form textarea {
    height: 320px;
  }

  form .main-input,
  form textarea {
    padding: 12px 20px;
  }

  form .main-input::placeholder,
  form textarea::placeholder {
    font-size: 15px;
  }

  .frontpage-contacts .marquee {
    bottom: 240px;
  }

  .frontpage-areas-top-content {
    padding: 0 5%;
  }

  .frontpage-areas-bottom-content {
    margin-top: 50px;
    padding-left: 5%;
  }

  .frontpage-areas-card {
    width: 390px;
  }

  .frontpage-areas-card::before {
    width: 20px;
    height: 20px;
  }

  .frontpage-areas-top-content .wrapper {
    width: 100%;
  }

  .frontpage-areas-card h3 {
    font-size: 25px;
  }

  .frontpage-areas-card img {
    max-width: 35px;
  }

  .main-button {
    font-size: 15px;
  }

  .frontpage-areas {
    padding: 50px 0;
  }

  .frontpage-services-card:nth-of-type(1) {
    padding: 20px 5% 30px 5%;
  }

  .frontpage-voice .title-wrapper {
    max-width: 320px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 413px;
  }

  .frontpage-areas-top-content .wrapper {
    padding-top: 0;
  }

  .header-navigation {
    padding: 100px 5% 40px 5%;
  }

  .header-navigation li a {
    font-size: 40px;
  }

  .info-page-title {
    padding: 130px 5% 0 5%;
  }

  .info-page-content {
    padding: 40px 5% 60px 5%;
  }

  .not-found h2 {
    font-size: 60px;
  }

  .not-found {
    padding: 160px 40px 70px 40px;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 30px;
  }

  .single-service-intro {
    padding: 130px 5% 40px 5%;
  }

  .single-service-intro .single-service-intro-container {
    gap: 15px;
  }

  .single-service-description {
    padding: 50px 5% 60px 5%;
  }

  .info-multimedia {
    width: 100%;
  }

  .card {
    height: 200px;
  }

  .gallery {
    height: 250px;
  }

  .single-service-info-section {
    padding: 50px 5% 0 5%;
  }

  .single-service-info-section .single-service-info-container {
    gap: 50px;
  }

  .dot.active {
    width: 10px;
  }

  .single .frontpage-services {
    margin-top: 50px;
  }

  .dropdown-content p,
  .info-content--description p {
    font-size: 14px;
  }

  .gallery::before {
    display: none;
  }

  .label-as-placeholder {
    font-size: 15px;
  }

  .frontpage-clients-top-content h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 440px) {
  table{
    display: block;
    overflow: auto;
  }
  
  table thead td{
      font-size: 12px;
  }

  table td {
      border: 1px solid #dededf;
      font-size: 10px;
  }

  .frontpage-hero h1 {
    font-size: 50px;
  }

  .frontpage-hero {
    justify-content: center;
    height: 100dvh;
    max-height: 100%;
  }

  .frontpage-voice::after{
    opacity: 0.2;
  }

  .frontpage-hero p {
    font-size: 19px;
  }

  .custom-logo-link svg {
    width: 190px;
  }

  .frontpage-animated-word {
    font-size: 22px;
  }

  .frontpage-voice .wrapper {
    margin: 25px auto;
  }

  p.small-p {
    font-size: 16px;
  }

  .main-button {
    font-size: 14px;
  }

  .frontpage-services-card h3 {
    font-size: 23px;
  }

  .footer-links>div {
    gap: 12px;
  }

  footer a {
    font-size: 14px;
  }

  h2,
  .frontpage-contacts-heading {
    font-size: 25px;
  }

  .marquee img {
    max-height: 150px;
  }

  .frontpage-contacts .marquee {
    bottom: 200px;
  }

  .frontpage-areas-card h3 {
    font-size: 22px;
  }

  .frontpage-areas-card img {
    max-width: 40px;
  }

  .frontpage-voice .title-wrapper {
    max-width: 235px;
  }

  .frontpage-areas-card {
    width: 335px;
  }

  .header-navigation li a {
    font-size: 33px;
    gap: 20px;
  }

  .header-navigation li a::after {
    display: none;
  }

  .info-page-title h1 {
    font-size: 27px;
  }

  .info-page-content {
    padding: 30px 5% 50px 5%;
  }

  .info-page-content .updated-version {
    font-size: 14px;
  }

  .not-found p {
    font-size: 13px;
  }

  .not-found h2 {
    font-size: 55px;
  }

  .frontpage-services-card img {
    max-width: 100%;
  }

  footer .footer-container {
    column-gap: 30px;
    row-gap: 20px;
  }

  .footer-logo {
    max-width: 180px;
  }

  .footer-services-list,
  .footer-contacts>div {
    gap: 12px;
  }

  form .submit {
    font-size: 13px;
  }

  .frontpage-areas-top-content .title-wrapper {
    max-width: 352px;
  }

  .frontpage-areas-card {
    gap: 15px;
  }

  form textarea {
    height: 290px;
  }

  .response-ajax {
    font-size: 14px;
  }

  .single-service-intro h1 {
    font-size: 34px;
  }

  .single-service-intro p {
    font-size: 18px;
  }

  .single-service-intro {
    padding: 90px 5% 40px 5%;
  }

  .single-service-intro .single-service-intro-container {
    gap: 10px;
  }

  .single-service-description h2 {
    font-size: 20px;
  }

  .single-service-description .single-service-description-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-service-description p {
    font-size: 15px;
  }

  .single-service-description .marquee {
    height: 95px;
  }

  .info-content h2 {
    font-size: 22px;
  }

  .info-content--get-in-touch h4 {
    font-size: 17px;
    width: 60%;
  }
}
