.bg-fiscal-gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

.benefit-card .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e84545;
    /* 🔴 fundo vermelho */
    color: #fff;
    /* ícone branco */
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
    font-size: 1.25rem;
}


.demo-btn {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(232, 69, 69, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(232, 69, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(232, 69, 69, 0);
    }
}


.newsletter-field {
    position: relative;
    margin: 15px 0 10px 10px;
    width: calc(100% - 20px);
    height: 28px;
    display: inline-block;
}

.newsletter-input {
    border-width: 1px;
    border-color: rgb(214, 205, 205);
    border-style: solid;
    width: 100%;
    height: 100%;
    z-index: 4;
    outline: none;
    padding: 5px 10px;
    color: rgb(0, 0, 0);
    text-align: left;
    font-family: Arial;
    border-radius: 0px;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    font-size: 14px;
}

.newsletter-button {
    text-align: center;
    width: 100%;
    z-index: 5;
    border: 0px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    outline: none;
    background-color: rgb(232, 69, 69);
    border-radius: 10px;
    /* Added rounded corners */
    font-size: 16px;
    font-family: Lato, Helvetica, sans-serif;
    padding: 10px 0;
    /* Added padding for better spacing */
    line-height: normal;
    /* Use normal line height */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    /* Set a fixed height */
    margin-bottom: 10px;
    /* Ensure there's a margin at the bottom */
}

@media (max-width: 767px) {
    .newsletter-field {
        width: calc(100% - 20px);
        margin: 15px 10px;
    }

    .newsletter-button {
        width: calc(100% - 20px);
        margin: 15px 10px 10px 10px;
        /* Adjusted margin-bottom for mobile */
    }
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}


  