body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}

.hero-saude {
    position: relative;
    color: white;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

    .hero-saude::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/img/heart-outline.png') no-repeat center center;
        background-size: cover;
        filter: blur(1px); /* Ajuste a intensidade do desfoque aqui */
        z-index: 0;
    }

    .hero-saude > * {
        position: relative;
        z-index: 2;
    }

.icon-plus {
    width: 120px;
    height: 120px;
    background-color: #002D74;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}



.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

    .float:hover {
        transform: scale(1.15);
        color: white;
        background-color: #1ebe5d; /* tom mais escuro no hover */
    }


    .float i {
        font-size: 28px;
        line-height: 1;
    }


.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #002D74;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .social-icon:hover {
        background-color: #3ba6de;
        transform: scale(1.1);
        color: white;
    }
