/*==============GERAL=====================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-purple-200D4D: #200d4d;
  --brand-purple-421AA2: #421aa2;

  --primary-color: #8257e5;

  --brand-purple-AB8EEE: #ab8eee;
  --brand-purple-DFD5F9: #dfd5f9;

  --button-primary: #04d361;
  --button-primary-hover: #00875f;
  --button-secondary: #42d3ff;
  --button-secondary-hover: #4863f7;
  --button-tertiary: #fa584a;
  --button-tertiary-hover: #f41806;

  --brand-light: #eae1fd;
  --brand-white: #ffffff;

  --headline: #202024;
  --paragraph: #60606c;

  --nav-height: 7.2rem;
  font-size: 62.5%;
  /* 1rem = 10px */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: var(--paragraph);
  text-align: center;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

section,
footer {
  padding-block: 5rem;
}

#portfolio h3,
#services h3,
#budget h3,
#contact h3 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary-color);
}

#portfolio h2,
#services h2,
#budget h2,
#contact h2 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--headline);
}

.wrapper {
  width: min(50rem, 100%);
  margin-inline: auto;
  padding-inline: 2rem;
}

.wrapper-folio {
  width: min(50rem, 100%);
  margin-inline: auto;
}

.button {
  display: flex;
  width: fit-content;
  height: 100%;
  max-height: 4.6rem;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.6rem;
  color: var(--brand-white);
  border-radius: 0.5rem;
  padding: 1.6rem;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--button-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button>div {
  display: flex;
  margin-left: 1.6rem;
}

.button>div img {
  width: 2.2rem;
  position: relative;
  top: 0;
  left: 0;
}

.button:hover {
  background: var(--button-primary-hover);
}

/*==============NAVIGATION=================*/
nav {
  display: flex;
  height: var(--nav-height);
  /* background-color: var(--brand-light); */
  background-color: var(--primary-color);
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
}

nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .wrapper .logo {
  background: url(../assets/rkt-logo-white.png);
  position: relative;
  width: 15rem;
  height: 6rem;
}

nav.scroll .wrapper .logo {
  background: url(../assets/rkt-logo-white.png);
}

nav.scroll {
  background: #6846B7;
  transition: 300ms;
}

nav.scroll .toggle-menu span,
nav.scroll .toggle-menu span:before,
nav.scroll .toggle-menu span:after {
  background-color: var(--brand-white);
}

nav.scroll .toggle-menu.active span {
  background-color: transparent;
}

nav#navigationMain .menu {
  display: none;
}

/*===========MENU MOBILE==================*/
#menu {
  background: var(--primary-color);
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
}

#menu img {
  position: absolute;
  top: 0.6rem;
  left: 2rem;
}

@media (min-width: 768px) {
  #menu img {
    left: 15.5rem;
  }
}

#menu.open {
  opacity: 1;
  visibility: visible;
}

#menu.open li:nth-child(1) {
  animation-delay: 0.1s;
}

#menu.open li:nth-child(2) {
  animation-delay: 0.2s;
}

#menu.open li:nth-child(3) {
  animation-delay: 0.3s;
}

#menu.open li:nth-child(4) {
  animation-delay: 0.4s;
}

#menu.open li:nth-child(5) {
  animation-delay: 0.5s;
}

#menu.open li:nth-child(6) {
  animation-delay: 0.6s;
}

#menu.open li:nth-child(7) {
  animation-delay: 0.7s;
}

#menu.open li:nth-child(8) {
  animation-delay: 0.8s;
}

#menu.open li:nth-child(9) {
  animation-delay: 0.9s;
}

#menu.open li:nth-child(10) {
  animation-delay: 1s;
}

#menu.open li {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

#menu ul:hover a {
  opacity: 0.5;
}

#menu ul a {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transition: opacity 0.3s ease-in-out;
}

#menu ul a:hover {
  opacity: 1;
}

#menu .main-nav {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

#menu .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu .main-nav a {
  color: var(--brand-white);
  display: block;
  font-size: 3rem;
  font-weight: bold;
  padding: 1rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

#menu .main-nav a:first {
  padding-top: 0;
}

#menu .planet {
  position: absolute;
  width: 15.2rem;
  top: 12%;
  transform: translateX(150%);
  display: block;
  filter: opacity(0.3);
  z-index: -1;
}

