/* Seta cores e valores por meio de uma variavel */
:root {

  /* Cores */
  --azul: #280091;
  --cinza: #323232;
  --branco: #FFF;
  --preto: #000;
  --amarelo-bees: #ffff00;

  /* Posições */
  --marquee-width: 80vw;
  --marquee-height: 30vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);

  /* Tamanhos */
  --tamanho-titulos: 50px;
  --tamanho-subtitulos: 45px;
  --tamanho-textos: 20px;
}

/* Importa uma fonte personalizada  */
@font-face {
  font-family: Din;
  src: url("font/DIN\ Next\ Rounded\ LT\ W01\ Regular.ttf");
}

@font-face {
  font-family: Bebas;
  src: url("font/BebasNeue-Regular.ttf");
}

@font-face {
  font-family: Domine;
  src: url("font/Domine-Regular.ttf");
}

/* Muda a cor de textos selecionados  */
::selection {
  background-color: var(--cinza);
  color: var(--branco);
}

/* Muda a cor da scrollbar */
/* width */
::-webkit-scrollbar {
  width: 7px;
  background-color: rgba(164, 164, 164, 0.487);
  opacity: 0.2;
  /* Opacidade baixa no elemento */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: rgb(107, 107, 107, 0.5);
  transition: background-color 0.8s ease;
  /* Transição suave de cores */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: rgb(107, 107, 107);
  opacity: 1;
  /* Opacidade máxima no handle durante o hover */
}



/* Define estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Din";
  max-width: 100%;
}

/* Personalização de Links (a href) */
a {
  color: #fff;
  text-decoration: none;
  transition: transform 0.4s;
}

a:hover {
  transform: scale(1.1);
}

/* Navbar (menu)   */

#custom-navbar {
  background-color: #323232;
}

#itens-navbar-ambev {
  font-size: 20px;
  color: white;
  letter-spacing: 3px;
  transition: transform 0.3s;
}

#itens-navbar-ambev:hover {
  transform: scale(1.1);
}

#toggle-ambev {
  background-color: white;
  color: white;
}

.navbar-toggler {
  border-color: transparent;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.nav-icon {
  justify-content: center;
}

.nav-icon a img {
  margin-right: 10px;
  transition: transform 0.3s;
}

.nav-icon a:hover img {
  transform: scale(1.2);
}

/* Fim navbar */

/* Index */
.h2-index {
  font-family: "Din";
  font-size: var(--tamanho-titulos);
  padding-bottom: 5%;
  margin-top: 2%;
  color: var(--cinza);
  text-align: center;
}

@media screen and (max-width: 480px) {
  .h2-index {
    font-size: 30px;
    text-align: center;

  }
}

/* carousel index marcas */
.container-carousel-marcas {
  font-family: "Din";
  color: #111;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18%;
  padding-bottom: 30%;
}

.carousel-marcas {
  transition: transform 0.5s;
}

.h1-carousel-marcas {
  font-family: "Din";
  text-align: center;
  padding: 2%;
}

.carousel-marcas:hover {
  transform: scale(1.1);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #FFF;
  color: #eee;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 5em rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  transition: transform 0.5s;
}

.marquee:before,
.marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  background: linear-gradient(to right, #FFF 0%, transparent 100%);
}

.marquee:after {
  right: 0;
  background: linear-gradient(to left, #FFF 0%, transparent 100%);
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover {
    animation-play-state: paused;
  } */
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height) * 3/4);
  white-space: nowrap;
  margin-right: 50px;
}


.marquee-content li img {
  width: 100%;
}

@media (max-width: 600px) {
  html {
    font-size: 12px;
  }

  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }

  .marquee:before,
  .marquee:after {
    width: 5rem;
  }
}

/* Final carousel index marcas */

/* Noticias */

@media screen and (orientation: portrait) {
  .noticia-emsi {
    display: none;
  }

  .titulo-noticias {
    display: none;
  }

  .botoes-noticias {
    display: none !important;
  }
}

@media screen and (orientation: landscape) {
  .noticias-mobile {
    display: none;
  }

  .titulo-noticias-mobile {
    display: none;
  }

  .botoes-noticias-mobile {
    display: none !important;
  }
}


.pai-noticias {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: white;
}

