/* Estilos personalizados */
html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  /* Estilo para o header */
  .header {
    background-color: #000000; /* Roxo principal */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    border: 4px solid #6a0dad; /* Borda roxa */
  }
  
  .header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .header p {
    font-size: 1.5rem;
  }
  
  /* Estilo para a navbar */
  .navbar {
    background-color: #4b0082; /* Roxo escuro */
    font-family: 'Poppins', sans-serif;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 1.3rem;
    padding: 10px 15px;
    transition: color 0.3s ease;
  }
  
  .navbar .navbar-nav .nav-link:hover {
    color: #9370db; /* Roxo médio */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }
  
  /* Estilo para seções */
  .section-heading {
    color: #6a0dad; /* Roxo principal */
    text-align: center;
    margin-bottom: 50px;
  }
  
  /* Estilo para ícones e imagens */
  .feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    color: #6a0dad; /* Roxo principal */
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
  }
  
  .text-muted {
    font-size: 1rem;
    color: #666;
  }
  
  #crowico {
    width: 90px;
  }
  
  @media (min-width: 768px) {
    .feature-item {
      height: 100%;
    }
  }
  
  footer {
    background-color: #000000; /* Roxo escuro */
    color: white;
  }
  
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #6a0dad; /* Roxo principal */
    border-radius: 0px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: rgba(106, 13, 173, 0.36); /* Roxo com transparência */
  }
  
  #ico-ftr {
    width: 50px;
    margin-right: 10px;
  }
  
  #ico-ftr:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  
  /* Estilos para a seção de avaliações */
  #reviews {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .review-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .review-title {
    font-size: 1.5rem;
    color: #6a0dad; /* Roxo principal */
    margin-bottom: 10px;
  }
  
  .star-rating {
    color: #9370db; /* Roxo médio */
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .review-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .review-date {
    font-size: 0.9rem;
    color: #666;
  }
  
  .star-rating .fa-star {
    margin-right: 2px;
  }
  
  /* Estilo para a seção de Segurança */
  #security {
    background-color: #4b0082; /* Roxo escuro */
    padding: 80px 0;
  }
  
  #security .section-heading {
    margin-bottom: 50px;
    color: #9370db; /* Roxo médio */
    text-align: start;
  }
  
  #security .row {
    margin-bottom: 30px;
  }
  
  #security .col-auto {
    text-align: start;
  }
  
  #security .col {
    align-self: start;
  }
  
  #security .text-muted {
    font-size: 1.2rem;
    text-align: start;
  }
  
  #danger {
    padding-top: 30px;
  }
  
  #final {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  #final .section-heading {
    color: #6a0dad; /* Roxo principal */
  }
  
  #final .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .button-wrapper {
    margin-top: 30px;
  }
  
  .button-wrapper .btn {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #6a0dad; /* Roxo principal */
    border-color: #6a0dad; /* Roxo principal */
  }
  
  .button-wrapper .btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: top 0.3s ease;
    z-index: -1;
  }
  
  .button-wrapper .btn:hover::before {
    top: 0;
  }
  
  @keyframes purpleGradient {
    0% { color: #6a0dad; } /* Roxo principal */
    25% { color: #9370db; } /* Roxo médio */
    50% { color: #4b0082; } /* Roxo escuro */
    75% { color: #8a2be2; } /* Roxo vibrante */
    100% { color: #6a0dad; } /* Volta ao roxo principal */
  }
  
  .animated-text {
    animation: purpleGradient 2s infinite;
  }