@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

:root {
  --main-dark-color: #ffffff; /* Letras */
  --second-dark-color: #ffffff; /* Letras */
  --third-dark-color: #ffffff; /* Letras */
  --main-light-color: #000000; /* 2Pag */
  --second-light-color: #000000; /* Especialidades */
  --third-light-color: #00017f; /* Letras */
  --white-color: #ffffff;
  --black-color: #000000;
  --dark-shadow: 1px 1px 2px var(--main-dark-color);
  --light-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--third-light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--second-dark-color);
  border-radius: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--main-light-color);
  color: var(--main-dark-color);
}

a {
  text-decoration: none;
}

/* HEADER */

header {
  position: fixed;
  width: 100%;
  z-index: 99;
  margin: 1rem 0;
}

.header-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.header-scroll {
  margin: 0;
  background-color: var(--main-dark-color);
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.835);
  transition: 0.5s ease-in-out;
}

nav img {
  width: 3.5rem;
  cursor: pointer;
}

.desktop-menu {
  display: flex;
  list-style: none;
  color: var(--main-light-color);
  text-transform: uppercase;
  gap: 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 2rem 0 7rem;
}

.desktop-menu a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in-out;
}

.desktop-menu a:hover {
  color: var(--main-dark-color);
  background-color:#00017f;
  text-shadow: var(--light-shadow);
  border-radius: 0.4rem;
  padding: 0.1rem;
}

.menu-btn {
  cursor: pointer;
}

.menu-btn i {
  color: var(--main-light-color);
  text-shadow: var(--dark-shadow);
  font-size: 2rem;
  transition: .3s ease-in-out;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--main-light-color);
  box-sizing: border-box;
  animation: none;
  font-weight: 500;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: -1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  font-size: 1.3rem;
  gap: 2rem;
  height: 100%;
}

.mobile-menu ul a {
  transition: 0.1 ease-in-out;
  text-decoration: none;
  color: var(--main-light-color);
}

.mobile-menu ul a:hover {
  color: var(--third-dark-color);
}

.close-btn {
  cursor: pointer;
  position: absolute;
  top: 2%;
  left: 75%;
  font-size: 1.8rem;
  color: var(--third-dark-color);
  transition: 0.1 ease-in-out;
}

.close-btn:hover {
  color: var(--main-light-color);
}

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

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

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

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

.language-selector {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.language-selector li {
  display: inline-block;
  margin-right: 10px;
}

.language-selector li:last-child {
  margin-right: 0;
}

.language-selector img {
  width: 30px;
  transition: ease .1s;
}

.language-selector img:hover {
  width: 32px;
}

/* HERO */
#hero {
  background-image: url(../assets/images/Background.png);
  background-size: cover;
  width: 100%;
  height: 100%;
}

/* VIDEO HERO */
#video-hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

span {
  color: var(--third-light-color);
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.hero-text-container {
  width: 40%;
  padding-bottom: 8rem;
  padding-left: 10rem; /* Adiciona espaçamento à esquerda */
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  visibility: visible; /* alterado para visible */
}

.hero-text h1 {
  font-size: clamp(1.645788735rem, 0.6146427853rem + 4.11236365vw, 2.589472375rem);
  color: var(--main-light-color);
  text-shadow: var(--dark-shadow);
  font-weight: 600;
}

.hero-text p {
  color: var(--main-light-color);
  text-shadow: var(--dark-shadow);
  font-size: 1rem;
  font-weight: 300;
  max-width: 90%;
}

.hero-btn-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-button,
.hero-button2 {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 25rem; /* Tamanho mínimo do botão */
}

.hero-button {
  background-color: #00017f; /* Cor de fundo #00017f */
  border: #000000 1px solid; /* Cor da borda #000000 */
  color: var(--main-dark-color);
  text-decoration: none;
}

.hero-button:hover {
  background-color: #ffffff; /* Cor de fundo #ffffff ao passar o mouse */
  border: #000000 1px solid; /* Cor da borda #000000 ao passar o mouse */
  color: var(--main-light-color);
}

.hero-button2 {
  background-color: transparent;
  border: var(--main-light-color) 1px solid;
  color: var(--main-light-color);
  text-decoration: none;
}

.hero-button2:hover {
  background-color: var(--main-light-color);
  color: var(--main-dark-color);
}

@media screen and (max-width: 600px) {
  .hero-button,
  .hero-button2 {
    padding: 10px 20px; /* Reduz o padding em dispositivos móveis */
    min-width: 15rem; /* Reduz o tamanho mínimo do botão em dispositivos móveis */
  }
}


.hero-photo {
  width: 50rem;
  opacity: 0.8;
}



/* ABOUT */

#about-me {
  padding: 5rem 1rem;
  background-color: var(--main-dark-color);
  color: var(--main-light-color);
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.about-container img {
  max-width: 100%;
  height: auto;
  max-width: 33rem;
  width: 100%;
  border-radius: 0.3rem;
  /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; Sombreamento */
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40%;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--second-light-color);
}

