/* Fontes usadas */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Sora:wght@100..800&display=swap");
@import url("clash-grotesk.css");

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

:root {
  --font-grande: "Sora", sans-serif;
  --font-pequena: "ClashGrotesk-Light", sans-serif;
  --color-black: #000;
  --color-gray1: #3d4143;
  --color-gray2: #9c9d9d;
  --color-white: #f6f6f6;
  --color-destaque1: #e7fc00;
  --color-destaque2: #728e6f;
}

/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--color-gray1);
  border-radius: 20px;
  border: 3px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-gray2);
}

::selection {
  background-color: var(--color-destaque1);
}

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

body {
  background-color: var(--color-black);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pequena);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease-out;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  object-fit: cover;
}

/*Botões fixos*/
.fixed-button {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease, box-shadow 0.5s ease;
}

#backToTop {
  bottom: 20px;
  left: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#whatsappButton {
  bottom: 20px;
  right: 40px;
  background-color: #25d366;
  box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
  animation: pulse 2s infinite;
}

#whatsappButton i {
  font-size: 24px;
  color: #fff;
}

.fixed-button i {
  font-size: 24px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  }
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; /* Centraliza o container */
  padding: 0 20px; /* Adiciona padding lateral */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*************** HEADER *****/
.header {
  user-select: none;
  position: fixed;
  top: 0;
  width: 100vw;
  padding: 2rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: top 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Logo */
.logo {
  width: 100%;
}

.logo img {
  width: 150px;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 100;
}

.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* Menu Navegação */
.menu-aberto {
  background-color: var(--color-black);
  position: fixed;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0;
}

.menu-aberto.active {
  height: 100vh;
  opacity: 1;
}

.nav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  transition: opacity 0.5s ease-in-out;
}

.nav-menu a {
  user-select: none;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-pequena);
  font-size: 3rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
  .nav-menu a {
    font-size: 1.5rem;
  }
}

.menu-aberto.active .nav-menu a {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu a:hover {
  color: var(--color-destaque1);
  transition: all 0.3s ease;
}

/*************** INICIO *****/
.inicio {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 1rem;
  z-index: 1;
  user-select: none;
}

.container-inicio {
  width: 100%;
  height: 100%;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .container-inicio {
    padding-top: 6rem;
  }
}

.conteudo-inicio {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.titulo-inicio {
  font-size: clamp(1rem, 2.5vw + 0.8rem, 3rem);
  font-family: var(--font-grande);
  font-weight: normal;
}

.destaque-inicio {
  font-weight: lighter;
}

.paragrafo-inicio p {
  font-size: clamp(1.2rem, 1.5vw + 1rem, 2rem);
  max-width: 900px;
  color: var(--color-gray2);
  font-family: var(--font-pequena);
}

/* Botão Inicio */
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta span {
  font-size: clamp(1.2rem, 1.5vw + 1rem, 2rem);
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: var(--color-destaque2);
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: var(--font-pequena);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--color-destaque2);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--color-destaque2);
}

.cta:hover svg {
  transform: translateX(0);
  stroke: var(--color-destaque1);
}

.cta:active {
  transform: scale(0.95);
}

