*{
  box-sizing: border-box;
}
.about-us {
    background-color: #f8f9fa;
}

.about-us img {
    transition: transform 0.3s ease-in-out;
}

.about-us img:hover {
    transform: scale(1.05);
}

.about-us .list-unstyled li {
    margin-bottom: 10px;
}

.about-us .btn-primary {
    transition: all 0.3s ease;
}

.about-us .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/*----------Estilo do rodape------------*/

.btn-primary {
    background-color: #FF7300;  /* Nova cor */
    border-color: #FF7300;
  }
  
  .btn-primary:hover {
    background-color: #e06600;  /* Cor no hover */
    border-color: #e06600;
  }






  .testimonial-card {
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    transition: transform .3s, box-shadow .3s;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  }
  .testimonial-card .card-body {
    padding: 2rem;
  }
  .testimonial-card .avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

.card {
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
