body {
    background-color: rgb(19, 19, 19);
    font-family: "Inter";
}

.caixa {
    position: relative;
    padding-bottom: 82px !important;
}


#overlay-form {
    position: absolute;
    visibility: hidden;
    top: 0;
    left: 0;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    filter: blur(6px);
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;

    &.active {
        visibility: visible;
    }
}

#form-response {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 3;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;

    &.active {
        visibility: visible;
    }
}


.botao-caixa {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    height: 60px;
    width: calc(100% - 5rem) !important;
}

.modal-polices {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;

    &.active {
        display: block;
    }

    .modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .6);
    }

    .modal-content {
        position: relative;
        max-width: 600px;
        width: calc(100% - 32px);
        margin: 10vh auto;
        background: #fff;
        border-radius: 12px;

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            border-bottom: 1px solid rgba(0, 0, 0, .1);

            .modal-close {
                font-size: 24px;
                cursor: pointer;
                color: red;
                border: none;
                background-color: transparent;
            }
        }

        .modal-text {
            padding: 12px;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            max-height: 400px;
            overflow-y: auto;

            h3 {
                font-size: 15px;
                font-weight: 600;
                margin: 20px 0 8px;
                color: #111;
            }

            p {
                margin: 0 0 12px;
            }

            ul {
                margin: 0 0 16px;
                padding-left: 18px;

                li {
                    margin-bottom: 6px;
                    position: relative;
                    padding-left: 6px;
                }
            }

            a {
                color: inherit;
                text-decoration: underline;

                &:hover {
                    opacity: .8;
                }
            }

            h3+p {
                margin-top: 0;
            }

            p+h3 {
                margin-top: 24px;
            }
        }
    }
}

.cookie-popup {
    position: fixed;
    bottom: -600px;
    left: 0;
    width: 100%;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: bottom 1s ease-in-out;
    background: #f5f5f5;
    border-top: 1px solid rgba(0, 0, 0, .2);

    &.active {
        opacity: 1;
        visibility: visible;
        bottom: 0;
    }

    .content-cookies {
        padding: 24px 40px;
        display: flex;
        align-items: center;
        gap: 16px;

        @media(max-width: 990px) {
            flex-wrap: wrap;
        }
    }

    .cookie-box {
        @media(max-width: 990px) {
            width: 100%;
        }

        h3 {
            font-style: normal;
            font-weight: 500;
            font-size: 19px;
            line-height: 28px;
        }

        p,
        a {
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #A4A7AF;
        }

        a {

            color: #FA5C29;

        }
    }

    .actions {
        .cta-cookies {
            padding: 10px 32px;
            height: 44px;
            background: #FA5C29;
            border-radius: 8px;
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #FFFFFF;
            border: 1px solid #FA5C29;
            white-space: nowrap;

            &.reject {
                background: #fff;
                color: #FA5C29;
            }

        }
    }
}

.float-wpp_site {
    position: fixed;
    z-index: 9999;
    bottom: 12px;
    right: 12px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .2));
}

.logo-item img {
    max-height: 80px;
    width: auto;
}

.border {
    border: 1px solid;
}

.cta-zap {
    align-items: flex-start;
    padding: 8px 20px;
    height: 40px;
    background: #FA5C29;
    border-radius: 8px;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    color: #531200;
}