border-radius: 50px;
text-decoration: none;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
font-weight: 600;
font-size: 16px;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
transition: all 0.3s ease;
border: none;
cursor: pointer;
margin: 10px;
}.whatsapp-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
background: linear-gradient(135deg, #128C7E, #25D366);
}.whatsapp-button:active {
transform: translateY(0);
}.whatsapp-icon {
width: 24px;
height: 24px;
margin-right: 10px;
fill: currentColor;
}.button-text {
text-align: center;
line-height: 1.2;
}.main-text {
display: block;
font-size: 16px;
margin-bottom: 2px;
}.sub-text {
display: block;
font-size: 12px;
opacity: 0.9;
font-weight: 400;
}/* Animación de pulso */
.whatsapp-button::before {
content: »;
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}.whatsapp-button:hover::before {
width: 300px;
height: 300px;
}.whatsapp-button {
position: relative;
overflow: hidden;
}/* Responsive */
@media (max-width: 768px) {
.whatsapp-button {
padding: 12px 20px;
font-size: 14px;
}
.main-text {
font-size: 14px;
}
.sub-text {
font-size: 11px;
}
}