.desktop-div-noticias {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.titulo-noticias {
  margin-top: 5%;
  padding-bottom: 5%;
}

.titulo-noticias h4 {
  color: #004b91;
  font-family: 'Bebas';
  text-align: center;
}

.titulo-noticias h2 {
  font-family: 'Domine';
  text-align: center;
  font-size: calc(0.8em + 0.8vw);
}

.titulo-noticias-mobile {
  margin-top: 5%;
  padding-bottom: 15%;
}

.titulo-noticias-mobile h4 {
  color: #004b91;
  font-family: 'Bebas';
  text-align: center;
  font-size: 20px;
}

.titulo-noticias-mobile h2 {
  font-family: 'Domine';
  text-align: center;
}

.botoes-noticias {
  margin-top: -2%;
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}

.botao-noticia {
  border: none;
  background-color: #ddd;
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 1.0%;
  padding-bottom: 1.0%;
  font-size: calc(0.em + 0.4vw);
  border-radius: 0px 10px 10px 0px;
}

.botao-noticia-select {
  border: none;
  background-color: #004b91;
  color: white;
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 1.0%;
  padding-bottom: 1.0%;
  font-size: calc(0.em + 0.4vw);
  border-radius: 10px 0px 0px 10px;
}

.botoes-noticias-mobile {
  margin-top: -2%;
  display: flex;
  justify-content: center;
  margin-bottom: 20%;
}

.botao-noticia-mobile {
  border: none;
  background-color: #ddd;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  font-size: calc(0.em + 0.4vw);
  border-radius: 0px 10px 10px 0px;
}

.botao-noticia-mobile-select {
  border: none;
  background-color: #004b91;
  color: white;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 1.5%;
  padding-bottom: 1.5%;
  font-size: calc(0.em + 0.4vw);
  border-radius: 10px 0px 0px 10px;
}

.div-noticias {
  display: flex;
}

.noticia-emsi {
  text-align: center;
}

.noticia-emsi img {
  border-radius: 500px;
  background-size: cover;
  width: 200px;
  height: 200px;
  border: 8px solid white;
  filter: drop-shadow(0 6mm 2mm rgba(0, 0, 0, 0.527));
  margin-bottom: 5%;
}

.noticia-emsi h4 {
  width: 60%;
  font-size: calc(0.4em + 0.4vw);
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
}

.noticia-emsi-mobile {
  text-align: center;
}

.noticia-emsi-mobile img {
  border-radius: 500px;
  background-size: cover;
  width: 200px;
  height: 200px;
  border: 5px solid white;
  filter: drop-shadow(0 3mm 1mm rgba(0, 0, 0, 0.199));
  margin-bottom: 5%;
}

.noticia-emsi-mobile h4 {
  width: 70%;
  font-size: calc(0.9em + 0.9vw);
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
}

.noticia-emsi-mobile h2 {
  font-size: calc(1.4em + 1.4vw);
}

.teste {
  display: flex;
  margin: auto;
  justify-content: center;
}

#custom-bt {
  border-radius: 100% !important;
  height: 10px !important;
  width: 10px !important;
  background-color: black;
}

#custom-position {
  top: 110%;
}

/* Final noticias */

/* Bees */

.bees-pai {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: white;
}

