/* Estilos generales del footer */
.footer {
    background: linear-gradient(135deg, #eb1b1b, #f10413); /* Degradado rojo */
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
  }
  
  .footer::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
  }
  
  .footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffcc00; /* Línea decorativa amarilla */
  }
  
  .footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* Sección "About" */
  .footer-section.about .logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
  }
  
  .footer-section.about .contact span {
    display: block;
    margin: 10px 0;
    font-size: 0.9rem;
  }
  
  .footer-section.about .contact i {
    margin-right: 10px;
    color: #ffcc00; /* Amarillo para los iconos */
  }
  
  /* Sección "Enlaces Rápidos" */
  .footer-section.links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section.links ul li {
    margin-bottom: 10px;
  }
  
  .footer-section.links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section.links ul li a:hover {
    color: #ffcc00; /* Amarillo al hacer hover */
  }
  
  .footer-section.links ul li i {
    margin-right: 5px;
    color: #ffcc00; /* Amarillo para las flechas */
  }
  
  /* Sección "Redes Sociales" */
  .footer-section.social .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .footer-section.social .social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .footer-section.social .social-icons a:hover {
    color: #ffcc00; /* Amarillo al hacer hover */
    transform: translateY(-5px); /* Efecto de elevación */
  }
  
  /* Footer Bottom (Derechos de autor) */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      margin-bottom: 40px;
    }
  
    .footer-section.links ul li {
      margin-bottom: 15px;
    }
  
    .footer-section.social .social-icons {
      justify-content: center;
    }
  }