/* Fondo principal */
.qr-magnet-page-container
{
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Contenedor general de la tarjeta */
.qr-magnet-card-wrapper
{
    background-color: white;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: visible;
}

a
{
    text-decoration: none;
    color: inherit;
}

/*a:hover
{
    color: #FF6F61;
    text-decoration: underline;
}*/

/* ************************************************** */
/* ******* Contenedor principal de la tarjeta ******* */
/* ************************************************** */

.qr-magnet-card-container
{
    position: relative;
    width: 100%;
}

/* Contenedor de los círculos */
.qr-magnet-profile-container
{
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

/* Círculo grande blanco transparente */
.qr-magnet-profile-outer-circle
{
    width: 300px;
    height: 300px;
    background-color: #ffffff7a;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Imagen de perfil dentro del círculo grande */
.qr-magnet-profile-image
{
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid white;
    overflow: hidden;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: white;
}

.qr-magnet-profile-image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cuadro con el fondo de color */
.qr-magnet-info-box
{
    background-color: #FF6F61;
    border-radius: 15px;
    padding: 150px 20px 20px;
    margin-top: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Estilos del texto */
.qr-magnet-info-box .qr-magnet-name
{
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin: 10px 0;
}

.qr-magnet-info-box .qr-magnet-title, .qr-magnet-info-box .qr-magnet-company
{
    font-size: 0.9rem;
    color: #FFE4E1;
    margin: 5px 0;
}

/* Sección adicional: Redes Sociales */
.additional-info
{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.social-icon
{
    color: #FF6F61;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover
{
    color: #FF8A75;
}

/* ************************************************** */
/* **************** Sección: Info ******************* */
/* ************************************************** */

.qr-magnet-contact-info
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.qr-magnet-contact-option-info
{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
}

.qr-magnet-contact-option-info i
{
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #000000;
}

.qr-magnet-contact-option-info:hover
{
    color: #FF8A75;
}

.qr-magnet-contact-option-info:hover i
{
    color: #FF8A75;
}

/* ************************************************** */
/* ************* Sección: Social Media ************** */
/* ************************************************** */

.qr-magnet-contact-social-media
{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 15px; /* Espaciado entre los elementos */
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.qr-magnet-contact-option-social-media
{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
    transition: color 0.3s ease;
}

.qr-magnet-contact-option-social-media i
{
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #000000;
}

.qr-magnet-contact-option-social-media:hover
{
    color: #FF8A75;
}

.qr-magnet-contact-option-social-media:hover i
{
    color: #FF8A75; /* Cambia el color del icono */
}

/* ************************************************** */
/* **************** Sección: Email ****************** */
/* ************************************************** */

.qr-magnet-contact-email
{
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Elementos de información */
.qr-magnet-email-item
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.qr-magnet-email-item i
{
    font-size: 1.5rem;
    color: #000000;
}

.qr-magnet-email-item span
{
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.qr-magnet-email-item:hover
{
    color: #FF8A75;
}

.qr-magnet-email-item:hover i
{
    color: #FF8A75;
}

.qr-magnet-email-item:hover span
{
    color: #FF8A75;
}

/* ************************************************** */
/* **************** Sección: Phone ****************** */
/* ************************************************** */

.qr-magnet-contact-phone
{
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Elementos de información */
.qr-magnet-phone-item
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.qr-magnet-phone-item i
{
    font-size: 1.5rem;
    color: #000000;
}

.qr-magnet-phone-item span
{
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.qr-magnet-phone-item:hover
{
    color: #FF8A75;
}

.qr-magnet-phone-item:hover i
{
    color: #FF8A75;
}

.qr-magnet-phone-item:hover span
{
    color: #FF8A75;
}

/* ************************************************** */
/* ************** Sección: Descripción ************** */
/* ************************************************** */

.qr-magnet-description {
    background-color: #f9f9f9; /* Fondo gris claro */
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
    text-align: left;
}

.qr-magnet-description-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.qr-magnet-description-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    text-align: justify; /* Justificar el texto */
}

/* ************************************************** */
/* ********************* Button ********************* */
/* ************************************************** */

.qr-magnet-contact-button
{
    margin-top: 20px;
}

.qr-magnet-btn-save
{
    background-color: #FF6F61;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-magnet-btn-save:hover
{
    background-color: #FF8A75;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* ************************************************** */
/* ********************** Modal ********************* */
/* ************************************************** */
/* Modal */
.qr-magnet-modal
{
    display: none; /* Ocultar el modal por defecto */
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
}

/* Imagen dentro del modal */
.qr-magnet-modal-content
{
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Botón de cerrar */
.qr-magnet-close
{
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.qr-magnet-close:hover,
.qr-magnet-close:focus
{
    color: #f44336;
    text-decoration: none;
    cursor: pointer;
}