@media (min-width: 412px) {
  #menu .planet {
    transform: translateX(170%);
  }
}

@media (min-width: 420px) {
  #menu .planet {
    transform: translateX(170%);
  }
}

#menu .rocket {
  position: absolute;
  width: 15.1rem;
  top: 27%;
  transform: translateX(-35%);
  display: block;
  filter: opacity(0.3);
  z-index: -1;
}

#menu .astronaut {
  position: absolute;
  width: 13.2rem;
  top: 76%;
  transform: translateX(-30%);
  display: block;
  filter: opacity(0.3);
  z-index: -1;
}

@media (min-width: 768px) {
  #menu .planet {
    transform: translateX(212.5%);
  }

  #menu .rocket {
    transform: translateX(0);
  }

  #menu .astronaut {
    transform: translateX(0);
  }
}

#menu .button {
  margin-top: 3rem;
  display: flex !important;
  margin-inline: auto;
  font-size: 1.4rem !important;
  padding: 1.6rem !important;
}

#menu .button>div img {
  width: 2.6rem;
  position: relative;
  top: 0;
  left: 0;
}

#menu .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin-top: 4rem !important;
}

#menu .social-links li {
  padding: 1rem;
  background: var(--brand-purple-AB8EEE);
  border: 1px solid var(--brand-purple-421AA2);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

#menu .social-links li:hover {
  background: var(--brand-purple-421AA2);
}

#menu .social-links img {
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.toggle-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: relative;
  vertical-align: middle;
  width: 2.5rem;
  z-index: 1110;
}

.toggle-menu span {
  background-color: var(--brand-white);
  content: "";
  display: block;
  height: 0.2rem;
  left: calc(50% - 1.3rem);
  position: absolute;
  top: calc(50% - 0.1rem);
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 2.6rem;
}

.toggle-menu span:before,
.toggle-menu span:after {
  background-color: var(--brand-white);
  content: "";
  display: block;
  height: 0.2rem;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 2.6rem;
}

.toggle-menu span:before {
  top: 0.7rem;
}

.toggle-menu span:after {
  top: -0.7rem;
}

.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}

.toggle-menu.active span:before,
.toggle-menu.active span:after {
  transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
  color: var(--brand-white);
}

.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
  background-color: var(--brand-white);
}

.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
  background-color: var(--brand-white);
}

/*==============HOME======================*/
#home {
  padding-top: calc(4.1rem + var(--nav-height));
  background-color: var(--primary-color);
  height: 25.8rem;
  text-align: start;
  color: var(--brand-white);
}

#home .wrapper {
  display: flex;
}

#home h1 {
  font-size: 2.8rem;
  font-weight: 100;
  width: 18.6rem;
  margin-bottom: 0.8rem;
}

#home h1 span {
  font-weight: 700;
}

#home p {
  font-size: 1.4rem;
}

#home img {
  position: relative;
  right: 1rem;
  width: 16.4rem;
}

@media (min-width: 390px) {
  #home img {
    right: -0.5rem;
  }
}

@media (min-width: 412px) {
  #home img {
    right: -2.5rem;
  }
}

@media (min-width: 414px) {
  #home img {
    right: -2.5rem;
  }
}

@media (min-width: 420px) {
  #home img {
    right: -3.5rem;
  }
}

@media (min-width: 768px) {
  #home img {
    right: -11.5rem;
  }
}

/*==============ABOUT=====================*/
#about {
  background-color: var(--brand-light);
}

#about .col-a {
  display: none;
}

#about .content {
  text-align: start;
}

#about .content h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

#about .content p {
  margin-bottom: 2rem;
}

#about .button {
  background: var(--button-secondary);
}

#about .button:hover {
  background: var(--button-secondary-hover);
}

/*==============PORTFOLIO=================*/
#portfolio header {
  text-align: start;
}

#portfolio .project-menu {
  margin-top: 3rem;
}

#portfolio .project-menu .single-project {
  top: -2rem !important;
}

#portfolio .project-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#portfolio .project-menu ul li {
  margin-bottom: 2rem;
  cursor: pointer;
}

#portfolio .project-menu li::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  position: relative;
  bottom: -0.2rem;
  left: -0.2rem;
  display: block;
  transition: width 0.2s;
}

