.catalogo-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.banner-fondo img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    width: 80%;
    max-width: 800px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: white;
    text-align: center;
}

.logo-perfil {
    margin: -70px auto 20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid white;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-perfil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.titulo {
    font-size: 2rem;
    margin: 1rem 0;
}

.descrip {
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icons img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.otro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.otrared {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 90px;
    max-width: 180px;
    min-height: 60px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.otrared:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.titulo {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin: 1rem 0;
    line-height: 1.2;
    word-break: break-word;
}

.descrip {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    line-height: 1.5;
}

/* Ajuste del logo en responsive */
.logo-perfil {
    width: clamp(100px, 30vw, 160px);
    height: clamp(100px, 30vw, 160px);
}

/* Social icons */
.social-icons img {
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
}

/* Responsive específico */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
        width: 95%;
    }

    .titulo {
        font-size: 1.5rem;
    }

    .descrip {
        font-size: 1rem;
    }
     .otrared {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 1rem;
    }

    .titulo {
        font-size: 1.3rem;
    }

    .descrip {
        font-size: 0.9rem;
    }

    .social-icons img {
        width: 40px;
        height: 40px;
    }
    .otrared {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
}