.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


body {
    font-family: "Poppins", sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-image: url('Imagenes/Multilink - FONDO.png'); /* Cambia el nombre y ruta según tu caso */
    background-size: cover;           /* Ajusta la imagen al tamaño del contenedor */
    background-position: center;      /* Centra la imagen */
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 500px;
    height: 980px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.social-buttons {
    margin-top: 360px;
}

.boton-redireccion {
    display: block;                    /* El enlace se comporta como bloque */
    text-decoration: none;
    border-radius: 12px;
    background-color: white;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-height: 60px;
}

.contenido-boton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
    padding: 12px 20px;
}

.contenido-boton img {
    position: absolute;
    left: 40px;
    width: 50px;
    height: auto;
}

.contenido-boton .img {
    position: absolute;
    left: 47px;
    width: 35px;
    height: auto;
}

.contenido-boton span {
    flex: 1;
    text-align: center;
    font-size: 20px;
}





footer {
    margin: 110px 0;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    clear: both;
}


.link-footer {
    text-decoration: none;
    color: white;
}

.iconos-redes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


.iconos-redes a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid white;
    background-color: transparent;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iconos-redes .img2 {
    width: 30px;
    height: auto;
    object-fit: contain;
}

.iconos-redes .img3 {
    width: 20px;
    height: auto;
    object-fit: contain;
}

.iconos-redes a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



