/* Estilo del enlace */
/*a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

a:hover {
    background-color: #0056b3;
}
*/
/* Contenedor del popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 9999; /* Asegura que esté al frente */
}

/* Contenido del popup */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    z-index: 10000; /* Asegura que el contenido del popup esté adelante */
    width: 80%; /* Puedes ajustar este valor */
    max-width: 900px; /* Máximo ancho permitido */
    height: 80vh; /* 80% de la altura de la pantalla */
    max-height: 600px; /* Máximo alto permitido */
    overflow: auto;
}

/* Mostrar el popup cuando esté activo */
.popup.show {
    opacity: 1;
    visibility: visible;
}

/* Estilo del botón de cierre */
.btn-cerrar {
    display: inline-block;
    margin-top: 10px;
    background: red;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-cerrar:hover {
    background: darkred;
}


.Samsunglink {
    background-color: #ff0000; /* 🔥 Rojo para atraer la atención */
    width: 100%;
    max-width: 1350px;
    text-align: center;
    margin: auto;
    color: #FFF;
    padding: 15px;
    font-size: 18px; /* Texto más grande */
    font-weight: bold; /* Texto en negrita */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Sombra para destacar */
    animation: parpadeo 1s infinite alternate; /* ✨ Efecto de parpadeo */
}

/* Botón */
.Samsunglink a {
    background: #ffffff;
    color: #ff0000; /* Color rojo llamativo */
    padding: 10px 15px;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.Samsunglink a:hover {
    background: #000;
    color: #ffffff;
    border-color: #000;
}

/* Efecto de parpadeo */
@keyframes parpadeo {
    from {
        background-color: #ff0000;
    }
    to {
        background-color: #ff6600; /* Naranja para alternar */
    }
}