#portfolio .project-menu li.active::after,
#portfolio .project-menu li:hover::after {
  padding-inline: 0.2rem;
  width: 100%;
}

#portfolio .project-menu li.active,
#portfolio .project-menu li:hover {
  opacity: 1;
  font-weight: 700;
  color: var(--primary-color);
}

#portfolio .project-menu ul li:nth-child(2),
#portfolio .project-menu ul li:nth-child(3),
#portfolio .project-menu ul li:nth-child(4),
#portfolio .project-menu ul li:nth-child(6) {
  margin-left: 3rem;
}

@media (min-width: 768px) {
  #portfolio .project-menu ul li:nth-child(5) {
    margin-left: 3rem;
  }

  #portfolio .project-menu ul li:nth-child(6) {
    margin-left: 0;
  }
}

#portfolio .grid-item {
  width: 100%;
}

#portfolio .single-project {
  position: relative;
  margin-top: 2rem;
}

#portfolio .single-project .gallery-image img {
  width: 100%;
}

#portfolio .single-project .project-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background: -webkit-linear-gradient(left,
      rgba(66, 26, 162, 0.85) 0%,
      rgba(171, 142, 238, 0.85) 100%);
  background: -o-linear-gradient(left,
      rgba(66, 26, 162, 0.85) 0%,
      rgba(171, 142, 238, 0.85) 100%);
  background: linear-gradient(to right,
      rgba(66, 26, 162, 0.85) 0%,
      rgba(171, 142, 238, 0.85) 100%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

#portfolio .single-project .project-content a {
  background-color: #05de7d;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#portfolio .single-project .project-content a span {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #portfolio .single-project .project-content a span {
    width: 3rem;
    height: 3rem;
  }
}

#portfolio .single-project .project-content a span::before,
.single-project .project-content a span::after {
  position: absolute;
  content: "";
  width: 0.2rem;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

#portfolio .single-project .project-content a span::after {
  height: 0.2rem;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#portfolio .single-project .project-content .project-title {
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 95%;
  text-align: center;
  overflow: hidden;
  padding: 0 1.5rem;
}

#portfolio .single-project .project-content .project-title .title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#portfolio .single-project:hover .project-content {
  opacity: 1;
  visibility: visible;
}

#portfolio .single-project:hover .project-content a {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

#portfolio .single-project:hover .project-content .project-title .title {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

#portfolio .btn-seemore {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/*==============SERVICES==================*/
#services {
  background-color: var(--brand-light);
}

#services header {
  text-align: start;
}

#services .single-services {
  margin-top: 3rem;
  padding-bottom: 0;
}

#services .services-shape {
  display: none;
}

#services .services-separator {
  display: none;
}

#services .services-items {
  text-align: start;
  display: flex;
}

#services .services-icon {
  margin-right: 2rem;
}

#services .services-icon img {
  max-width: 45rem;
}

#services .services-content {
  padding-top: 0;
}

#services .services-content h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/*==============BUDGET====================*/
#budget {
  background-color: var(--primary-color);
  color: var(--brand-white);
  text-align: left;
}

#budget header,
#budget .content {
  text-align: start;
}

#budget header,
#budget .content p {
  margin-bottom: 2rem;
}

#budget header h3,
#budget header h2 {
  color: var(--brand-white);
}

#budget .content .whatsapp {
  margin-bottom: 1rem;
}

#budget .button>div .celular {
  width: 1.4rem;
}

#budget .content .telephone {
  background: var(--button-secondary);
  margin-bottom: 2rem;
}

#budget .content .telephone:hover {
  background: var(--button-secondary-hover);
}

#budget label {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand-white);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

#budget input,
#budget select,
#budget textarea {
  background-color: var(--brand-purple-AB8EEE);
  border: none;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  padding: 1.6rem 2rem;
  width: 100%;
  color: var(--yellow-price);
  font-size: 1.4rem;
}

#budget select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/arrow-select.svg");
  background-repeat: no-repeat, repeat;
  /* arrow icon position (2rem from the right, 50% vertical) */
  background-position: right 2rem top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 1rem auto, 100%;
}

#budget textarea {
  resize: none;
}

