
  /* ====== RESET ====== */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif;}

header h1{
  display: none;
}
    .logo img {
      height: 60px;
      transition: transform 0.3s;
    }
    .logo img:hover { transform: scale(1.1); }

    nav {
      display: flex;
      align-items: center;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 25px;
      align-items: center;
      transition: left 0.4s ease-in-out, backdrop-filter 0.4s;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: 5px;
      transition: background 0.3s, color 0.3s;
    }

  /*  .nav-links a:hover {
      background: #ffd700;
      color: #1a1a1a;
    }*/

    /* ====== DROPDOWN ====== */
    .dropdown .dropdown-toggle::after {
      content: "\f078";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin-left: 8px;
      font-size: 12px;
      transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle::after {
      transform: rotate(180deg);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #1a1a1a;
      border-radius: 5px;
      overflow: hidden;
      min-width: 160px;
      transform-origin: top;
      animation: slideDown 0.3s ease forwards;
    }

    .dropdown-content a {
      color: #fff;
      padding: 12px 16px;
      display: block;
      transition: background 0.3s;
    }

    .dropdown-content a:hover {
      background: #1500C4;
      color: #1a1a1a;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hover PC */
    @media (min-width: 769px) {
      .dropdown:hover .dropdown-content { display: block; }
    }

    /* ====== ICONOS SOCIALES ====== */
    .header-socials {
      display: flex;
      gap: 15px;
    }

    .header-socials a {
      color: #fff;
      font-size: 18px;
      transition: color 0.3s, transform 0.3s;
    }

    .header-socials a:hover {
      color: #2E00B4;
      transform: translateY(-2px);
    }

    /* ====== HAMBURGER ====== */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1100;
    }

    .hamburger span {
      width: 30px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) { opacity: 0; }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }


    @keyframes fadeSlideIn {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(26,26,26,0.9);
        backdrop-filter: blur(6px);
        width: 75%;
        height: 100vh;
        /*border-bottom: 2px solid#A3A3A3;*/
      }

      .nav-links.active { left: 0; }

      .nav-links li {
        margin: 20px 0;
        border-bottom: 2px solid#A3A3A3;
      }

      .dropdown-content {
        position: static;
        display: none;
        background: rgba(50,50,50,0.95);
        width: 100%;
      }

      .dropdown.active .dropdown-content {
        display: block;
        animation: slideDown 0.3s ease forwards;
      }

      .header-socials {
        margin-top: 40px;
      }

      .hamburger { display: flex; }
    }

    main {
      padding: 40px 20px;
      text-align: center;
    }
    
    
    
    
    
    
    footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 60px 30px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  color: #6F00FF;
  margin-bottom: 18px;
  font-size: 1.2rem;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #30005A;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-column p {
  color: #ccc;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
}

.footer-column ul li i {
  color: #A308B8;
  font-size: 14px;
}

.footer-column a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s, transform 0.3s;
}

.footer-column a:hover {
  color: #4500FF;
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  color: #fff;
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: #1a1a1a;
  background: #A300A0;
  border-color: #4F074F;
  transform: translateY(-3px);
}

/* Línea inferior */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #9009A3;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 50px 20px 15px;
  }
  
  .footer-container {
    gap: 30px;
  }
  
  .footer-column h3 {
    font-size: 1.1rem;
  }
}
