
.page-section {
    background-color: #f8f9fa; /* cor clara para fundo */
    border-top: 4px solid #E10600; /* vermelho alerta no topo */
    border-bottom: 4px solid #E10600; /* vermelho alerta na base */
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }
  
  .page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #E10600, #7D7D7D); /* degrade da tua paleta */
  }
  
  .page-section h2 {
    color: #E10600;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .page-section p.lead {
    color: #7D7D7D; /* cinza aço */
  }
  
  .page-section .card {
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .page-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  #page-section-caracteristicas{
    background-color: #2c3e50 !important;
    color: white !important;
  }

  #page-section-especificacoes{
    background-color: #2c3e50 !important;
    color: white !important;
  }

  .fab-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
    padding-top: 7px;
  }
  
  .fab-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
  }
  
  .fab-whatsapp i {
    line-height: 60px;
  }
  
.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgb(61 55 55) !important;
}