body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #01a2ff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.card h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.resaltado {
    font-weight: 700;
}

.whatsapp-link {
    display: inline-block;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover .whatsapp-icon {
    transform: scale(1.1);
}
