.botao-destaque a {
    color: #ffcc00 !important; 
    transition: transform 0.2s;
}

.botao-destaque a:hover {
    transform: scale(1.05);
    color: #967803;
}


.b2b-modal {
    position: fixed;
    top: 20px;
    left: 20px; /* Lateral direita */
    width: 300px;
    background: #fff;
    padding: 23px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 9999;
    border-left: 5px solid #0073aa; /* Cor da sua marca */
    font-family: sans-serif;
    animation: slideIn 0.5s ease-out;
}
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.cta-btn {
    display: block;
    background: #0073aa;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 4px;
}
@keyframes slideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}