.video {
  position: absolute;
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-mobile {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-mobile img {
  position: relative;
  width: calc(10.4em + 10.4vw);
  z-index: 1;
}

.video img {
  position: relative;
  width: calc(10.4em + 10.4vw);
  z-index: 1;
}

.barras-mobile {
  position: absolute;
  top: 20%;
  left: 20%;
  width: calc(8.4em + 8.4vw);
  height: 100%;
  z-index: 0;
}

.barras {
  position: absolute;
  top: 25%;
  left: 20%;
  width: calc(8.4em + 8.4vw);
  height: 100%;
  z-index: 0;
}

.barra-mobile {
  height: 30px;
  background-color: #ffff00;
  width: 0;
  margin-bottom: 10.5%;
}

.barra-mobile-animada {
  height: 30px;
  background-color: #ffff00;
  width: 0;
  margin-bottom: 10.5%;
  animation: barra 0.8s ease-in forwards;
}

.barra {
  height: 50px;
  background-color: #ffff00;
  width: 0;
  margin-bottom: 10.5%;
}

.barra-animada {
  height: 50px;
  background-color: #ffff00;
  width: 0;
  margin-bottom: 10.5%;
  animation: barra 0.8s ease-in forwards;
}

.barra1 {
  animation-delay: 0s;
}

.barra2 {
  animation-delay: 0.2s;
}

.barra3 {
  animation-delay: 0.4s;
}

.barra4 {
  animation-delay: 0.6s;
}

@keyframes barra {
  0% {
    width: 0;
  }

  100% {
    padding-right: 300%;
  }
}

.seta-bees-superior {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: mover-bees-superior 2s ease-in infinite alternate;
  cursor: pointer;
}

@keyframes mover-bees-superior {
  0% {
    top: 5%;
  }

  100% {
    top: 10%;
  }
}

.texto-bees {
  width: 50vw;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.texto-bees h1 {
  font-size: calc(1.4em + 1.4vw);
  padding-top: 2%;
  padding-bottom: 2%;
}

.texto-bees h3 {
  width: 20vw;
  font-size: calc(0.6em + 0.6vw) !important;
}

.texto-bees span {
  color: #ffff00;
  background-image: linear-gradient(to left, black 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

.texto-bees button {
  background-color: black;
  color: #ffff00;
  font-weight: bold;
  border: none;
  padding-left: 2% !important;
  padding-right: 2% !important;
  padding-top: 1%;
  padding-bottom: 1%;
  margin-top: 2%;
  border-radius: 50px;
  font-size: calc(0.4em + 0.4vw);
  transition: 0.3s;
  cursor: pointer;
}

.texto-bees button:hover {
  background-color: #ffff00;
  color: black;
}

.texto-bees-animado {
  width: 50vw;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.texto-bees-animado h1 {
  font-size: calc(1.4em + 1.4vw);
  padding-top: 2%;
  padding-bottom: 2%;
}

.texto-bees-animado h3 {
  width: 20vw;
  font-size: calc(0.6em + 0.6vw) !important;
}

.texto-bees-animado span {
  color: #ffff00;
  background-image: linear-gradient(to left, black 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100%;
  animation: revealText 2s;
}

.texto-bees-animado button {
  background-color: black;
  color: #ffff00;
  font-weight: bold;
  border: none;
  padding-left: 2% !important;
  padding-right: 2% !important;
  padding-top: 1%;
  padding-bottom: 1%;
  margin-top: 2%;
  border-radius: 50px;
  font-size: calc(0.4em + 0.4vw);
  transition: 0.3s;
  cursor: pointer;
}

.texto-bees-animado button:hover {
  background-color: #ffff00;
  color: black;
}

.texto-bees-mobile {
  text-align: center;
}

.texto-bees-mobile h1 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(1.6em + 1.6vw);
  width: 60%;
}

.texto-bees-mobile h3 {
  font-size: calc(1.2em + 1.2vw);
  margin-bottom: 7%;
}

.texto-bees-mobile span {
  color: #ffff00;
  background-image: linear-gradient(to left, black 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

@keyframes revealText {
  100% {
    background-position: -100%;
  }
}

.texto-bees-mobile button {
  background-color: black;
  color: #ffff00;
  font-weight: bold;
  border: none;
  padding-top: 4%;
  padding-bottom: 4%;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 50px;
  font-size: calc(1.1em + 1.1vw);
  transition: 0.3s;
  cursor: pointer;
}

.texto-bees-mobile button:hover {
  background-color: #ffff00;
  color: black;
}

.texto-bees-animado-mobile button {
  background-color: black;
  color: #ffff00;
  font-weight: bold;
  border: none;
  padding-top: 4%;
  padding-bottom: 4%;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 50px;
  font-size: calc(1.1em + 1.1vw);
  transition: 0.3s;
  cursor: pointer;
}

.texto-bees-animado-mobile button:hover {
  background-color: #ffff00;
  color: black;
}

.texto-bees-animado-mobile {
  text-align: center;
}

.texto-bees-animado-mobile h1 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(1.6em + 1.6vw);
  width: 60%;
}

.texto-bees-animado-mobile h3 {
  font-size: calc(1.2em + 1.2vw);
  margin-bottom: 7%;
}

.texto-bees-animado-mobile span {
  color: #ffff00;
  background-image: linear-gradient(to left, black 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100%;
  animation: revealText 2s;
}

@keyframes revealText {
  100% {
    background-position: -100%;
  }
}

.texto-bees-animado-mobile button {
  background-color: black;
  color: #ffff00;
  font-weight: bold;
  border: none;
  padding-top: 4%;
  padding-bottom: 4%;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 50px;
  font-size: calc(1.1em + 1.1vw);
  transition: 0.3s;
  cursor: pointer;
}

.texto-bees-animado-mobile button:hover {
  background-color: #ffff00;
  color: black;
}

.sub-botao-mobile {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.logo-pagina-bees-mobile {
  width: calc(7.4em + 7.4vw) !important;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-pagina-bees {
  width: calc(6.4em + 6.4vw) !important;
}

@media screen and (orientation: portrait) {
  .desktop-div {
    display: none;
  }
}

@media screen and (orientation: landscape) {
  .mobile-div {
    display: none;
  }
}

/* Final Bees */
/* Final index */

/* Cookies */
#cookiePopup {
  transform: translate(-50%, 0);
  background-color: #ffffff;
  position: absolute;
  font-size: 14px;
  width: 70vw;
  max-width: 42.85em;
  box-shadow: 0 0 5em rgba(0, 0, 0, 0.15);
  font-family: "Din";
  text-align: center;
  line-height: 1.8em;
  padding: 2em 1.4em;
  border-radius: 6px;
  transition: all 0.5s ease-in;
}

#cookiePopup h1 {
  text-align: center;
  margin: 1.4em 0;
}

#cookiePopup p {
  text-align: center;
  margin: 1.4em 0;
}

#cookiePopup button {
  background-color: var(--cinza);
  border: none;
  color: #ffffff;
  font-size: 1.2em;
  padding: 1em 1.4em;
  display: block;
  position: relative;
  margin: auto;
  border-radius: 5px;
}

#cookiePopup a {
  color: blue;
}

.hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}

.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}

@media only screen and (max-width: 37.5em) {
  #cookiePopup {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hide {
    bottom: 2em;
    right: 0;
  }

  .show {
    right: 0;
    bottom: 0;
  }
}

/* Fim cookies */

/* Carousel */


.carousel-content {
  position: relative;
  overflow: visible;
}

.product-container {
  position: absolute;
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
  z-index: 2;
}

.brand-image {
  width: 25%;

  transition: transform 0.3s;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1));
}