.about-text p {
  line-height: 1.4rem;
  text-align: justify;
  font-size: 1rem;
}

/*SECTION WORK*/
#my_work {
  display: flex;
  background-color: var(--second-light-color);
  padding: 5rem 0;
}

.my_work_area {
  display: flex;
  margin: 0 auto;
  width: 80vw;
  gap: 2rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.my_work_text {
  text-align: center;
}

.my_work_text h2 {
  font-size: 1.8rem;
  color: var(--main-dark-color);
  font-weight: bolder;
}

.my_work_text p {
  line-height: 1.5rem;
  font-size: 1rem;
  padding-top: 2rem;
  margin: 0 auto;
  color: var(--second-dark-color);
}

.my_work_cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  display: flex;
  width: 18rem;
  height: 12rem;
  padding: 1.8rem 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: .5rem;
  gap: 0.6rem;
  background-color: var(--main-dark-color);
}

.card i {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: var(--second-light-color);
}

.card h3 {
  color: var(--second-light-color);
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

@keyframes rotateAnimation {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.rotate {
  animation: rotateAnimation 0.8s forwards;
}

/* SERVICES */

#services {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0rem 6rem;
  position: relative;

}

.service_area {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

.service_text {
  text-align: center;
}

.section-heading {
  font-size: 1.8rem;
  color: var(--main-dark-color);
  font-weight: bolder;
}

.service_text p {
  line-height: 1.5rem;
  font-size: 1rem;
  color: var(--second-dark-color);
  width: 80%;
  margin: 2rem auto 0;
}

.card-container {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.s_card {
  width: 18rem;
  height: 23rem;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent; /* Removido o background-color */
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}


.s_card img {
  width: 100%;
}

.card-content {
  padding: 1rem;
  text-align: center;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--main-dark-color);
}

.card-text {
  font-size: 0.9rem;
  color: var(--second-dark-color);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

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

.logos {
  overflow: hidden;
  padding: 5rem 0 0;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--main-light-color));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--main-light-color));
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 30s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

/* CTA */

#cta {
  background-color: var(--main-dark-color);
  background-image: url(../assets/images/gustavo-consulting3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top;
  width: 100%;
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

#cta h2 {
  text-align: center;
  max-width: 60%;
  font-size: 1.8rem;
  color: var(--main-light-color);
}

#cta span {
  color: var(--third-dark-color);
}

/* BENEFITS */

#benefits {
  width: 100%;
  padding: 5rem 2rem 5rem;
}

#benefits h2.section-heading {
  text-align: center;
}

.gustavo-consulting {
  width: 25rem;
  border-radius: 0.3rem;
  box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

.benefits-container {
  display: flex;
  margin-top: 5rem;
  justify-content: center;
  align-items: center;
}

.benefits-text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.benefits-text {
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  color: var(--main-dark-color);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  transition: all .3s ease-in-out;
}

.benefits-text:hover {
  background-color: var(--main-dark-color);
  color: var(--main-light-color);
}

.benefits-text p {
  font-size: .9rem;
  margin: 0 auto;
  padding-top: .7rem;
}

/* MEDIA */

#media {
  position: relative;
  width: 100%;
  background: var(--main-dark-color);
  color: var(--main-light-color);
  padding-bottom: 5rem;
}

#media .media-heading {
  padding: 8rem 0 1.5rem;
  color: var(--main-light-color);
  width: 80%;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
}

.media-container {
  max-width: 1400px;
  width: 100%;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}

.slide-container {
  margin: 0 60px;
  overflow: hidden;
}

.media-card {
  background: var(--main-light-color);
  border-radius: 8px;
}

.media-card-btn {
  display: inline-block;
  padding: .5rem;
  font-weight: 600;
  border-radius: .4rem;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 8rem;
  background-color: var(--main-dark-color);
  color: var(--main-light-color);
}

.media-card .image-box {
  height: 300px;
}

.media-card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  /* object-fit: contain; */
}

.media-card .media-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
  flex-direction: column;
  gap: 1rem;
}

.media-card .media-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.media-details .name {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: var(--main-dark-color);
}

.media-details .description {
  font-size: .8rem;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 24px;
}

.swiper-pagination-bullet {
  background-color: var(--main-light-color);
}

.custom-shape-divider-top-1704413259 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1704413259 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 61px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1704413259 .shape-fill {
  fill: #FCEFCF;
}



#researches {
  background-color: var(--main-dark-color);
  padding: 6rem 0 6rem;
}

#researches h2 {
  color: var(--main-light-color);
  text-align: center;
}

