/* ESTILOS TP */
.tp-gateway {
    display: none;
    bottom: 20vh;
    left: 0;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    position: fixed;
    text-align: left;
    width: 100%;
    z-index: 99000;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.tp-gateway-background {
    display: none;
    position: fixed;
    top: 0;
    z-index: 99000;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tp-gateway-button {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 auto;
    min-width: 230px;
    text-decoration: none;
    border-radius: 8px;
    background-color: white;
}

.containerTp {
    padding: 1rem;
    border-radius: 12px;
    border-left: solid 10px #007BFF;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.containerTpHeader { 
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.containerTpBody {
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #000
}
.containerTpSocials {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    gap: 15px;
}
.socialTp img {
    cursor: pointer;
    max-width: 40px;
    transition: transform 0.3s ease-in-out;
}
.socialTp img:hover {
    transform: scale(1.1);
}
.containerTpButton {
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.buttonTp {
    padding: 0.5rem 1rem;
    border: solid 1px #007BFF;
    text-decoration: none;
    border-radius: 6px;
    color: #007BFF;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.buttonTp:hover {
    background-color: #007BFF;
    color: #fff;
}

/* ESTILOS TP */