@media screen and (max-width: 480px) {
  .brand-image {
    margin-bottom: -13%;
    width: 30%;
    margin-left: 65%;
  }
}

.brand-image:hover {
  transform: scale(1.1);
}

.product-image {
  width: 70%;
  margin-left: 250%;
  transform: rotate(40deg);
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1));
}

@media screen and (max-width: 480px) {
  .product-image {
    width: 25%;
    margin-left: 65%;
  }
}

.product-image:hover {
  transform: scale(0.5);
}

/* Fim carousel */

/* Quem somos */
.logo-quem-somos {
  margin-top: 2%;
  margin-left: 10%;
  width: 20%;
  transition: transform 0.6s;
}

.logo-quem-somos:hover {
  transform: scale(0.8);
}

.h1-quem-somos {
  font-family: "Din";
  color: var(--cinza);
  text-align: center;
  padding-top: 5%;
  padding-bottom: 5%;
  font-size: var(--tamanho-titulos);
}



.textos-quem-somos {
  padding-bottom: 5%;
}

.p-quem-somos {
  font-family: "Din";
  color: var(--cinza);
  text-align: center;
  font-size: var(--tamanho-textos);
}

.circle-container {
  display: flex;
  justify-content: center;
  padding-top: 5%;
  padding-bottom: 5%;
}

#circulos {
  padding-bottom: 15%;
}

.circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: var(--cinza);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 16px;
  font-weight: bold;
  font-family: "Din";
  position: relative;
  margin: 0 50px;
  /* Adicione um espaçamento horizontal entre os círculos */
  transition: transform 0.3s ease;
}

.circle-title {
  opacity: 1;
  transition: opacity 0.3s ease;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, top 0.3s ease;
}

.circle-content {
  opacity: 0;
  transform: translateY(20px);
  /* Faz o conteúdo aparecer de baixo */
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  width: 50%;
}

