/*BUTTON-01*/
.button01 {
    background: linear-gradient(90deg, #FFC402 0%, #FDD902 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    color: #43512E;
    cursor: pointer;
    transition: opacity .2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.button01 i {
    font-size: 14px;
}

.button01:hover {
    opacity: .88;
}

.button01--full {
    width: 100% !important;
}

.button01--green {
    background: #1B9849 !important;
    color: white;
    font-weight: 500;
}

.button01--outline {
    background: transparent;
    border: 1px solid #9CFFC0;
    color: #9CFFC0;
}


/* TITLE HEADER */
.title-content {
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.subtitle {
    color: #1B9849;
    font-weight: 500;
    font-size: 17px;
}

.title {
    color: #111827;
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.description {
    color: #6D6D6D;
    margin-bottom: 30px;
    line-height: 1.4;
}

.center {
    text-align: center;
}




/* Whatsapp Button */
/* ============================ */
/*      WHATSAPP FLOAT BTN      */
/* ============================ */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 12px;

    background: linear-gradient(135deg, #1FAF5A 0%, #18A34A 100%);
    color: white;

    padding: 14px 18px;
    border-radius: 999px;

    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18),
        0 4px 10px rgba(0,0,0,0.12);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}

.whatsapp-float i {
    font-size: 26px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);

    box-shadow:
        0 14px 34px rgba(0,0,0,0.22),
        0 6px 14px rgba(0,0,0,0.16);
}

.whatsapp-float:active {
    transform: translateY(0);
}

.whatsapp-float span {
    white-space: nowrap;
}

/* Mobile */
@media screen and (max-width: 600px) {
    .whatsapp-float {
        right: 10px;
        bottom: 10px;
    }
}