.floating-button-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: inline-flex;
    padding: 12px 22px;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 5px solid rgba(255, 255, 255, 0.60);
    background: #4CB550;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-button-whatsapp img {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .floating-button-whatsapp {
        padding: 12px;
    }

    .floating-button-whatsapp img {
        width: 25px;
        height: 25px;
    }

    .floating-button-whatsapp span{
        display: none;
    }
}

.floating-button-whatsapp:hover {
    background: #368D3C;
    border: 5px solid rgba(255, 255, 255, 0.50);
}

.floating-button-whatsapp-form-container {
    display: none;
}

.floating-button-whatsapp-form-container.active {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 360px;
}

@media (max-width: 768px) {
    .floating-button-whatsapp-form-container.active {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .floating-button-whatsapp-form-container-content {
        border-radius: 16px 16px 0 0;
    }
    
    .floating-button-whatsapp-form-container-content-header {
        border-radius: 16px 16px 0 0;
    }
}

.floating-button-whatsapp-form-container-header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 20px;
}

.floating-button-whatsapp-form-container-close {
    border-radius: 100px;
    border: 5px solid rgba(255, 255, 255, 0.60);
    background: var(--Foundation-Primary-primary-500, #C70513);
    display: inline-flex;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    cursor: pointer;
}

.floating-button-whatsapp-form-container-content {
    display: flex;
    flex-direction: column;
    background: #F9F9F9;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

}

.floating-button-whatsapp-form-container-content-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px 16px 0 0;
    background: #232323;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    padding: 24px;

}

.floating-button-whatsapp-form-container-content-header span {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: linear-gradient(90deg, rgba(255, 230, 230, 0.40) 0%, rgba(255, 255, 255, 0.00) 102.07%);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.floating-button-whatsapp-form-container-content-header p {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #FFF;
    margin: 0;
    padding: 0;
}

.floating-button-whatsapp-form-container-content-body {
    padding: 24px;
}

.floating-button-whatsapp-form-container-content-body-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.floating-button-whatsapp-form-container-content-body-input label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.floating-button-whatsapp-form-container-content-body-input label .required {
    color: #C70513;
    margin-left: 2px;
}

.floating-button-whatsapp-form-container-content-body-input input,
.floating-button-whatsapp-form-container-content-body-input select {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid #BCBCBC;
    background: #FFF;
}

.floating-button-whatsapp-form-container-content-body-input input::placeholder,
.floating-button-whatsapp-form-container-content-body-input select::placeholder {
    color: #B2B2B2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.floating-button-whatsapp-form-container-content-body-input input:focus,
.floating-button-whatsapp-form-container-content-body-input select:focus {
    outline: none;
    border: 1px solid #777;
}

.floating-button-whatsapp-form-container-content-body-input input:focus::placeholder,
.floating-button-whatsapp-form-container-content-body-input select:focus::placeholder {
    color: #000;
}

.floating-button-whatsapp-form-container-content-body-input input.error,
.floating-button-whatsapp-form-container-content-body-input select.error {
    border-color: #C70513;
}

.floating-button-whatsapp-form-container-content-body-input input:focus::placeholder,
.floating-button-whatsapp-form-container-content-body-input select:focus::placeholder {
    color: #000;
}

.floating-button-whatsapp-form-container-content-body-button {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 100px;
    background: #C70513;
    border: none;
    outline: none;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-button-whatsapp-form-container-content-body-button:hover {
    background: #A3040F;
}

.floating-button-whatsapp-form-validation-message {
    color: #C70513;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
    display: none;
    padding: 12px 16px;
    background: rgba(199, 5, 19, 0.1);
    border-radius: 8px;
    border-left: 4px solid #C70513;
    position: relative;
    padding-left: 40px;
}

.floating-button-whatsapp-form-validation-message.success {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border-left-color: #28a745;
}

.floating-button-whatsapp-form-validation-message::before {
    content: "!";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #C70513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.floating-button-whatsapp-form-validation-message.success::before {
    content: "✓";
    background: #28a745;
}

.floating-button-whatsapp-form-validation-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.floating-button-whatsapp-form-container-content-body-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}