/* Menu */

.nav-link {
  color: white;
}

.nav-link:hover {
  color: #141414;
}


/* # Hero Section */

.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item::before {
  content: "";
  background-color: #00000081;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 3rem;
  color: #e2e2e2;
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  color: #e2e2e2;
  max-width: 60%;
}
/* Icones Setas Trocam Slides  */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  background: none;
  font-size: 2rem;
  line-height: 0;
  width: 10%;
  transition: 0.3s;
  opacity: 0.3;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover { 
  opacity: 0.9;
  color: #0b78e6;
  transition: 0.3s;
  line-height: 0;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus { 
  opacity: 0.5;
  line-height: 0;
}

.carousel-indicators .active {
    background-color: #0b78e6; /* cor do indicador ativo */
}


/* Call to Action */
.cta {
  padding: 7.25rem 0;
  position: relative;
  clip-path: inset(0); /* Recorte */
}

.cta img {
  display: block;
  position: fixed;
  /* Posição */
  top: 0;
  right: 0;
  width: 100%; /* largura */
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 3;
}

/* Filtro Antes da Foto */
.cta::before {
  content: "";
  background: #3a3a3a79;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.cta .cta-btn {
  font-size: 1.4rem;
  color: azure;
  /* background: green; */
  text-decoration: none;
  padding: 0.8rem 2.5rem;
  border-radius: .5rem;
  transition: .5s;
  letter-spacing: 1px;
  font-weight: 400;
  border: 2px solid azure;
}

.cta-btn {
    margin-top: 20px; /* Ajuste o valor conforme necessário */
}

.cta .cta-btn:hover {
  /* filter: brightness(80%); */
  background: green;
  border: none;
/*   box-shadow: 1px 1px 15px 5px #0000003d; */
}


/* Filtros */

/* UL */
.portfolio-filters { 
  list-style: none;
  margin: 10px auto 20px auto;
  text-align: center;
}

/* Herança = Todas as Li's da UL */
.portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  text-align: center;
  /* background: #0790df; */
  color: #0790df;
  padding: 0rem 0.2rem;
  border-radius: 0.2rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  filter: brightness(95%);
  background: #0b75de;
  color: #fff;
}

/* O site em telas até 575px */
@media (max-width: 575px) {
  .portfolio-filters li {
    font-size: 1rem;
  }
}


.portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #0000005f;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}


/* icone Lupa Zoom = Link = (a href) da IMG  */
.portfolio-content .portfolio-info .preview-link {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio-content:hover img {
  transform: scale(1.1);
}

.portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio-content img {
  transition: 0.3s;
}