.circle:hover .circle-content {
  opacity: 1;
  /* Faz o conteúdo aparecer */
  transform: translateY(0);
  /* Faz o conteúdo subir para a posição original */
}

.circle:hover .circle-title {
  opacity: 0;
  top: 40%;
  /* Ajuste a posição vertical conforme necessário */
}


.circle:hover {
  transform: translateY(-25px);
}


/* Fim quem somos */

/* Portifólio */

.container-portifolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeDown 0.5s forwards;
  padding-bottom: 5%;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h2-portifolio {
  font-family: "Din";
  position: relative;
  font-size: 40px;
  color: var(--cinza);
  text-align: right;
  /* Alinha o h2 à direita */
  padding-top: 2%;
  padding-bottom: 3%;
  margin-left: 17%;
}

@media screen and (max-width: 480px) {
  .h2-portifolio {
    font-size: 25px;
    margin-left: 10%;
  }
}

@media screen and (max-width: 380px) {
  .h2-portifolio {
    font-size: 25px;
    margin-left: 6%;
  }
}

.texto-filtro-portifolio {
  display: flex;
  justify-content: space-between;
  /* Posiciona o filtro à direita e o h2 à esquerda */
  align-items: center;
}

.filtro-portifolio {
  position: absolute;
  text-align: left;
  /* Alinha o filtro à esquerda */
  margin-left: 74%;
}

@media screen and (max-width: 480px) {
  .filtro-portifolio {
    position: absolute;
    margin-left: 56%;
  }
}

.container-6 {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .container-6 {
    position: relative;
    margin-left: 0%;
  }
}

@media screen and (max-width: 380px) {
  .container-6 {
    position: relative;
    margin-left: 0%;
  }
}

.quadrado {
  margin-top: -30%;
  width: 150px;
  height: 150px;
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, filter 0.2s;
  margin: 15px;
}


.quadrado:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.logo-portifolio {
  transition: filter 0.3s;
}

.logo-portifolio:hover {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}


.quadrado img {
  max-width: 100%;
  max-height: 100%;
}

/* Final Portifólio */

/* Localização */


.container-loc{
  display: flex;
}

.container-mapa{
  width: 50vw;
  margin: auto;
  justify-content: center;
  display: grid;
}

.mapa {
    width: 50vw;
    height: 89vh;
}

.circulo-loc{
  width: 150px;
  height: 150px;
  border: 7px solid var(--cinza);
  border-radius: 100px;
  display: flex;
  margin: auto;
  transition: 0.2s;
}

.circulo-loc:hover{
  background-color: var(--cinza);
}

.circulo-loc i{
  transition: 0.2s;
}

.circulo-loc:hover i{
  color: var(--branco);
}

.icone-loc{
  transform: scale(1.8);
  color: var(--cinza);
  display: flex;
  align-items: center;
  margin: auto;
}

.itens-loc{
  display: flex;
  text-align: center;
}

.item-loc{
  width: 400px;
}

.item-loc h3{
  margin-top: 20px;
}

@media screen and (orientation: portrait) {
  .itens-loc{
    display: block !important;
  }

  .item-loc{
    margin-bottom: 30px;
  }

  .container-loc{
    display: grid;
    margin-top: 50px;
  }

  .mapa{
    width: 100vw;
    margin-top: 50px;
  }

  .circulo-loc {
    width: 100px;
    height: 100px;
}
}

/* Fim localização */

/* Fotos */

#img-fotos {
  max-width: 100%;
  width: 600px;
  height: 395px;
  object-fit: cover;
}

.titulo-galeria {
  font-size: var(--tamanho-titulos);
  padding: 5%;
  font-family: "Din";
  text-align: center;
  font-weight: bold;
}

.container-fotos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 950px;
  height: 700px;
  margin: 0 auto;
}

.gallery-item {
  margin: 1%;
  max-width: 50%;
  max-height: 50%;
  width: 45%;
  height: 45%;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.fullscreen-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media screen and (max-width: 480px) {
  .gallery-item img {
    width: 100%;
    height: 100%;
  }
}

.fullscreen-image.show {
  opacity: 1;
  pointer-events: auto;
}

.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.pagination a {
  font-family: "Din";
  background-color: var(--cinza);
  color: var(--branco);
  text-decoration: none;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.6s;
}

.pagination a.active {
  background-color: var(--cinza);
  color: white;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
  color: var(--cinza);
  border: none;
}

/* Final fotos */

/* Eventos */

#img-eventos {
  max-width: 100%;
  width: 600px;
  height: 395px;
  object-fit: cover;
}

