line-gestao-frontend/src/app/components/cta-button/cta-button.scss

52 lines
1.0 KiB
SCSS

.cta-button {
width: 100%;
max-width: 360px;
height: 66px;
margin-top: 50px;
margin-bottom: 100px;
padding-left: 50px;
padding-right: 50px;
background-color: rgba(201, 30, 181, 0.76);
color: #FFFFFF;
font-family: 'Poppins', sans-serif;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
cursor: pointer;
border: none;
border-radius: 4px;
transition: background-color 0.3s ease;
// --- MOBILE PEQUENO (até 360px) ---
@media (max-width: 360px) {
max-width: 260px;
height: 56px;
font-size: 16px;
}
// --- CELULARES (até 480px) ---
@media (max-width: 480px) {
max-width: 300px;
height: 60px;
}
// --- TABLETS (até 768px) ---
@media (max-width: 768px) {
max-width: 330px;
}
// --- DESKTOPS MÉDIOS (1024px ou menos) ---
@media (max-width: 1024px) {
max-width: 350px;
}
}
.cta-button:hover {
background-color: #C91EB5;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}