.contato-section {
    padding: 80px 0;
    background-color: #ffffff; /* Fundo limpo acompanhando a seção anterior */
}

.contato-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contato-subtext {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

/* Botão Moderno com a cor clássica do WhatsApp mas formato limpo */
.btn-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white !important;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px; /* Bordas bem arredondadas combinando com o botão "Laboratório" */
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
}

.btn-whatsapp-modern:hover {
    background-color: #128C7E;
    transform: translateY(-2px); /* Efeito suave de levante */
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp-modern svg {
    transition: transform 0.3s ease;
}

.btn-whatsapp-modern:hover svg {
    transform: scale(1.1);
}