.complemento-inicio {
  position: absolute;
  bottom: 2rem;
  width: 100vw;
  padding: 0rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.complemento-inicio .text {
  width: 200px;
}

.complemento-inicio .qr-code {
  width: 80px;
  opacity: 0.2;
  transition: all 0.5s ease-in-out;
}

.qr-code:hover {
  opacity: 1;
}

/*************** SOBRE *****/
.sobre {
  background-color: var(--color-black);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  z-index: 1;
  user-select: none;
  overflow: visible;
}

.sobre-reverse {
  padding: 1rem 1rem;
}

.container-sobre {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .container-sobre {
    width: 100%;
  }
}

.headline-sobre {
  height: 30%;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.headline-scroll {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

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

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

.headline-scroll span {
  font-family: var(--font-grande);
  font-size: 5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.headline-scroll .divisor {
  width: 20px;
  height: 20px;
  background-color: var(--color-gray2);
  border-radius: 50%;
  margin: 0 20px;
}

.headline-scroll .bold {
  font-weight: bold;
  color: var(--color-white);
}

.headline-scroll .light {
  font-weight: lighter;
  color: var(--color-gray2);
}

.conteudo-sobre {
  position: relative;
  top: 30%;
  width: 100%;
  height: 70%;
  display: flex;
}

.conteudo-sobre-alinhador {
  align-items: center;
}

.conteudo-sobre-reverse {
  position: relative;
  top: 30%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}

.left-sobre {
  color: var(--color-white);
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 3rem;
}

.textos-sobre h2 {
  font-size: 3rem;
  font-family: var(--font-grande);
}

.profile-personal .textos-sobre h2 {
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .textos-sobre h2 {
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 2rem;
  }

  .profile-personal .container-sobre .textos-sobre p {
    width: 100%;
    padding: 0 1.8rem 1rem;
    text-align: center;
  }

  .profile-personal .textos-sobre h2 {
    width: 100%;
    padding: 0 1rem 1rem;
  }
}

.textos-sobre p {
  font-size: 1.5rem;
  color: var(--color-gray2);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

.redes-sociais {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.redes-sociais a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--color-gray2);
  font-size: 1.5rem;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  transition: all 0.3s ease-in-out;
}

.redes-sociais a:hover {
  color: var(--color-destaque1);
}

.right-sobre {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-sobre-profesional {
  display: flex;
  justify-content: center;
  align-items: center;
}

.align-pessoal {
  padding: 0 2rem;
}

.imagem-sobre-profesional img {
  max-width: 420px;
  width: 100%;
  margin-top: 100px;
  border: 5px solid var(--color-white);
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .imagem-sobre-profesional img {
    margin-top: 0;
  }
}

.imagem-sobre {
  display: flex;
  justify-content: right;
  align-items: center;
  position: absolute;
}

.imagem-sobre img {
  height: 450px;
  object-fit: cover;
}

.complemento-sobre {
  width: auto;
  z-index: 0;
}

.complemento-sobre img {
  position: relative;
  left: 50px;
  top: 50px;
  width: 90%;
  z-index: 1000;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.imagem-sobre img {
  width: 90%;
  z-index: 99;
}

/*************** SKILLS *****/
.skills {
  width: 70%;
  margin: 0 auto;
  padding: 7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .skills {
    width: 100%;
  }
}

.container-skills {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.container-skills-reverse {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.headline-skills {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-headline-skills h2 {
  font-family: var(--font-grande);
  font-size: 3rem;
}

.text-headline-skills p {
  font-size: 1.5rem;
  color: var(--color-gray2);
  font-weight: 500;
  line-height: 1.4;
  max-width: 900px;
}

.conteudo-skills {
  display: grid;
  gap: 1rem;
  width: 100%;
}

/*****PESSOAL*****/
.skills-persona {
  width: 80%;
  margin: 0 auto;
  padding: 7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-skills-persona {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
}

.headline-skills-persona {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-headline-skills-persona h2 {
  font-family: var(--font-grande);
  font-size: 3rem;
}

.text-headline-skills-persona p {
  font-size: 1.5rem;
  color: var(--color-gray2);
  font-weight: 500;
  line-height: 1.4;
  max-width: 900px;
}

.conteudo-skills-persona {
  display: grid;
  gap: 1rem;
  width: 100%;
}
/*  */
.box-skills {
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  border-radius: 20px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding: 2rem;
  gap: 1.5rem;
}

.box-skills i {
  font-size: 4rem;
  color: var(--color-white);
}

.box-skills h3 {
  font-size: 1.8rem;
}

.box-skills p {
  color: var(--color-gray2);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 150px;
}

@media (min-width: 600px) {
  .conteudo-skills {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .conteudo-skills {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*  */

.box-skills-persona {
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  border-radius: 20px;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  height: auto;
  padding: 2rem;
  gap: 1.5rem;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.box-skills-persona:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .box-skills-persona {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .box-skills-persona:nth-child(even) {
    flex-direction: column;
  }

  .box-skills-persona p {
    padding-bottom: 2rem;
  }
}

.box-skills-persona img {
  width: 500px;
  height: 450px;
  border-radius: 25px;
}

@media screen and (max-width: 768px) {
  .box-skills-persona img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
  }
}

.box-skills-persona i {
  font-size: 3rem;
  color: var(--color-destaque1);
}

.text-headline-skills {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.text-headline-skills h3 {
  font-size: 1.8rem;
}

.box-skills-persona p {
  color: var(--color-gray2);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 150px;
}

@media (min-width: 600px) {
  .conteudo-skills {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .conteudo-skills {
    grid-template-columns: repeat(4, 1fr);
  }
}

/**** COMENTARIOS PESSOAIS ****/
.card-comment-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
}

.card-comment {
  width: 200px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-comment img {
  width: 100%;
  border-radius: 10px;
}

.card-comment .show {
  opacity: 1;
  transform: translateY(0);
}

/*************** SERVIÇOS *****/
.servicos {
  background-color: var(--color-white);
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.container-servicos {
  background-color: var(--color-white);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.headline-servicos {
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titulo-servicos {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
}

.titulo-servicos h1 {
  color: var(--color-black);
  width: 50%;
  font-size: 8vw;
  font-weight: lighter;
  font-family: var(--font-grande);
}

.descricao-servicos {
  width: 50%;
  font-size: 2rem;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

.servicos-cards {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0rem;
}

.card-servicos {
  border: 1px solid hsla(0, 0%, 0%, 0.35);
  max-width: 95%;
  min-height: 180px;
  border-radius: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.card-servicos-left {
  margin-left: 5%;
  border: 1px solid hsla(0, 0%, 0%, 0.35);
  width: 95%;
  min-height: 180px;
  border-radius: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  gap: 7%;
}

.card-titulo {
  width: 68%;
  font-size: clamp(0.8rem, 2.5vw + 0.4rem, 2rem);
  font-family: var(--font-pequena);
  font-weight: normal;
}

.card-icon {
  width: 25%;
  max-width: 120px;
  height: 60px;
  border: 1px solid hsla(0, 0%, 0%, 0.35);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-icon i {
  font-size: 2rem;
  color: var(--color-gray1);
  margin-bottom: -7px;
}

/*************** ALGUMA FRASE AQUI  *****/
.free-your-mind {
  background-color: var(--color-white);
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  font-family: var(--font-grande);
}

.container-free-your-mind {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

.line-container {
  display: flex;
  align-items: center;
}

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

.line-container.right {
  justify-content: flex-end;
}

.container-free-your-mind span {
  color: var(--color-black);
  font-size: 15vw;
}

.center span {
  text-align: center;
}

.right span {
  text-align: right;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-gray2);
  margin: 0 4rem;
}

/**** TIMLINE*****/

.timeline-container {
  width: 100vw;
  height: 100%;
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0rem 7rem 0rem;
}

.timeline-container h2 {
  font-size: 3rem;
  margin-bottom: 5rem;
}

.timeline {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.timeline ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

.timeline ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: var(--color-black);
  border-radius: calc(var(--line-w) / 2);
}
.timeline .title-timeline {
  background-color: var(--color-white);
}

.timeline ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

.timeline ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);
  text-align: center;
  background-color: #364898;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

.timeline ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: rgb(36, 49, 105);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

.timeline ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid #364898;
  border-radius: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

.timeline ul li .title,
ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}

.timeline ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.timeline ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

.timeline .timeline ul li .title::before,
ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.4rem;
  background: rgba(0, 0, 0, 0.1);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}

.timeline ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .timeline ul::before {
    grid-column: 2;
  }

  .timeline ul li:nth-child(odd) {
    grid-column: 1;
  }

  .timeline ul li:nth-child(even) {
    grid-column: 3;
  }

  .timeline ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .timeline ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

.timeline .credits {
  margin-top: 1rem;
  text-align: right;
}
.timeline .credits a {
  color: var(--color);
}

/* Animação para os itens da timeline */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.timeline ul li.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1s forwards;
}

/*************** PORTFOLIO *****/
.portfolio {
  width: 100vw;
  height: 100%;
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0rem 7rem 0rem;
}

.container-portfolio {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.headline-portfolio {
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headline-portfolio .titulo {
  width: 50%;
  font-size: 8vw;
  font-weight: lighter;
  font-family: var(--font-grande);
}

.headline-portfolio .descricao {
  width: 50%;
  font-size: 2rem;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

.container-case {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}

.case1,
.case2,
.case3,
.case4 {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.imagens-case {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.slide img:first-child {
  display: block;
  opacity: 1;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: var(--color-white);
  font-size: 2rem;
  user-select: none;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.textos-case {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conteudo-textos-case {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
}

.conteudo-textos-case h1 {
  color: var(--color-white);
  font-size: 6vw;
  letter-spacing: 3px;
}

.conteudo-textos-case p {
  color: var(--color-black);
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 1.5px;
  padding-bottom: 1.5rem;
}

.conteudo-textos-case span {
  width: 180px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: var(--color-black);
  border-radius: 50px;
  color: var(--color-white);
  font-weight: bold;
  letter-spacing: 1.2px;
}

/*************** CONTATO *****/
.contato {
  width: 100vw;
  height: auto;
  display: flex;
  padding: 2rem 0rem 3rem 0rem;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
}

.container-contato {
  width: 100%;
  height: 100vh;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.headline-contato {
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titulo-contato {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
}

.titulo-contato h1 {
  color: var(--color-black);
  width: 50%;
  font-size: 8vw;
  font-weight: lighter;
  font-family: var(--font-grande);
}

.descricao-contato {
  width: 50%;
  text-align: right;
}

.descricao-contato a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 2rem;
  letter-spacing: 1.5px;
  line-height: 1.4;
  font-weight: bold;
}

.conteudo-contato {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.formulario-contato {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0rem 2rem 0rem;
}

.formulario-contato h2 {
  font-size: 2rem;
}

.formulario-contato p {
  font-size: 1.5rem;
  color: var(--color-gray1);
  font-weight: 500;
  line-height: 1.4;
}

.form {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.form input {
  font-family: var(--font-pequena);
  width: 100%;
  height: 30px;
  border-radius: 30px;
  outline: none;
  border: 2px solid rgba(128, 128, 128, 0.5);
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
}

.form textarea {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  outline: none;
  border: 2px solid rgba(128, 128, 128, 0.5);
  font-family: var(--font-pequena);
  font-size: 1.2rem;
  padding: 1.5rem 1rem;
}

.btn {
  background-color: var(--color-destaque1);
  color: var(--color-black);
  font-weight: bold;
  width: 190px;
  padding: 1rem 0rem;
  border: 2px solid rgba(128, 128, 128, 0.5);
  outline: none;
  border-radius: 30px;
}

.logo-contato {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}

.logo-contato img {
  width: 80%;
  border-radius: 36px;
}

/*************** FOOTER *****/
.footer {
  background-color: var(--color-black);
  width: 100%;
  padding: 3rem 1rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.container-footer {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.logo-column img {
  width: 100px;
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-destaque1);
}

.social-column {
  text-align: right;
}

.social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.social-links a i {
  margin-right: 0.5rem;
}

.social-links a:hover {
  color: var(--color-destaque1);
}

.credits-column {
  text-align: right;
  font-size: 0.9rem;
}

.credits-column p {
  margin: 0.2rem 0;
}

.credits-column p a {
  text-decoration: none;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.credits-column p a:hover {
  color: var(--color-destaque1);
}
/***** CHAVE SELETORA *****/
.profile-section {
  display: none;
}

.profile-section.active {
  display: block;
}

/* Container do switch */
.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Estilo do switch */
.toggle-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 512px;
  height: 76px;
  border-radius: 50px;
  border: 4px solid var(--color-white);
  background: var(--color-black);
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  color: var(--color-white);
}

/* Opções dentro do switch */
.toggle-option {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

/* Botão deslizante */
.toggle-circle {
  position: absolute;
  width: 252px;
  height: 66px;
  background: var(--color-white);
  border-radius: 50px;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Estado inicial (Profissional ativo) */
.toggle-button.professional .toggle-option:first-child {
  color: var(--color-black);
}

.toggle-button.professional .toggle-circle {
  transform: translateX(0);
}

/* Estado ao alternar para Pessoal */
.toggle-button.personal {
  color: var(--color-black);
}

.toggle-button.personal .toggle-option:first-child {
  color: var(--color-white);
}

.toggle-button.personal .toggle-option:last-child {
  color: var(--color-black);
}

.toggle-button.personal .toggle-circle {
  transform: translateX(100%);
}

@media screen and (max-width: 560px) {
  .toggle-button {
    width: 300px;
  }
  .toggle-circle {
    width: 148px;
  }
}

/* Estilos da seção de comentários */
.comentarios {
  background-color: var(--color-white);
  padding: 4rem 1rem;
}

.comentarios-pessoal {
  background-color: var(--color-black);
  padding: 4rem 1rem;
}

.container-comentarios {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.titulo-comentarios {
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-black);
}

/* Estilos dos cards de comentários */
.cards-comentarios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-comentario {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 560px) {
  .card-comentario {
    flex-direction: column;
  }
}

.card-comentario.reverse {
  flex-direction: row-reverse; /* Inverte a ordem do avatar e do texto */
}

.avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.texto {
  flex: 1;
}

.texto p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-gray1);
}

.btn-article {
  display: inline-block;
  background-color: #e8920f;
  padding: 8px 20px;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}

.btn-article:hover {
  background-color: #364898;
}

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

.redes-sociais {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.rocket-link a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  font-size: 1.5rem;
  width: 100%;
  padding-bottom: 5px;
}

.btn-rocket {
  display: inline-block;
  background-color: #e8920f;
  padding: 8px 20px;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}
.btn-rocket a {
  color: var(--color-black);
  text-align: center;
  font-weight: bold;
}

.btn-rocket:hover {
  background: #364898;
}

.btn-article a {
  color: var(--color-black);
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.texto .autor {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--color-black);
}

.animated {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.right {
  transform: translateX(100px);
}

.animated.show {
  opacity: 1;
  transform: translateX(0);
}

/**** COMENTARIOS PESSOAIS ****/
.carousel-feedback {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.cards-feedback {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease-in-out;
  white-space: nowrap;
  width: 100%;
}

.card-feedback {
  flex: 1;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  min-width: 250px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.avatar-feedback img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.texto-feedback {
  max-width: 250px;
  font-size: 0.9rem;
  white-space: normal;
}

@media (max-width: 768px) {
  .cards-feedback {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .card-feedback {
    flex: 0 0 80%;
    max-width: 80%;
    min-width: 80%;
    scroll-snap-align: center;
  }
}

.comentarios-pessoal {
  width: 100vw;
  height: 100%;
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .comentarios-pessoal {
    width: 120vw;
  }
}

.swiper {
  width: 80%;
  height: 100%;
  padding: 0 2rem;
}

.swiper-depoimentos .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  user-select: none;
}

.swiper-slide:active {
  cursor: grabbing;
}

.swiper-depoimentos .swiper-pagination span {
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-black);
  cursor: pointer;
}

.swiper-depoimentos .box-artigo {
  display: flex !important;
  align-items: center !important;
  background: var(--color-black);
  border-radius: 25px;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
  min-height: 830px;
}

@media screen and (max-width: 768px) {
  .swiper-depoimentos .box-artigo {
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    min-height: 540px;
  }
}

.swiper-depoimentos .box-artigo .profile .autor img {
  width: 12rem;
  height: 12rem;
  margin-left: 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-destaque1);
}

@media screen and (max-width: 768px) {
  .swiper-depoimentos .box-artigo .profile .autor {
    padding-top: 2rem;
  }

  .swiper-depoimentos .box-artigo .text-content {
    padding-bottom: 2rem;
  }
}

.swiper-depoimentos .box-artigo .text-content {
  display: flex;
  flex-direction: column;
  padding: 3rem 4rem;
}

@media screen and (max-width: 768px) {
  .swiper-depoimentos .box-artigo .text-content {
    padding: 0.5rem;
  }
}

.swiper-depoimentos .box-artigo .text-content .bi-quote {
  font-size: 4rem;
  color: var(--color-destaque1);
}

@media screen and (max-width: 768px) {
  .swiper-depoimentos .box-artigo .text-content .bi-quote {
    font-size: 2rem;
  }
}

.swiper-depoimentos .box-artigo .text-content .bi-quote:first-child {
  align-self: flex-start;
}

.swiper-depoimentos .box-artigo .text-content .bi-quote:last-child {
  align-self: flex-end;
  transform: rotate(180deg);
}

.box-artigo .text-content .text {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 4rem;
}

@media screen and (max-width: 768px) {
  .box-artigo .text-content .text {
    margin: 0.5rem;
  }
}

.box-artigo .text-content .text p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .box-artigo .text-content .text p {
    font-size: 1rem;
  }
}

.box-artigo .text-content .text h5 {
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.box-artigo .text-content .text span {
  color: var(--color-gray2);
}

/*********/
.visuallyhidden {
  position: absolute;
  z-index: -1;
  right: 0;
  opacity: 0;
}

.about-carousel-wrapper {
  margin: 7rem auto;
}

.title-about-carousel {
  color: var(--color-white);
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 3.5rem;
}

.container-about-carousel {
  overflow: hidden;
  padding: 20px;
  margin-top: 2em;
  background: rgba(0, 0, 0, 0.1);
}

.card-about-carousel {
  --card-width: 100%;
  --card-max-width: 320px;
  --card-height: 350px;
  --carousel-min-width: 600px;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: var(--card-height);
  min-width: var(--carousel-min-width);
  transition: filter 0.3s ease;
}

@media screen and (max-width: 768px) {
  .about-carousel {
    max-width: 320px;
    overflow: hidden;
    margin: 0 auto;
  }
}

.title-about-carousel {
  font-size: 2rem;
  padding-bottom: 1.5rem;
}

.card-about-carousel {
  --card-width: 90%;
  --card-max-width: 250px;
  --card-height: 300px;
}

.image-container {
  width: 6em;
  height: 6em;
  margin-bottom: 1.5em;
}

.image-container::after {
  width: 110%;
  height: 110%;
  top: calc(-5% - 2px);
  left: calc(-5% - 2px);
}

@media screen and (max-width: 640px) {
  .card-about-carousel {
    min-width: 100%;
  }
}

.card-about-carousel.smooth-return {
  transition: all 0.2s ease;
}

.card-about-carousel .card-about {
  background: var(--color-white);
  width: var(--card-width);
  max-width: var(--card-max-width);
  text-align: center;
  padding: 1em;
  min-width: 250px;
  height: var(--card-height);
  position: absolute;
  margin: 0 auto;
  color: rgb(0 0 0 / 0.5);
  transition: inherit;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 1em;
  filter: brightness(0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.card-about-carousel .card-about:active {
  cursor: grabbing;
}

.card-about.highlight {
  filter: brightness(1);
}

.card-about:nth-of-type(1) .image-container {
  background-image: url("/assets/img/logos/argonne.svg");
}

.card-about:nth-of-type(2) .image-container {
  background-image: url("/assets/img/logos/logo-icp-csic.png");
}

.card-about:nth-of-type(3) .image-container {
  background-image: url("/assets/img/logos/soleil.png");
}
.card-about:nth-of-type(4) .image-container {
  background-image: url("https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
}
.card-about:nth-of-type(5) .image-container {
  background-image: url("https://helpx.adobe.com/content/dam/help/en/stock/how-to/visual-reverse-image-search/jcr_content/main-pars/image/visual-reverse-image-search-v2_intro.jpg");
}

.image-container {
  width: 8em;
  height: 8em;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2em;
  border-radius: 100%;
  padding: 1em;
  -webkit-box-shadow: inset 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 17px 0px rgba(0, 0, 0, 0.3);
}

.image-container::after {
  content: "";
  display: block;
  width: 120%;
  height: 120%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  position: absolute;
  top: calc(-10% - 3px);
  left: calc(-10% - 3px);
}

/****GALLERY****/
.gallery {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery h2 {
  font-size: 3rem;
  font-family: var(--font-grande);
  color: var(--color-white);
  padding: 3rem 0;
  max-width: 50%;
  text-align: center;
}

.card-container-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media screen and (max-width: 1070px) {
  .card-container-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery h2 {
    font-size: 2.5rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .card-container-gallery {
    grid-template-columns: 1fr;
  }

  .gallery h2 {
    font-size: 2rem;
  }
}

.gallery .ticket {
  max-width: 350px;
  overflow: hidden;
  border-radius: 1.3rem;
  background-color: #ffffff;
  display: none;
  transform: scaleY(0);
  transition: opacity 0.5s ease, height 0.5s ease, transform 0.5s ease;
}

.gallery .ticket:nth-child(-n + 3) {
  display: block;
}
.gallery .ticket .image {
  position: relative;
  width: 100%;
  height: 29rem;
  margin-bottom: 3rem;
}

.gallery .ticket .image img {
  width: 100%;
  height: 20rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block;
}

.gallery.ticket .info {
  padding: 3rem 2rem;
}
.gallery .ticket .info span {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3.2rem;
  color: var(--color-white);
}
.gallery .ticket .info ul {
  margin-top: 2rem;
  padding: 0 0.5rem;
}
.gallery .ticket .info ul li {
  text-align: center;
}

.gallery .ticket .info ul li:nth-child(2) {
  text-align: start;
  padding: 0.5rem 1.5rem;
}
.gallery .ticket .info ul li strong {
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: bold;
}

.gallery .ticket .info ul li:nth-child(2) strong {
  font-weight: normal;
}

#toggleBtn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #e8920f;
  color: var(--color-black);
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

#toggleBtn:hover {
  background-color: #d38700;
}

/* Estilos do modal */
.modal-gallery {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.modal-gallery.active {
  opacity: 1;
  visibility: visible;
}

.modal-gallery img {
  width: auto;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  object-fit: contain;
  z-index: 9999;
}

.modal-gallery.active img {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 60px;
  right: 40px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  ..modal-gallery {
    height: 350px;
  }

  .modal-gallery img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }

  .modal-close {
    top: 100px;
  }
}
