/* style-inicio.css */

/* Sección Hero */
.hero {
    background-image: url("/imagen/fondo-hero.jpg");box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    position: relative;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  /* Servicios Destacados */
  .services-featured {
    padding: 50px 0;
    background-color: #ffffff;
  


  }
  
  .services-featured h2 {
    text-align: center;
    margin-bottom: 30px;box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5);
    color: #0b0147;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5);
    gap: 20px;box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5); 
    
  }
  
  .service {
    text-align: center;
    padding: 20px;
    gap: 30px;box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5);
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .service i {
    font-size: 3rem;
    color: #0b0147;
    margin-bottom: 10px;
  }
  
  /* Llamada a la acción (CTA) */
  .cta {
    padding: 50px 0;
    background-color: #f8f8f8;
    text-align: center;
    display: flex;box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5);
    flex-direction: column;
    align-items: center;box-shadow: 0 2px 10px rgba(10, 10, 10, 0.5);
  }
  
  .cta-content {
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    .cta {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
  
    .cta-content {
      margin-bottom: 0;
      flex: 2;
    }
  
    .cta-button {
      flex: 1;
      text-align: right;
    }
  }
