/* Diseño general para la sección */
#retiro-escombros {
    background-color: #f7f7f7;
    padding: 60px 0;
  }
  
  #retiro-escombros h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #retiro-escombros p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  /* Estilo de las tarjetas */
  .card {
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .card:hover .card-img-top {
    transform: scale(1.05);
  }
  
  .card-body {
    padding: 30px;
    text-align: center;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
  }
  
  .card-text {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
  }
  
  .btn {
    border-radius: 50px;
    font-weight: bold;
    padding: 12px 30px;
    text-transform: uppercase;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  