.footer {
    background-color: #2D2D2D;
    color: #fff;
    padding: 3rem 2rem 2rem;
    font-family: 'Century Gothic', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col-redes,
.footer-logos {
    text-align: center;
    align-items: center;
}

.footer-logos {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-top: -0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-desarrollado {
    width: 100%;
    font-size: 23px;
    font-weight: 400;
    color: #035796;
    margin-top: 0;
}

.footer-coned {
    color: #035796;
    text-decoration: underline;
    font-weight: 400;
}

.footer-coned:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-logo:first-child {
    filter: brightness(0) invert(1);
    width: 100px;
    height: 100px;
}

.footer-titulo {
    font-size: 34px;
    font-weight: 700;
    color: #035796;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-texto {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 400;
}

.footer-link {
    color: #4DA6FF;
    text-decoration: underline;
    opacity: 0.9;
}

.footer-link:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    opacity: 0.8;
}

.redes-sociales {
    display: flex;
    gap: 0.8rem;
}

.red-ig {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #EB00F5;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
}

.red-ig::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 24px;
    background-color: #B800C0;
    opacity: 0.6;
    transform: rotate(-45deg) translate(-70px, -70px);
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.red-ig:hover::after {
    transform: rotate(-45deg) translate(70px, 70px);
}

.red-fb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2353FA;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
}

.red-fb::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 24px;
    background-color: #1B3EBD;
    opacity: 0.6;
    transform: rotate(-45deg) translate(-70px, -70px);
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.red-fb:hover::after {
    transform: rotate(-45deg) translate(70px, 70px);
}
