body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    /* background: linear-gradient(rgba(54, 54, 54, 0.4), rgba(0, 0, 0, 0.4)); */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/logo_mono.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.30;
    /* más sutil */
    /* filter: blur(2px); */
}


.content {
    z-index: 1;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 80px;
    max-width: 400px;
    margin: 0 auto -20px;
}

.logo-letras {
    width: 380px;
    margin-top: 20px;
}

.info-box {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
}

.text_white {
    color: #fff;
}

.username {
    font-weight: bold;
    font-size: 1.1rem;
}

.location {
    font-size: 0.95rem;

}

.location i {
    margin-right: 6px;
    /* color: #e2ff3d; */
}

.slogan {
    font-style: italic;
    font-size: 1rem;
    margin-top: 6px;
}


h1 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    text-align: center;
}

.link-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.link-container a {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    /* fondo translúcido */
    border: 1.5px solid rgba(3, 3, 3, 0.466);
    /* borde tenue */
    padding: 14px 20px;
    text-align: center;
    color: #000;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(6px);
    /* desenfoque elegante */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* sombra sutil */
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 4px 15px rgb(131, 130, 130); */
}

.link-container a:active {
    transform: scale(0.97);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.link-container a i {
    font-size: 1.2rem;
}

.link {
    text-decoration: none;
    background-color: #e2ff3d;
    border: 2px solid #e2ff3d;
    padding: 14px 20px;
    text-align: center;
    color: #000 !important;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease;
    animation: glow 2s ease-in-out infinite;
}



.link:active {
    background-color: #e2ff3d;
    transform: scale(0.97);
}

.link i {
    font-size: 1.2rem;
}

.link:hover {
    background-color: #e2ff3d;
    transform: scale(1.03);
}

footer {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 2px rgba(226, 255, 61, 0.3), 0 0 2px rgba(226, 255, 61, 0.1);
    }

    50% {
        box-shadow: 0 0 10px rgba(226, 255, 61, 0.7), 0 0 10px rgba(226, 255, 61, 0.4);
    }

    100% {
        box-shadow: 0 0 2px rgba(226, 255, 61, 0.3), 0 0 2px rgba(226, 255, 61, 0.1);
    }
}


.social-contact {
    text-align: center;
    margin-top: 40px;
}

.social-contact h2 {
    margin-bottom: 10px;
    /* color: #e2ff3d; */
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    color: #e2ff3d;
    transform: scale(1.2);
}

.tiendas {
    text-align: center;
    margin: 40px 0 20px;
}

.tiendas h3 {
    font-size: 1.2rem;
    /* color: #e2ff3d; */
    margin-bottom: 15px;
}

.tiendas-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tiendas-logos a {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: zoomIn 1s ease infinite alternate;
    transition: transform 0.2s ease;
    width: 130px;
    display: flex;
    justify-content: center;
}

.tiendas-logos img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.certificaciones {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
}

.certificaciones h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.certificaciones-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificaciones-logos img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    /* animation: zoomIn 1s ease infinite alternate; */
    object-fit: contain;
    display: block;
}

/* Elimina estilos innecesarios para enlaces */
.certificaciones-logos a {
    display: none;
}

.certificaciones-descripcion {
    margin-top: 40px;
}

.certificaciones-descripcion ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
    margin: 20px 0 10px;
    color: #333;
    font-size: 0.85rem;
}

.certificaciones-descripcion p {
    margin-top: 20px;
    text-align: justify;
    font-size: 0.85rem;
    color: #444;
}

@media (max-width: 480px) {
    .link {
        font-size: 0.8rem;
    }

    .logo-letras {
        width: 250px;
    }

    .social-contact {
        margin-top: 10px;
    }

    .tiendas {
        margin: 20px 0 10px;
    }

    .certificaciones-logos img {
        width: 60px;
        height: 60px;
    }
}