/* Estilos globales */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1f1b33, #ff5757); /* Fondo azul y rojo degradado */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor principal */
.container {
    text-align: center;
    max-width: 360px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 3px solid #ffffff;
}

/* Título */
h1 {
    font-size: 22px;
    margin: 10px 0;
    font-weight: 700;
    color: #ffffff;
}

/* Descripción */
p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Botones */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo de los botones */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Estilos específicos de cada red social */
.whatsapp {
    background: #25d366; /* Verde de WhatsApp */
}

.instagram {
    background: #e4405f; /* Rosa de Instagram */
}

.youtube {
    background: #ff0000; /* Rojo de YouTube */
}

.linkedin {
    background: #0077b5; /* Azul de LinkedIn */
}

.twitter {
    background: #1da1f2; /* Azul de X (Twitter) */
}

.pinterest {
    background: #bd081c; /* Rojo de Pinterest */
}

.facebook {
    background: #3b5998; /* Azul de Facebook */
}

.web {
    background: #ff8c5a; /* Naranja degradado para la página web */
}

/* Hover de los botones */
.button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Iconos */
.icon {
    margin-right: 8px;
}
