/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5 {
    font-weight: 700;
  }
  
  /* Hero Section */
  .hero {
    background: url('../img/about-banner.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    color: #ffffff; /* Cambiado de azul a blanco */
    animation: fadeInDown 1.5s ease;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #fff;
    animation: fadeInUp 1.5s ease;
  }
  
  /* Secciones */
  section {
    padding: 60px 0;
  }
  
  .bg-light {
    background-color: #f8f9fa;
  }
  
  /* Header y Navbar */
  .header-top {
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .nav-link {
    font-weight: 500;
  }
  
  /* Diferenciadores */
  .bi {
    margin-bottom: 10px;
  }
  
  /* Footer */
  footer {
    font-size: 0.9rem;
  }
  
  /* WhatsApp Float */
  .whatsapp-float img {
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float img:hover {
    transform: scale(1.1);
  }
  
  /* Redes Sociales */
  .social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
  }
  
  .social-icons a {
    display: block;
    margin: 5px;
  }
  
  .social-icons img {
    width: 32px;
    height: 32px;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .navbar-collapse {
      background-color: #f77b00;
      padding: 10px;
    }
  }
  .card-service {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    padding: 20px;
  }
  
  .card-service:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card-service img {
    border-radius: 8px;
    margin-bottom: 15px;
  }
  