.header-custom {
  background: linear-gradient(135deg, #000000, #2c00ad);
  }

  .navbar .nav-link {
    transition: color 0.3s ease;
  }

  .navbar .nav-link:hover {
    color: #ffc107 !important;
  }

  .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  
  .footer-custom {
background: linear-gradient(135deg, #000000, #2c00ad);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }

  .footer-custom a:hover {
    text-decoration: underline;
  }
  
  /* Estilo do Hero */
  .hero-section {
    background-image: url('https://images.unsplash.com/photo-1698047681452-08eba22d0c64?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .hero-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  /* Estilo da seção Sobre Nós */
  #sobre {
    background-color: #ffffff;
  }
  
  /* Estilo da seção Contato */
  #contato {
    background-color: #f8f9fa;
  }
    
  .loja-bg {
    background: #f8f9fa;
  }

  .card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
  }

  .card-title {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  .btn-enviar {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
    transition: all 0.3s ease;
  }
  
  .btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contato-info {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .contato-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #0d6efd;
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
  }

#imagemModal .modal-content {
  background-color: rgba(0, 0, 0, 0.92);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
}

#imagemModal .modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#imagemModal .modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

#imagemModal .modal-body img:hover {
  transform: scale(1.02);
}

#imagemModal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease-out;
}

#imagemModal.fade.show .modal-dialog {
  transform: scale(1);
}
.card-img-custom {
  width: 360px;
  height: 320px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