#budget input:focus,
#budget select:focus,
#budget textarea:focus {
  outline: 0 !important;
  box-shadow: none !important;
  border: 1px solid var(--brand-purple-200D4D);
}

#budget .buttons {
  margin-top: 3rem;
  display: flex;
}

#budget .form_btn {
  background: var(--button-tertiary);
  border: none;
  margin-right: 1rem;
}

#budget .form_btn:hover {
  background: var(--button-tertiary-hover);
}

#budget .form_btn_clear {
  border: none;
}

/* ------------------------------------------------- */
.dplustrigger {
  width: 100%;
  display: none;
}

.dplustrigger .dplustrigger-txt {
  font-size: 1.4rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.dplustrigger-enviando,
.dplustrigger-sucesso,
.dplustrigger-erro {
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.dplustrigger-enviando {
  background-color: #f0ad4e;
}

.dplustrigger-sucesso {
  background-color: #5cb85c;
}

.dplustrigger-erro {
  background-color: #d9534f;
}

/*==============CONTACT===================*/
#contact {
  position: relative;
  background: url(../assets/home-footer-background-mobile.png) no-repeat;
  background-position: bottom;
  background-size: cover;
}

#contact header {
  text-align: start;
}

#contact .content {
  margin-bottom: 4rem;
}

#contact p {
  color: var(--brand-white);
  margin-bottom: 2rem;
}

#contact .card-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  margin-top: 2rem;
  width: 100%;
  height: 16.2rem;
  text-decoration: none;
  background: var(--brand-purple-DFD5F9);
  border: 1px solid var(--brand-purple-200D4D);
  border-radius: 0.6rem;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact .card-contact:hover {
  background: var(--brand-purple-200D4D);
  opacity: 1;
}

#contact .card-contact .icon {
  position: relative;
}

#contact .card-contact .icon.envelope {
  background-image: url("../assets/envelope-icon-purple-g.png");
  width: 7.5rem;
  height: 5.8rem;
}

#contact .card-contact:hover .icon.envelope {
  background-image: url("../assets/envelope-icon-white-g.png");
}

#contact .card-contact p {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

#contact .card-contact:hover p {
  color: var(--brand-white);
}

#contact .card-contact .icon.whatsapp {
  background-image: url("../assets/whatsapp-icon-purple-g.png");
  width: 5.8rem;
  height: 5.8rem;
}

#contact .card-contact:hover .icon.whatsapp {
  background-image: url("../assets/whatsapp-icon-white-g.png");
}

#contact .card-contact .icon.phone {
  background-image: url("../assets/phone-icon-purple-g.png");
  width: 5.7rem;
  height: 5.8rem;
}

#contact .card-contact:hover .icon.phone {
  background-image: url("../assets/phone-icon-white-g.png");
}

#contact .log2 {
  display: none;
}

/*==============BACK TO TOP===============*/
#backToTopButton {
  position: fixed;
  bottom: 10rem;
  right: 3.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  transform: translateY(100%);
  z-index: 10;
}

#backToTopButton.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTopButton circle {
  fill: var(--primary-color);
}

/*=================MODAL=================*/
.modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-white);
  z-index: 9999999999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  padding: 2.5rem;
  text-align: left;
  overflow-y: auto;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
}

.close {
  position: absolute;
  width: 3rem;
  right: 2.5rem;
  top: 2.5rem;
  text-align: center;
  line-height: 3rem;
  margin-top: 0.5rem;
  background: #d9534f;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--brand-white);
  text-decoration: none;
}

.modal h2 {
  font-size: 2.8rem;
  color: var(--headline);
  line-height: 3.3rem;
  margin-bottom: 1rem;
}

.modal h4 {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  color: var(--paragraph);
}

.modal p {
  margin-top: 4rem;
  border-bottom: 1px solid #CCC;
  padding-bottom: 1rem;
}

