.footer-site {
  background-color: var(--negro); /* #212529 */
  color: var(--blanco); /* #FBFAFA */
  font-family: "Urbanist", sans-serif;
  padding: 40px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Imagen decorativa triangular de la izquierda */
.footer-decoration {
  position: absolute;
  left: -14rem;
  bottom: -14rem; /* Ajustar según tu imagen */
  width: 400px;
  height: 400px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 60% 40%,
    black 30%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 70% 70% at 60% 40%,
    black 30%,
    transparent 75%
  );
}

.footer-decoration canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.logo-footer {
  width: 230px; /* Tamaño ajustable según tu diseño */
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.3s ease;
}

.footer-logo {
  position: relative;
  z-index: 1;
}

/* Contenedor de Iconos */
.footer-socials {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  filter: brightness(1.2);
}

/* Colores específicos de los círculos */
.social-icon.github {
  background-color: #000000;
}

.social-icon.linkedin {
  background-color: #3b82f6; /* Azul similar a la imagen */
}

.social-icon.email {
  background-color: #f87171; /* Rojo suave similar a la imagen */
}

/* Línea divisoria */
.footer-line {
  border: 0;
  border-top: 1px solid rgba(251, 250, 250, 0.3);
  max-width: 1120px;
  margin: 40px auto 20px auto;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-decoration {
    display: none; /* Ocultar decoración en móvil para ahorrar espacio */
  }
}