.eventos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5% 15%;
  margin-top: 0%;
}

.evento-content {
  text-align: center;
  margin-bottom: 20px;
}

.titulo-eventos {
  font-size: var(--tamanho-titulos);
  padding: 2%;
  font-family: "Din";
  text-align: center;
  font-weight: bold;
}

.h1-evento {
  padding: 2%;
  font-family: "Din";
  margin-bottom: 0;
  font-size: var(--tamanho-subtitulos);
}

.img-evento {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 60%;
  max-height: 60%;
  width: 50%;
  height: 50%;
  object-fit: cover;
  transition: transform 0.3s;
}

.img-evento:hover {
  transform: scale(1.05);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 2%;
}

.page-link {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 5px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-link:hover {
  background-color: #ddd;
}

.page-link.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* Final eventos */

/* Vizualização eventos */

.container-vizu-eventos {
  position: relative;
  padding-bottom: 5%;
}

.imagem-evento {
  width: 40%;
  margin-left: 58%;
  margin-top: -50%;
  border-radius: 30px;
  border-color: solid #000;
}

.textos-eventos {
  font-size: var(--tamanho-textos);
  padding-left: 3%;
}

.textos-eventos h1 {
  font-size: var(--tamanho-titulos);
  font-weight: bold;
  margin-bottom: 2%;
  padding-bottom: 3%;
}

@media (max-width: 768px) {
  .container-vizu-eventos {
    position: relative;
    padding-bottom: 5%;
    margin-top: -18%;
  }

  .textos-eventos h1 {
    padding-bottom: 5%;
  }

  .imagem-evento {
    width: 80%;
    margin-left: 12%;
    margin-top: 0;
  }

  .textos-eventos {
    text-align: center;
  }
}

/* Final Vizualização eventos */

/* Pagina bees */

.pagina-bees {
  margin-top: -5%;
}

.celular-pagina-bees {
  width: 17%;
  transform: rotate(-10deg);
  margin-top: 7%;
  margin-right: 20%;
  animation: moveUpDown 4s infinite alternate;
}

@media screen and (max-width: 480px) {
  .celular-pagina-bees {
    width: 0%;
  }
}

@keyframes moveUpDown {
  0% {
    transform: rotate(-10deg) translateY(0);
  }

  50% {
    transform: rotate(-10deg) translateY(-15px);
  }

  100% {
    transform: rotate(-10deg) translateY(0);
  }
}

.h1-pagina-bees {
  margin-left: 0%;
  padding-top: 9%;
  font-size: var(--tamanho-titulos);
}

.h2-pagina-bees {
  font-size: var(--tamanho-textos);
}

@media screen and (max-width: 480px) {
  .h1-pagina-bees {
    text-align: center;
    margin-left: 0%;
    padding-top: 9%;
    font-size: var(--tamanho-titulos);
  }

  .h2-pagina-bees {
    text-align: center;
    font-size: var(--tamanho-textos);
  }

  .celular-pagina-bees {
    display: none;
  }
}

.logo-pagina-bees {
  width: 100px;
}

.texto-pagina-bees {
  padding-top: 2%;
  margin-left: 0%;
}

.download-buttons-pagina-bees {
  margin-left: 0%;
  padding-top: 3%;
  padding-bottom: 5%;
}

.google-pagina-bees {
  width: 210px;
  height: auto;
  padding-right: 2%;
  transition: transform 0.3s;
}

.google-pagina-bees:hover {
  transform: scale(1.2);
}

.apple-pagina-bees {
  width: 190px;
  height: auto;
  transition: transform 0.3s;
}

.apple-pagina-bees:hover {
  transform: scale(1.2);
}

/* Final pagina bees */

/* Trabalhe */

.main-trabalhe {
  padding-top: 8%;
  padding-bottom: 8%;
}

.card-trabalhe {
  background: rgba(211, 211, 211, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(211, 211, 211, 0.3);
  opacity: 1;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 60px;
}

.input-curriculo {
  padding: 1% 5%;
  border-radius: 30px;
  border: 1px solid #323232;
}

.select-curriculo {
  padding: 1% 5%;
  border-radius: 30px;
}

.button-curriculo {
  padding: 1% 5%;
  border-radius: 30px;
  background-color: #323232;
  color: white;
  border: #323232;
}

.erro-curriculo {
  animation: shake 1s;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2px, 2px);
  }

  20% {
    transform: translate(1px, -1px);
  }

  30% {
    transform: translate(-1px, 1px);
  }

  40% {
    transform: translate(2px, -2px);
  }

  50% {
    transform: translate(-1px, 1px);
  }

  60% {
    transform: translate(1px, -1px);
  }

  70% {
    transform: translate(-2px, 2px);
  }

  80% {
    transform: translate(1px, -1px);
  }

  90% {
    transform: translate(-1px, 1px);
  }

  100% {
    transform: translate(0, 0);
  }
}


