.elementor-1111 .elementor-element.elementor-element-83bb104{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f638732 */#automawebp-popup * {
    font-family: "Metropolis"; /*troque a fonte aqui*/
}

#automawebp-popup *::-webkit-scrollbar {
    width: 1px;
}

#automawebp-popup *::-webkit-scrollbar-track {
    background: #404040; 
}

#automawebp-popup *::-webkit-scrollbar-thumb {
    background: #bd95ff; 
    border-radius: 10px; 
    border: 2px solid #bd95ff; 
}

#automawebp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Sora;
}

#automawebp-popup-content {
    position: relative;
    background: #0F1015;
    min-width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 3rem 3rem 3rem;
    border: 2px solid #ffffff08;
}

#automawebp-popup-header {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
}

#automawebp-popup-header h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -2px;
    margin: 0;
    color: #fff;
    margin-bottom: 20px;
}
#automawebp-popup-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
#automawebp-search {
    margin: 10px;
    display: flex;
    justify-content: center;
}
#automawebp-search input {
    color: #fff;
    padding: 20px 40px;
    border-radius: 100px;
    border: none;
    width: 80%;
    height: 60px;
  background: #191B24;
}

#automawebp-categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 20px;
}

#automawebp-popup .categoria-btn {
    background-color: #323748;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.5s;
}

#automawebp-popup .categoria-btn:hover,
#automawebp-popup .categoria-btn.active {
    background-color: #bd95ff;
    color: white;
}

#automawebp-cards {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    margin-bottom: 20px;
}

#automawebp-popup .card {
    position: relative;
    background: #1F222D;
    border-radius: 16px;
    padding: 0 0 20px 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ffffff05;
    height: fit-content;
}

#automawebp-popup .card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin-bottom: 20px;
}

#automawebp-popup .card h3 {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 10px;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3em;
}

#automawebp-pagination {
    display: flex;
    justify-content: center;
    padding: 10px;
    gap: 5px;
    margin-top: 20px;
}
#automawebp-pagination button {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: #323748;
    color: white;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 600;
}

#automawebp-pagination button:hover,
#automawebp-pagination button.active {
    background: #ffbef9;
    color: #1a1c1e;
}

#automawebp-popup [disabled] {
    opacity: 0.2;
    pointer-events: none;
}

#automawebp-popup .card::after{
    content: "INSERIR";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 12px;
    transition: 0.2s;
    opacity: 0;
        color: #fff;
    padding: 5px 10px;
    border-radius: 100px;
    letter-spacing: 5px;
}

#automawebp-popup .card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;   
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.2s;
    border-radius: inherit;
}

#automawebp-popup .card:hover::before,
#automawebp-popup .card:hover::after{
    opacity: 1;
}/* End custom CSS */