/* Fundo preto já é padrão com bg-black do Bootstrap */
.nav{
    position: fixed;
}
.nav-link {
    color: white !important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  
  /* Sublinhado apenas no item ativo */
  .nav-link.active::after,
  .nav-link:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    bottom: 0;
    left: 0;
  }
  
  /* Remover sublinhado dos inativos */
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: white;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
  }
  
  /* Efeito hover */
  .nav-link:hover::after {
    width: 100%;
  }
  
  .hero-section {
    min-height: 100vh;
    background: linear-gradient(to right, #000 50%, rgba(0, 0, 0, 0.5)), url('Cream\ and\ Brown\ Photographic\ Beauty\ Site\ Launch\ Website.png') right center no-repeat;
    background-size: cover;
  }
  
  .text-highlight {
    color: #d4a237;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .btn-outline-custom {
    border: 1px solid #d4a237;
    color: #fff;
    padding: 0.5rem 1.25rem;
    transition: 0.3s;
  }
  
  .btn-outline-custom:hover {
    background-color: #d4a237;
    color: #000;
  }
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none; /* Impede sublinhado */
    border: none;
  }
  
  .whatsapp-float i {
    text-decoration: none; /* Remove sublinhado do ícone */
    line-height: 1;
  }
  
  .whatsapp-float:hover {
    background-color: #1ebc57;
    text-decoration: none;
    transform: scale(1.1);
  }

  .sobre-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
  }
  
  .container-sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .sobre-imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .sobre-texto {
    max-width: 600px;
    background-color: #111;
    padding: 40px;
    border-radius: 8px;
  }
  
  .sobre-texto h2 {
    color: #d4a857;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
  }
  
  .sobre-texto p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
  }
  .btn-gold {
    background-color: #bfa05a;
    color: #000;
    border: none;
    transition: background-color 0.3s ease;
  }

  .btn-gold:hover {
    background-color: #a88e4f;
  }

  .form-control:focus {
    border-color: #bfa05a;
    box-shadow: 0 0 0 0.2rem rgba(191, 160, 90, 0.25);
  }

  .form-check-input:checked {
    background-color: #bfa05a;
    border-color: #bfa05a;
  }
  .text-gold {
    color: #bfa05a;
  }
  .text-gold {
    color: #bfa05a;
  }
  .border-gold {
    border: 2px solid #bfa05a !important;
  }
  .social-icon {

    color: #000000;
    padding: 5px 7px;
    margin-left: 5px;
    border-radius: 3px;
    font-size: 1.2rem;
    text-decoration: none;
  }
  
  .social-icon:hover {
    background-color: #f5d599;
    color: black;
  }
    
  .carousel-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* controla a opacidade da imagem */
  z-index: 1;
}

.carousel-slide > div {
  position: relative;
  z-index: 2;
}
