:root {
  --roxo: #6a0dad;
  --verde-neon: #36f57f;
  --preto: #000000;
  --branco: #ffffff;
  --cinza-claro: #d5d0ca;
  --cinza-escuro: #1e1e1e;
  /*--bs-navbar-color: var(--verde-neon);*/
}

.navbar-toggler-icon {
  color: #36f57f;
}

body {
  font-family: Inter, Roboto, sans-serif;
  background-color: var(--cinza-claro);
  color: var(--preto);
}

h1,
h2,
h3 {
  font-family: Montserrate, Poppins, sans-serif;
}

.font-montserrat {
  font-family: Montserrat, serif;
}

.font-poppins {
  font-family: Poppins, serif;
}

.font-inter {
  font-family: Inter, sans-serif;
}

.font-roboto {
  font-family: Roboto, sans-serif;
}

.cor-roxo {
  color: var(--roxo);
}

.cor-verde-neon {
  color: var(--verde-neon);
}

.cor-preto {
  color: var(--preto);
}

.cor-branco {
  color: var(--branco);
}

.cor-cinza-claro {
  color: var(--cinza-claro);
}

.cor-cinza-escuro {
  color: var(--cinza-escuro);
}

section {
  scroll-margin-top: 3rem;
}

.subtitulo-secao {
  font-size: 18px;
  font-weight: 900;
}

#barraNavegacao {
  background-color: black;
}

.nav-link {
  color: white;
}

.nav-link:focus {
  color: white;
}

.nav-link:hover {
  color: var(--verde-neon);
}

.hero {
  background-image: url("hero-marketing.jpg");
  /* Imagem adicionada para a seção Hero */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Efeito Parallax simples */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

#textoHero {
  margin-top: 66px;
  max-width: 700px;
}

#btnContato {
  background-color: var(--roxo);
  border: 1px solid var(--roxo);
}

#btnContato:hover {
  color: black;
  background-color: var(--verde-neon) !important;
}

#btnServicos {
  color: white;
  border-color: var(--roxo);
}

#btnServicos:hover {
  color: black;
  background-color: var(--verde-neon) !important;
}

@media only screen and (max-width: 600px) {
  .hero {
    align-items: center;
  }

  #imgSobre {
    margin-top: 0 !important;
  }

  .mySlides {
    height: fit-content !important;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
}

#imgSobre {
  border: 2px solid black;
  margin-top: 60px;
}

.section-title {
  color: var(--preto);
  margin-bottom: 30px;
  font-weight: bold;
}

.card-icon-div {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, var(--roxo), var(--verde-neon));
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.card-icon-div.bg-2 {
  background: linear-gradient(to bottom right, var(--cinza-escuro), var(--cinza-claro));
}

.card-icon {
  font-size: 2rem;
  color: white;
}

.card-title {
  font-family: Montserrate, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 13px 0 13px 0;
}

.service-card {
  background-color: white;
  border: none;
  height: 100%;
  box-shadow: var(--bs-box-shadow) !important;
  transition: transform 0.3s;
  margin-bottom: 1.5rem;
}

.service-card:hover {
  transform: translateY(-10px);

  .card-icon-div {
    transform: scale(1.1);
  }

  h5 {
    color: var(--roxo);
  }
}

.work-card {
  height: 258px;
  box-shadow: var(--bs-box-shadow) !important;
  position: relative;
  /* Essencial para posicionar o overlay */
  overflow: hidden;
  /* Garante que o texto escondido não vaze */
  /* Adiciona uma transição suave para um efeito mais profissional */
  transition: background-color 0.3s ease;
}

.work-card-title {
  font-family: "Open Sauce", serif;
  text-transform: uppercase;
}

.work-card:hover {
  cursor: zoom-in;
  background-color: #e0e0e0;
}

/* Estilo do Overlay (Texto Escondido) */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 141, 86, 0.8);
  /* Fundo semi-transparente */
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  padding: 10px;
  padding-bottom: 30px;
  /* Estado Inicial: Escondido */
  opacity: 0;
  visibility: hidden;
  /* Transição para a animação do hover */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* O EFEITO HOVER: Quando o mouse entra no .card, altere o .card-overlay */
.work-card:hover .card-overlay {
  opacity: 1;
  /* Torna o texto totalmente visível */
  visibility: visible;
  /* Garante que o elemento está visível */
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1500;
  padding-top: 66px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: white;
  margin: 0 50px 0 50px;
  padding: 0;
  width: calc(100vw - 115px);
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--roxo);
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
  height: 500px;
  background-color: var(--preto);
  overflow-y: auto;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  text-decoration: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: var(--roxo);
}

/* Number text (1/3 etc) */
.numbertext {
  color: white;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: var(--cinza-claro);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: var(--roxo);
}

.card-depoimento {
  text-align: center;
  cursor: pointer;
}

.fa-star {
  transition: all 0.3s ease-out;
}

.card-depoimento:hover .fa-star {
  /* Aumentar Tamanho (usando 'transform: scale()') */
  transform: scale(1.5);
  margin-right: 0.5rem;
}

.testimonial {
  font-style: italic;
  margin-bottom: 0;
}

.btn-contato {
  background-color: var(--roxo);
  width: 48px;
  height: 48px;
  margin-right: 1rem;
}

.btn-contato i {
  font-size: 1.5rem;
  color: white;
}

.div-contato:hover{
  button {
    /* border: 1px solid black; */
    background-color: var(--verde-neon);

    i {
      color: black;
    }
  }
}

#btnWhatsApp {
  width: 4rem;
  height: 4rem;
  background-color: #25D366;
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

#btnWhatsApp:hover {
  transform: scale(1.1);
}

footer {
  background-color: var(--preto);
  color: white;
}

/* Animations */
.animate-bolt {
  animation: flash 2s infinite;
}

@keyframes flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}