.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .service {
    width: calc(100% - 20px);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center; /* Centrar contenido dentro del servicio */
  }
  
  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 8px rgba(0, 0, 0, 0.2);
  }
  
  .service h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
  }
  .service p {
    text-align: center;
  }
  
  .service p {
    font-size: 14px;
    color: #666;
  }
  
  .service .icon {
    margin: 0 auto 15px auto; /* Margen superior 0, inferior 15px, y auto a los lados para centrar */
    display: flex; /* Cambiar a flex */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    border-radius: 50%; /* Hace que el elemento sea circular */
    width: 60px; /* Ancho de 60px */
    height: 60px; /* Altura de 60px */
    font-size: 35px; /* Tamaño del icono */
    line-height: 1; /* Ajusta la altura de línea para el icono */
    background-color: #fceef3; /* Añadido para consistencia */
  }
  
  
  /* Estilos específicos para colores y efectos */
  .service:nth-child(odd) {
    background-color: #ffffff;
  }
  
  .service:nth-child(even) {
    background-color: #ffffff;
  }
  
  .service:hover h4 {
    color: #28abe3;
  }
  
  .service:hover p {
    color: #888;
  }
  
  @media (min-width: 768px) {
    .service {
      width: calc(50% - 20px);
    }
  }
  
  @media (min-width: 992px) {
    .service {
      width: calc(33.333% - 20px);
    }
  }
  #carrusel {
    width: 100%;
    height: 450px;
  }
  
  
  /* Estilo para el carrusel en dispositivos móviles */
  @media only screen and (max-width: 767px) {
    #carrusel {
      height: auto;
    }
  }
  