/* Final Trabalhe */

/* Login */

.main-login {
  padding-top: 15%;
  padding-bottom: 15%;
}

.container-login {
  text-align: center;
  max-width: 50%;
  background-color: var(--cinza);
  border-radius: 10px;
}

/* Fim Login */

/* Footer (Rodapé) */

@media screen and (orientation: landscape) {
  .quadrado-2-footer p {
    display: none !important;
  }

  .links {
    padding-right: 15% !important;
  }

  .logo-texto {
    margin-left: 15% !important;
  }

  .conteudo-footer {
    display: flex !important;
  }

  .svg-footer {
    /* margin-top: 10%;
    display: flex;
    margin: auto; */
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    animation: animar-footer-desktop 2s ease-in infinite alternate !important;
  }

  @keyframes animar-footer-desktop {
    0% {
      margin-top: 0%;
    }

    100% {
      margin-top: 1%;
    }
  }
}

@media screen and (orientation: portrait) {
  .logo-texto {
    width: 80% !important;
    padding-top: 27% !important;
    text-align: center;
    margin: auto;
  }

  .logo-texto p {
    font-size: calc(0.9em + 0.9vw) !important;
  }

  .links {
    margin: auto !important;
    padding-top: 7% !important;
    text-align: center !important;
  }

  .links a {
    font-size: calc(0.9em + 0.9vw) !important;
  }

  .logo-footer {
    width: calc(6.5em + 6.5vw) !important;
  }

  .quadrado-1-footer p {
    display: none;
  }

  .quadrado-1-footer .redes {
    left: 50% !important;
  }
}

#custom-footer {
  background-color: #434343;
  height: 100vh;
}

.footer-link {
  text-decoration: none;
  color: #FFF;
}

#link-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-texto {
  width: 30%;
  padding-top: 5%;
}

.links {
  margin-left: auto;
  padding-top: 7%;
  text-align: end;
}

.links a {
  color: white;
  text-decoration: none;
  font-size: calc(0.5em + 0.5vw);
  transition: 0.1s;
}

.links a:hover {
  color: grey;
}

.logo-texto p {
  margin-top: 10%;
  color: #FFF;
  font-size: calc(0.5em + 0.5vw);
}

.logo-footer {
  width: calc(4.5em + 4.5vw);

}

.quadrado-1-footer {
  width: 100%;
  height: 5%;
  background-color: #323232;
  margin-top: 0;
}

.quadrado-1-footer p {
  position: absolute;
  left: 40%;
  top: 30%;
  transform: translate(-50%, -50%);
}

.quadrado-1-footer .redes {
  position: absolute;
  left: 60%;
  top: 30%;
  transform: translate(-50%, -50%);
}

.quadrado-1-footer .redes img {
  padding-right: 4%;
  transition: 0.3s;
  cursor: pointer;
}

.quadrado-1-footer .redes img:hover {
  scale: 1.1;
}

.quadrado-2-footer {
  display: flex;
  width: 100%;
  height: 2%;
  background-color: #232323;
  margin-top: 0;
}

.quadrado-2-footer p {
  text-align: center;
  display: flex;
  margin: auto;
}

.svg-footer {
  /* margin-top: 10%;
  display: flex;
  margin: auto; */
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  animation: animar-footer 2s ease-in infinite alternate;
  cursor: pointer;
}

@keyframes animar-footer {
  0% {
    margin-top: 5%;
  }

  100% {
    margin-top: 10%;
  }
}

/* Fim footer */