
.button-auth{
    display: flex;
    align-items: center;
    padding-right: 20px;
    gap: 1rem;
}
.button-auth .button-login{
    min-width: 100px;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    box-shadow: 2px 2px 10px 0 #3f51b530;
    background: linear-gradient(0deg, #000000 0%, rgb(61 61 61) 100%);
}
.button-auth .button-login:hover{
    background: linear-gradient(0deg, rgb(61 61 61) 100%,#000000 0%);
}

.button-auth .button-register{
    min-width: 100px;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    box-shadow: 2px 2px 10px 0 #3f51b530;
    background: linear-gradient(0deg, #31c2f0 0%, rgb(60 208 246) 100%);
}
.button-auth .button-register:hover{
    background: linear-gradient(0deg,rgb(60 208 246) 100%,#31c2f0 0%);
}

.tab-box-item-content p {
    margin-top: 28px;
    font-size: .875rem;
    line-height: 1.7142857143em;
    font-weight: 500;
    color: #3e3f5e;
}
.tab-box-item-content strong {
    margin-top: 48px;
    font-size: 1.375rem;
    font-weight: 700;
}
.cart-preview-total {
    padding: 0 20px !important;
}

/* Defina a animação de pulso */
@keyframes cartPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 15, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 255, 15, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 15, 0);
    }
}

/* Aplique ao ícone */
.cart-pulse {
    animation: cartPulse 2s infinite;
    display: inline-block; /* necessário para animar corretamente */
}

input[type=password], input[type=text], input[type=email], input[type=date], select, textarea {
    background-color: #fff;
    border: 1px solid #dedeea;
    color: #3e3f5e;
    transition: border-color .2s ease-in-out;
}
button, input[type=password], input[type=text], input[type=email], input[type=date], select, textarea {
    width: 100%;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
}
input[type=password], input[type=text], input[type=email] {
    height: 54px;
    padding: 0 18px;
}

.lang-item{
    display: flex;
    align-items: anchor-center;
}
.lang-img{
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 100px;
    border: 3px solid #4788e9;
}

.logo-header {
    width: 28px;
    height: 40px;
}
.logo-loading{
    height: 256px;
    margin-bottom: 30px;
}
.price-title.big {
    font-size: 2.375rem;
}

.btn-comment{
    border: 2px solid #0606c857;
    border-radius: 10px;
}
.btn-comment:hover {
    background: #0606c857;
    color: #fff;
}
.reaction-dropdown-float {
    position: absolute !important;
    left: 0;
    top: 40px;
    min-width: 120px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 8px;
    z-index: 9999 !important;
    display: block;
    white-space: nowrap;
}
.relative{
    position: relative;
}

.form-reply{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}
.btn-cancel{
    width: 100px;
    background-color: #e6e6e6;
    border-radius: 10px;
}
.reply-action{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.meta-links{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.post-comment .content-actions {
    height: 20px;
    margin-top: 0px !important;
}

.badge{
    display: flex;
    width: 32px;
    height: 35px;
}
.spinner-border {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: text-bottom;
    border: .15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}
@keyframes spinner-border {
    to { transform: rotate(360deg); }
}
.d-none { display: none !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mb-10{
    margin-bottom: 10px;
}
.footer-save{
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: space-between;
    gap: 1rem;
}

.switch-option-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-switch-input{
    position:relative;
    display:inline-block
}

.form-switch-input .form-switch-button {
    display: inline-block;
    width: 44px;
    height: 24px;
    background: #e2e8f0;
    border-radius: 999px;
    position: relative;
    transition: background 0.2s;
    vertical-align: middle;
    cursor: pointer;
}
.form-switch-input .form-switch-button::before {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
    transition: left 0.2s, background 0.2s;
}

/* Esconde o input, mas mantém acessibilidade */
.form-switch-input input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-switch-input input[type="checkbox"]:checked + .form-switch-button {
    background: #2563eb;
}

.form-switch-input input[type="checkbox"]:checked + .form-switch-button::before {
    left: 22px;
    background: #fff;
}

.form-switch-input input[type="checkbox"]:focus + .form-switch-button {
    box-shadow: 0 0 0 2px #2563eb44;
}
.form-row{
    display: block;
}
.badge-item-stat .badge-item-stat-image-preview {
    position: absolute;
    top: 32px;
    left: 28px;
    width: 32px !important;
    height: 35px!important;
}

.badge-item-stat {
    min-height: 410px;
}
.side-icon{
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.side-link-img{
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding-left: 10px !important;
}
.notification-total{
    position: absolute;
    right: 0;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    color: white;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start; /* opcional: alinha à esquerda */
    }
}
@media screen and (max-width: 680px) {
    .content-grid {
        width: 95%;
        padding: 72px 0 200px !important;
    }
    .section-header-info .section-title {
        margin-bottom: 10px;
    }
}


.flex-grow{
    flex-grow: 1;
}

.job-content{
    padding: 32px 28px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgba(94, 92, 154, .06);
}

.form-label{
    background-color: #fff;
    color: #adafca;
    font-size: .75rem;
    font-weight: 600;
    pointer-events: none;
    margin-bottom: 10px;
}
.gap{
    gap: 1rem;
}
.button-action{
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 680px) {
    .job-content{
        padding: 0 !important;
    }
}
