.contact-whatsapp {
    background-color: rgba(0, 255, 127, 0.05);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.contact-whatsapp h3 {
    margin-bottom: 15px;
    color: #00ff7f;
    text-align: center;
    font-size: 1.8rem;
}

.contact-whatsapp p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
}

.whatsapp-button-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    width: 100%;
    max-width: 300px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #1fba58;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.4rem;
    margin-right: 10px;
    vertical-align: middle;
}

.whatsapp-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
}

.benefit {
    flex: 1;
    min-width: 150px;
    margin: 10px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.3);
}

.benefit i {
    font-size: 2.5rem;
    color: #00ff7f;
    margin-bottom: 15px;
}

.benefit p {
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-benefits {
        flex-direction: column;
    }
    
    .benefit {
        margin: 5px 0;
    }
}