.modal .assign {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.modal .price {
  position: relative;
  left: 3.2rem;
  border: 1px solid #CCC;
  padding: 1rem 10rem 1rem 3rem;
  border-radius: 4rem;
  background-color: #FFF;
}

.modal .price small {
  font-size: 1.1rem;
}

.modal .button {
  font-size: 1.2rem;
  position: relative;
  right: 3rem;
  padding: 2.4rem 3rem;
}

.modal .cat {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.modal .cat img {
  width: 8rem;
  padding-inline: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 410px) {
  .modal .cat img {
    width: 7.2rem;
  }
}

@media (min-width: 412px) {
  .modal .cat img {
    width: 7.23rem;
  }
}

@media (min-width: 415px) {
  .modal .cat img {
    width: 7.28rem;
  }
}

.modal .cat img.opacity {
  filter: grayscale() opacity(0.2);
}

/* Aparece um espaço vazio abaixo do rodapé ao implementar o reCAPTCHA */
#shadow-host-companion {
  display: none;
}

/*===============RESPONSIVE===============*/
@media (min-width: 1024px) {

  /*==============GERAL=====================*/
  .wrapper {
    width: min(112rem, 100%);
    display: grid;
  }

  .wrapper-folio {
    width: min(112rem, 100%);
    display: grid;
  }

  /*==============NAVIGATION=================*/
  /* RESET */
  nav#navigationMain .toggle-menu {
    display: none;
  }

  nav#navigationMain .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 58%;
  }

  nav#navigationMain .menu ul:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 3.2rem;
  }

  nav#navigationMain .menu ul li a {
    color: var(--brand-white);
    text-decoration: none;
  }

  nav#navigationMain.scroll .menu ul li a {
    color: var(--brand-white);
  }

  nav#navigationMain .menu a.button {
    color: var(--brand-white);
  }

  nav#navigationMain .menu li a {
    transition: opacity 0.4s;
  }

  nav#navigationMain .menu li a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--brand-white);
    position: relative;
    /* bottom: -2.5rem; */
    bottom: -1.2rem;
    left: -0.6rem;
    display: block;
    transition: width 0.2s;
  }

  nav#navigationMain.scroll .menu li a::after {
    background-color: var(--brand-white);
  }

  nav#navigationMain .menu li a.active::after,
  nav#navigationMain .menu li a:hover::after {
    padding-inline: 0.6rem;
    width: 100%;
  }

  nav#navigationMain.scroll .menu a.button.active,
  nav#navigationMain.scroll .menu a.button:hover {
    background-color: var(--button-primary-hover);
    color: var(--brand-white);
    border: none;
  }

  #home .wrapper {
    justify-content: space-between;
  }

  #home h1 {
    width: initial;
    margin-top: 1.8rem;
  }

  #home img {
    /* right: -1.6rem; */
    display: none;
  }

  #about {
    height: 45.2rem;
  }

  #about .wrapper {
    grid-template-columns: 53.3rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #about .wrapper .col-a {
    display: block;
  }

  #about .wrapper .col-a img {
    position: relative;
    top: -7rem;
  }

  #about .wrapper .col-b {
    height: 40rem;
    align-self: center;
  }

  #portfolio .wrapper {
    width: min(115rem, 100%);
  }

  #portfolio header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0 0 0 2rem;
  }

  #portfolio .project-menu {
    margin-top: 4rem;
  }

  #portfolio .project-menu ul li:nth-child(5),
  #portfolio .project-menu ul li:nth-child(6) {
    margin-left: 3rem;
  }

  #portfolio .grid {
    display: flex;
    flex-wrap: wrap;
  }

  #portfolio .grid-item {
    width: 37rem;
  }

  #portfolio .single-project {
    margin-left: 2rem;
  }

  #services .content {
    display: flex;
  }

  #services .single-services {
    width: 33%;
    margin-right: 2rem;
  }

  #services .single-services:last-child {
    margin-right: 0;
  }

  #budget .wrapper {
    grid-template-columns: 33rem 1fr;
    grid-template-areas: 'A B';
    gap: 6.7rem;
  }

  #budget .form-group,
  #budget .form-group-2 {
    display: inline-block;
    width: 32.9rem;
    margin-right: 2rem;
  }

  #budget .form-group-2 {
    margin-right: 0;
  }

  #contact {
    height: 80rem;
  }

  #contact .content {
    margin-bottom: 35rem;
    display: flex;
  }

  #contact .card-contact {
    margin-left: 2rem;
    margin-top: 3rem;
  }

  #contact .card-contact:first-child {
    margin-left: 0;
  }

  #contact p {
    text-align: left;
  }

  #contact .log1 {
    display: none;
  }

  #contact .log2 {
    display: block;
  }
}