/* BOTÕES ROXOS */

.btn-contato:hover {
    background-color: var(--btn-bg-hover);
    color: var(--btn-text-hover);
}

/* Botão Fale Conosco */
.btn-contato {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid var(--btn-border);
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-price-outline {
    display: block;
    text-align: center;
    padding: 18px;
    border: 1px solid rgba(112, 0, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-purple-fill {
    display: block;
    text-align: center;
    padding: 18px;
    background: #7000ff;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(112, 0, 255, 0.4);
    transition: all 0.3s;
}

.btn-purple-fill:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(112, 0, 255, 0.6);
}

.hero-btns { display: flex; gap: 20px; margin-top: 20px; }

.btn-cyan {
    background: #7000ff; /* Botão Principal Roxo */
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(112, 0, 255, 0.4);
    transition: 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.btn-cyan:hover { 
    transform: translateY(-3px); 
    background: #8b5cf6; /* Roxo um pouco mais claro no hover */
    box-shadow: 0 0 35px rgba(112, 0, 255, 0.6); 
}

.btn-outline {
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    background: rgba(112, 0, 255, 0.05);
    transition: 0.3s;
}

.btn-outline:hover { 
    background: rgba(112, 0, 255, 0.15); 
    border-color: rgba(168, 85, 247, 0.6);
}

.btn-contato {
    text-decoration: none;
    color: var(--text-white);
    border: 1px solid var(--purple-dark);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(112, 0, 255, 0.05);
    transition: all 0.3s ease;
}

/* BOTÃO DO BANNER */
.btn-talk-expert {
    background: #ffffff;
    color: #7000ff;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    white-space: nowrap;
}


.btn-talk-expert:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

