:root {
    --footer-bg-f92ab: #071433;
    --footer-text-f92ab: #e6e6e6;
    --footer-link-f92ab: #c1c1c1;
    --footer-accent-f92ab: #00bcd4;
}

.footer_f92ab {
    background: var(--footer-bg-f92ab);
    color: var(--footer-text-f92ab);
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer_container_f92ab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_logo_f92ab {
  width: 150px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer_text_f92ab {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer_title_f92ab {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
}

.footer_links_f92ab {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.footer_links_f92ab li {
    margin-bottom: 8px;
}

.footer_links_f92ab a {
    text-decoration: none;
    color: var(--footer-link-f92ab);
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer_links_f92ab a:hover {
    color: var(--footer-accent-f92ab);
    transform: translateX(5px);
}

.footer_social_f92ab {
    display: flex;
    gap: 15px;
}

.footer_social_f92ab a svg {
    width: 26px;
    height: 26px;
    fill: var(--footer-link-f92ab);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.footer_social_f92ab a:hover svg {
    fill: var(--footer-accent-f92ab);
    transform: translateY(-3px);
}

.footer_bottom_f92ab {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #aaa;
}

.footer_bottom_f92ab a {
  text-decoration: none;
  color: #00bcd4; /* Color destacado, puedes ajustar */
  font-weight: 600;
  transition: color 0.2s;
}

.footer_bottom_f92ab a:hover {
  color: #0097a7; /* Un tono más oscuro al pasar el mouse */
}

/* Animaciones de entrada */
.anim_f92ab {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.anim_visible_f92ab {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer_container_f92ab {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer_container_f92ab {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_social_f92ab {
        justify-content: center;
    }
}