.img-ciber {
  max-height: 150px; 
  object-fit: cover;
}

/* Estilos carousel */
.carousel-slide {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.carousel-content {
  text-align: center;
  max-width: 1200px;
  width: 100%;
}

.carousel-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.case-details h4 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.case-details .lead {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.damage-list {
  text-align: left;
  font-size: 1rem;
  list-style: disc;
  padding-left: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.damage-list li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide {
    height: auto;
    min-height: 400px;
    padding: 20px 15px;
  }
  
  .carousel-content {
    max-width: 100%;
  }
  
  .carousel-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .case-details h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  
  .case-details .lead {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .damage-list {
    font-size: 0.9rem;
    max-width: 100%;
    padding-left: 15px;
  }
  
  .damage-list li {
    margin-bottom: 8px;
  }
}