.researches-content {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.researches-content img {
  width: 20rem;
  border-radius: 5px;
}

.researches-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4rem;
  gap: 2rem;
  color: var(--main-light-color);
  width: 40%;
}

.researches-text-p {
  font-size: 1rem;
  text-align: justify;
}

.researches-content a {
  width: 10rem;
  margin: 0 auto;
}

.researches-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.researches-end p {
  width: 90%;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
}

/* FOOTER  */

.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: .5rem;
  opacity: 0;
  transform: translateY(-30rem);
  transition: all 0.2s ease-in-out;
  animation: myAnim 3s linear infinite;
  z-index: 999;
}

.whatsapp-btn img {
  width: 45px;
}

.whatsapp-btn.show {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(0rem);
}

@keyframes myAnim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

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

footer {
  width: 100%;
  background-color: var(--main-dark-color);
  color: var(--main-light-color);
}

.footer-area {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 5rem;
  gap: 5rem;
  flex-wrap: wrap;
}

.footer-text {
  text-align: justify;
}

.footer-text h2 {
  max-width: 30rem;
  font-size: 1.8rem;
  color: var(--cor-azul-claro);
}

.footer-text p {
  max-width: 30rem;
  font-size: 1rem;
  margin-top: 2rem;
}

/*FORMULÁRIO*/

.form {
  width: 35%;
}

.form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--black-color);
  padding: 2rem;
  border-radius: 1.5rem;
  margin: 0 auto;
}

form input {
  width: 95%;
  align-items: center;
  border-radius: 0.5rem;
  padding: 1rem 0.5rem;
  margin: 1rem auto;
  color: var(--black-color);
  font-size: 1rem;
  outline: none;
}

form .text {
  height: 5rem;
}

form button {
  width: 100%;
  margin: 1rem auto;
  padding: 1.1rem;
  background-color: var(--main-dark-color);
  color: var(--main-light-color);
  border: none;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s ease-in-out;
}

form button:hover {
  background-color: var(--third-light-color);
  color: var(--main-dark-color);
  transform: scale(0.97);
}

.span-required {
  font-size: .8rem;
  display: none;
  margin: -.5rem auto;
  color: red;
}


/* Galeria */
#gallery {
  padding: 4rem 0; /* Adiciona espaçamento para separar do conteúdo acima */
  background-color: #f9f9f9; /* Cor de fundo da seção de galeria */
  display: flex;
  justify-content: center; /* Centraliza o conteúdo do contêiner */
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(550px, 1fr)); /* Três colunas flexíveis */
  gap: 1rem; /* Espaçamento entre as imagens */
  width: 100%; /* Garante que a galeria ocupe toda a largura disponível */
  padding: 5rem 1rem; /* Ajusta o preenchimento */
  box-sizing: border-box; /* Inclui o padding dentro do tamanho total */
}

.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item img {
  width: 100%; /* Garante que a imagem ocupe toda a largura do contêiner */
  max-width: 100%; /* Limita a largura máxima da imagem */
  height: auto; /* Mantém a proporção da imagem */
  min-width: 550x; /* Define a largura mínima da imagem */
  min-height: 480px; /* Define a altura mínima da imagem */
  border-radius: 0.5rem; /* Borda arredondada nas imagens */
}












/* END  */

.footer-end {
  width: 100%;
  background-color: var(--black-color);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white-color); /* Define a cor do texto como branca */
}

.footer-end img {
  width: 5rem;
}

.footer-end hr {
  color: var(--main-light-color);
  width: 100%;
  opacity: 0.2;
  margin: 1rem 0;
}

.footer-end p {
  padding-bottom: 1rem;
}


.social-links {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--main-dark-color);
  background-color: var(--main-light-color);
  font-size: 1.2rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding-left: .1rem;
  display: inline-block;
  text-align: center;
  transition: .2s ease-in-out;
}

.social-icons a:hover {
  color: var(--main-light-color);
  background-color: var(--main-dark-color);
}

.credits {
  display: flex;
  font-size: 0.7rem;
  gap: 2rem;
  color: var(--white-color); /* Define a cor do texto como branca */
}

.credits a {
  color: var(--third-dark-color);
  text-shadow: var(--light-shadow);
  transition: 0.3s ease;
}

.credits a:hover {
  color: var(--white-color);
}






.dropdown {
  display: none;
}

.dropdown button {
  background-color: var(--main-light-color);
  color: var(--main-dark-color);
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}

.dropdown a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 10px 15px;
}

.dropdown .content {
  display: none;
  position: absolute;
  background-color: var(--main-light-color);
  min-width: 91px;
  text-align: center;
  box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);
  border-radius: 0 0 2px 2px;
}

.dropdown .content img {
  width: 40px;
}

.dropdown:hover .content {
  display: block;
}

.dropdown:hover button {
  background-color: var(--second-light-color);
}

.dropdown a:hover {
  background-color: var(--second-light-color);
}