@import url('theme-variables.css');


div {
    /* border: 1px solid rgb(247, 0, 255); */
}

* {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

header.lr-menu {
    margin: 10px 0 30px;
}

.lr-menu-portfolio {
    /* color: red; */
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;

}

.lr-menu-portfolio li {
    padding: 0 10px 7px 10px;
    color: var(--texto-menu);
    position: relative;
    /* Necessário para posicionar o pseudo-elemento */
    transition: color 0.3s ease;
    /* Transição apenas para a cor do texto */
}

/* Pseudo-elemento que será animado */
.lr-menu-portfolio li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    /* Começa da direita */
    width: 0;
    /* Começa com largura zero */
    height: 2px;
    background-color: var(--texto-menu);
    /* Cor da borda */
    transition: width 0.2s ease, left 0.2s ease;
    /* Transição para a largura */
    transform: translateX(-50%);
    /* Centraliza o elemento */
}

/* Estado hover */
.lr-menu-portfolio li:hover::after {
    width: 100%;
    /* Expande para 100% */

}

/* Estado ativo/destacado */
.lr-menu-portfolio li.lr-highlight-menu {
    color: var(--texto-menu-selecionado);
}

.lr-menu-portfolio li.lr-highlight-menu::after {
    width: 100%;
    /* Borda completa */
    background-color: var(--texto-menu-selecionado);
}

.container {
    max-width: 1110px !important;
    padding: 0px 20px !important;
    box-sizing: border-box;
}



.container>main>section>article {
    display: none;
    /* width: auto; */
    min-width: 300px;
    max-width: 340px;
    /* margin: 0 auto; */
}

.mostrar {
    display: block !important;
}



.lr-card {
    top: 0 !important;
    background-color: var(--backgound-bloco);
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-shadow: 0px 4px 12px 3px rgba(0, 0, 0, 0.2) !important;
    width: 100%;
    color: var(--texto-geral);
}
/* .card {
    top: 0 !important;
    background-color: var(--backgound-bloco);
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-shadow: 0px 4px 12px 3px rgba(0, 0, 0, 0.2) !important;
    width: 100%;
    color: var(--texto-geral);
} */

/* Estilo para o cabeçalho do card */
.card-header {
    /* width: 85%; */
    padding: 10px 30px;
    background-color: var(--backgound-bloco);
}

/* Nome do plano*/
.card-header h4,
.servicos-popup-header h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nome-plano);
}

.lr-highlight-plan .card-header h4 {
    color: var(--primary-color);
}

/* Estilo para a linha de fibra óptica */
.fibra-optica-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.fibra-optica-container hr {
    flex: 1;
    margin: 0 10px;
    max-width: 60px;
    border: 0.01rem solid var(--texto-geral);
    
}

.fibra-optica-container span {
    white-space: nowrap;
    text-align: center;
}



/* Valor do plano*/
.card-body-valor {
    text-align: center;
}

.card-body-valor h1 {
    background-color: var(--background-preco);
    color: var(--texto-preco);
    padding: 20px 10px 30px 10px;
    font-size: 2.5rem;
    line-height: 1.9rem;
}

.card-body h6 {
    font-size: 1rem;
    font-weight: 600;
    /* margin: 0; */
    margin-bottom: 10px;
}

.card-body-valor span {
    margin: 0;
    padding: 0 5px;

}
.card-body-valor span:not(:last-child) {
    font-size: 0.8rem !important;
}

.card-body-valor small {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 0.5rem;
}

.card-body-valor>span {
    display: block;
    font-size: 0.7rem !important;
    padding: 5px 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Botão de assinar */
.card-body-button {
   margin: 20px 0;
}

.card-body-valor a,
button.btn-confirmar {
    background-color: var(--botao-principal);
    color: var(--texto-botao-principal);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    margin: 15px 0;
    width: 50%;
    min-width: 150px;
    max-width: 200px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card-body-valor a:hover,
button.btn-confirmar:hover {
    background-color: var(--botao-principal-hover);
    color: var(--texto-botao-principal-hover);
}

.card-body h6 {
    color: var(--texto-geral);
}

/* Estilo para a lista de recursos */
.card-body-lista {
    padding: 20px 20px;
}


.card-body-lista ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.card-body-lista li {
    align-items: center;
    margin: 0px;
    flex: 0 0 auto;
    /* Não cresce, não encolhe, tamanho automático */
    min-width: 30px;
    /* Largura mínima para acomodar a imagem */
    max-width: 30px;
    /* Largura máxima para evitar espaçamento excessivo */
    /* Defina uma largura fixa para criar uma grade */
    /*width: calc(33.333% - 10px);  3 itens por linha com gap de 10px */
    text-align: center;
    margin-bottom: 1px;
}

.card-body-lista img {
    width: 28px !important;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    /* Garante que a imagem seja exibida completamente */
}

@media (max-width: 760px) {
    .container>main>section {
        gap: 20px;
    }
}
@media (min-width: 760px) and (max-width: 991px) {
    .container>main>section {
        display: flex;
        flex-wrap: wrap;
        /* gap: 20px; */
        justify-content: center;
    }
    .container>main>section>article {
        width: 40%;
        min-width: 300px !important;
        max-width: 340px;
        margin-bottom: 20px;
        display: block;
    }
    .lr-card {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container>main>section {
        gap: 20px 0;
    }
}


/* Para telas muito pequenas, podemos aumentar o padding */
@media (max-width: 480px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .card-body-lista li {
        width: calc(50% - 10px);
    }
}

.card-footer {
    padding: 20px;
    text-align: justify;
    font-size: 0.9rem;
    background-color: var(--background-rodape);
    color: var(--texto-rodape);
    border-top: 1px solid rgba(0,0,0,0.125);
}

.card-footer li>span {
    font-weight: 600;
}

.card-footer li {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    /* margin-top: 2px; */
    > div {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        justify-content: flex-start;
        
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.2rem;
        height: 100%;
        margin-top: 15px;
    }
    img {
        margin-top: 0;
        align-self: center;
        height: 24px;
        width: 24px;
        object-fit: contain;
    }
}

.card-footer img {
    width: 28px;
    height: auto;
}

.lr-highlight-plan .card-body-valor>h1 {
    background-color: var(--background-preco-destaque);

}


/* Estilos para o popup de serviços usando dialog */
dialog.modal-servicos {
    /* display: none; */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 740px;
    max-height: 80vh;
    min-height: 50vh;
    padding: 30px 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background-color: var(--backgound-bloco);
    z-index: 1000;
    overflow: hidden;
    color: var(--texto-geral);
}

.dialog-aberto::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(255, 117, 0, 0.28); */
    background-color: rgba(var(--background-preco), 0.28), transparent;
    backdrop-filter: blur(7px);
    z-index: 999;
    /* Menor que o z-index do dialog */
    pointer-events: auto;
}

.overlay-bg {
    position: fixed;
    z-index: 1000;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    /* cursor: pointer; */
    transition: opacity 0.2s;
}

.modal-servicos-content {
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

.modal-servicos-header h2 {
    /* margin-bottom: 20px; */
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--texto-menu);
}

.modal-servicos-header,
.modal-servicos-body,
.modal-servicos-footer {
    width: 100%;
}

button.modal-servicos-close {
    position: absolute;
    top: 10px;
    right: 25px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--sidebar-titulo-geral);
}

button.modal-servicos-close:hover {
    color: var(--botao-principal-hover);
}

.modal-servicos-body {
    flex-grow: 1;
    /* Permite que cresça e ocupe o espaço disponível */

    /* Permite rolagem se necessário */
    /* overflow-y: auto;  */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px;
    max-height: 350px;
    /* padding: 0 50px; */
    /* border: var(--secondary-color) 1px solid; */

}


.servicos-grid {
    box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.2);
    background-color: white;
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
    width: 100%;
    /* padding: 20px; */
    /* margin-bottom: 10px; */
    position:relative;
}

.servicos-grid section {
    padding: 10px 0;
    max-height: 100px;
    
}

.grid-servico-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 10px; */
    padding: 5px 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.servicos-inclusos .grid-servico-header {
    background-color: var(--popup-background-header-plano);
    color: var(--popup-texto-header-plano);
}

.servicos-adicionais .grid-servico-header {
    background-color: var(--popup-background-header-adicionais);
    color: var(--popup-texto-header-adicionais);
}



.modal-servicos-content img {
    width: 28px;
    height: auto;
    /* margin-bottom: 20px; */
}

.modal-servicos-footer {
    display: flex;
    justify-content: flex-end;
    /* align-items: last baseline; */
    /* padding: 15px 20px; */
    /* border-top: 1px solid #eee; */
    /* background-color: #f8f8f8; */
    gap: 20px;
    height: 100%;

    position: relative;
    z-index: 1001;
    background-color: var(--backgound-bloco);

    div {
        font-size: 1.5rem;
        font-weight: 600;
        /* color: var(--secondary-color); */
    }
    
    .valor-destaque {
        font-size: 1.9rem;
        font-weight: 700;
        /* color: var(--secondary-color); */
    }
    
    button {
        margin: 0;
    }
}


.servico-item ul {
    list-style: none;
    padding: 5px 20px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    /* justify-content: center; */
    /* margin: 1px 0; */
    overflow-y: auto;
    max-height: 71px;
}

.servico-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9f9f9;
    /* padding: 8px 12px; */
    border-radius: 6px;
    /* flex: 1 1 45%; */
    justify-content: space-between;
    width: 200px;
}

.servico-toggle div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-start;
    /* Para evitar que o texto fique muito próximo do switch */
    /* flex: 1 1 100%; */
    
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 0.8rem;
}

/* Estilo personalizado para o switch */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--checkbox);
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--checkbox-selecionado);
}

input:checked+.slider:before {
    transform: translateX(21px);
}

/* Notificação estilo toast */
.notification-toast {
    min-width: 300px;
    max-width: 90vw;
    background: #323232;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 1rem;
    margin-top: 0;
    opacity: 0.95;
    animation: fadeIn 0.3s;
    text-align: center;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 0.95; transform: translateY(0);}
}

/* No seu CSS global ou dentro de <style> no <head> */
.notification-toast-requires {
    background: var(--warning-color); /* verde */
    color: #333;
}
.notification-toast-excludes {
    background: var(--warning-color); /* vermelho */
    color: #333;
}
.notification-toast-recommends {
    background: var(--warning-color); /* amarelo */
    color: #333;
}

.servico-item {
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    max-height: 240px; /* valor grande o suficiente para o conteúdo */
    padding: 16px 0;
    overflow-y: scroll;
}
.servico-item.collapsed {
    max-height: 0 !important;
    padding: 0 !important;
}
.servico-item.expanded {
    max-height: 240px;
    height: 35vh;
    padding: 16px 0 !important;
}

.servico-item.expanded ul {
    max-height: 100%;
}


.adicionar-servico {
    cursor: pointer;
    position: relative;
    border-radius: 25px;
    overflow: hidden; /* Garante que o brilho não ultrapasse o border-radius */

    z-index: 1;
    animation: pulse-glow 4s infinite alternate;
}

.adicionar-servico::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    border-radius: 25px;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
    animation: glass-reflex 4s infinite;
}

@keyframes glass-reflex {
    0% {
        left: -60%;
    }
    50% {
        left: -60%;
    }
    75% {
        left: 110%;
    }
    100% {
        left: 110%;
    }
}

@keyframes pulse-glow {
    80% {
        box-shadow: 0 0 0 0 var(--background-preco-destaque), 0 0 0 0 var(--background-preco-destaque);
    }
    90% {
        box-shadow: 0 0 2px 0px var(--background-preco-destaque), 0 0 15px -5px var(--background-preco-destaque);
    }
    100% {
        box-shadow: 0 0 0 0 var(--background-preco-destaque), 0 0 0 0 var(--background-preco-destaque);
    }
}

/* Para diferenciar o pulso de cada botão, use nth-child ou nth-of-type */
.card-body-lista li.adicionar-servico:nth-of-type(1) {
    animation-delay: 0s;
}
.card-body-lista li.adicionar-servico:nth-of-type(2) {
    animation-delay: 3s;
}
.card-body-lista li.adicionar-servico:nth-of-type(3) {
    animation-delay: 1.5s;
}

#cleaning_services {
    background: #ccc;
    color: var(--secondary-color);
    position: absolute;
    top: -18px;
    right: 0px;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    padding: 1px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 2;
    transition: background 0.2s;
}
 #cleaning_services:hover {
    background: #e0e0e0;
}



.adicionais-actions {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o botão e o valor */
}

.btn-clean-svg {
    background: transparent;
    border: none;
    padding: 0 4px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

@keyframes broom-shake {
    0%   { transform: rotate(0deg);}
    1%   { transform: rotate(-10deg);}
    2%   { transform: rotate(12deg);}
    3%   { transform: rotate(-14deg);}
    4%   { transform: rotate(10deg);}
    5%   { transform: rotate(0deg);}
    100% { transform: rotate(0deg);}
}

.btn-clean-svg > img {
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
    animation: broom-shake 10s cubic-bezier(.36,.07,.19,.97) 0s infinite;
    transform-origin: 80% 30%;
}


.btn-clean-svg {
    display: none;
}
/* dsdfsdfdsf */
.broom-wrap {
    position: relative;
    display: inline-block;
}

.broom-wrap img {
    display: block;
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1);
    z-index: 2;
    position: relative;
}

/* Animação de pulsar suave para o brilho do SVG da vassoura */
@keyframes broom-svg-glow {
    0% {
        opacity: 0;
        filter: blur(0px) brightness(2);
        transform: scale(1);
    }
    80% {
        opacity: 0;
        filter: blur(0px) brightness(2);
        transform: scale(1);
    }
    90% {
        opacity: 0.7;
        filter: blur(1px) brightness(2);
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        filter: blur(0px) brightness(2);
        transform: scale(1);
    }
}

/* Pseudo-elemento para o brilho animado no formato do SVG */
.broom-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none; 
    background: url('https://www.siminternet.com.br/wp-content/uploads/2025/05/clean.svg') center/contain no-repeat;
    opacity: 0; 
    filter: blur(0px) brightness(2); 
    transform: scale(1);
    animation: broom-svg-glow 4s infinite;
    right: 3px;
    bottom: 3px;
}


/* Quando ativar, adiciona a classe .sidebar--open */
.sidebar.sidebar--open {
    transform: translateX(0); /* Mostra a sidebar */
}

/* ---------- */
/* Sidebar geral */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 550px; /* ajuste conforme seu layout */
    width: 85%;
    height: 100vh;
    background: var(--sidebar-background);
    box-shadow: 2px 0 8px #0002;
    z-index: 2000;
    overflow-y: auto; /* só aqui! */
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    padding: 0 24px 24px 24px;
    box-sizing: border-box;
    font-family: inherit;
    
}
.sidebar.sidebar--open {
    transform: translateX(0);
}

.sidebar > header {
    padding-top: 32px; /* Adicione aqui se quiser espaço acima do h2 */
    background: var(--sidebar-background);  /* Garante fundo branco atrás do sticky */
    
    position: sticky;
    top: 0;
    z-index: 10;
    padding-top: 16px;
    padding-bottom: 8px;
}

/* Título principal da sidebar */
.sidebar > header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--sidebar-titulo-geral);

    
}
.sidebar > p {
    font-size: 1.1rem;
    color: var(--sidebar-text);
    margin-bottom: 24px;
}

/* Lista de agrupadores */
.sidebar > section > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar > section > ul > li {
    margin-bottom: 28px;
    border-bottom: 1px solid #7e7e7e38;
    padding-bottom: 18px;
}
.sidebar > section > ul > li > h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sidebar-titulo-grupo);
    margin-bottom: 10px;
    margin-top: 0;

    position: sticky;
    top: 56px; /* altura do h2 + margin/padding */
    background: #fff;
    z-index: 9;
    padding-top: 8px;
    padding-bottom: 8px;
    /* Opcional: borda ou sombra para destacar */
    border-bottom: 1px solid #7e7e7e38;
}

/* Lista de itens do agrupador */
.sidebar .lista-itens {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Cada item: layout horizontal com imagem à esquerda e texto à direita */
.item-panel {
    position: relative;
    /* display: flex; */
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px #0001;
    margin-bottom: 18px;
    min-height: 90px;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 0;
    display: none;
}

.mostrar-item {
    display: flex;

}

.item-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 50%;
    background-image: inherit;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    filter: blur(16px) brightness(0.8) contrast(2);;
    z-index: 1;
    pointer-events: none;
}

/* Degradê para garantir legibilidade do texto */
.item-panel .item-gradient {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.75) 0%,rgba(255, 255, 255, 0.7) 15%,rgba(255, 255, 255, 0.9) 35%,rgb(255, 255, 255) 55%);
    z-index: 2;
    pointer-events: none;
}

/* Imagem principal menor, sobreposta à esquerda */
.item-panel .main-img {
    position: relative;
    z-index: 3;
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: auto 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0002;
    align-self: center;
    transition: width 0.4s cubic-bezier(.4,0,.2,1), height 0.3s cubic-bezier(.4,0,.2,1);
}

/* Texto ocupa o restante do espaço, sobre o degradê */
.item-panel .item-texto {
    position: relative;
    z-index: 4;
    flex: 1;
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
    transition: padding 0.4s cubic-bezier(.4,0,.2,1);
}

.item-panel .item-texto h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--sidebar-titulo-item);
    margin: 0 0 4px 0;
    text-align: left;
    line-height: 1.2;
    word-break: break-word;
}
.item-panel .item-texto p {
    font-size: 0.97rem;
    color: var(--sidebar-text);
    text-align: left;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

/* Hover */
.item-panel:hover {
    box-shadow: 0 4px 16px color-mix(in srgb, var(--background-preco-destaque), white 90%);
}

/* Responsivo */
@media (max-width: 900px) {
    .item-panel .main-img {
        width: 40px;
        height: 40px;
        margin: 12px 12px 12px 16px;
    }
    .item-panel .item-texto {
        padding: 12px 10px 12px 0;
    }
}
@media (max-width: 600px) {
    .item-panel .main-img {
        width: 32px;
        height: 32px;
        margin: 8px 8px 8px 8px;
    }
    .item-panel .item-texto {
        padding: 8px 6px 8px 0;
    }

    dialog.modal-servicos{
        padding: 15px 15px;
    }

    .modal-servicos-content {
        gap: 10px;
    }

    .modal-servicos-header {
        h2 {
            font-size: 1.5rem;
        }
    }

    .grid-servico-header {
        font-size: 1rem;
    }

    .modal-servicos-footer {
        gap: 10px;
        height: 100%;

        div {
            font-size: 1.2rem;
            font-weight: 600;
            /* color: var(--secondary-color); */
        }
        
        .valor-destaque {
            font-size: 1.5rem;
            font-weight: 700;
            /* color: var(--secondary-color); */
        }
        
        button {
            margin: 0;
            font-size: 1rem;
            width: 35%;
            min-width: 90px;
        }
    }
}

@media (max-width: 545px) {
    .servico-toggle {
        width: 37vw;
    }

    .servico-item ul {
        padding: 5px 5px;
        gap: 5px 12px;
    }
}

.sidebar-help-icon {
    font-size: 0.8em;
    margin-left: 6px;
    cursor: pointer;
    vertical-align: middle;
    transition: color 0.2s;
}
.sidebar-help-icon:hover,
.sidebar-help-icon:focus {
    color: color-mix(in srgb, var(--texto-geral), white 25%);
}

.sidebar-close-btn {
  position: absolute;
  top: -5px;
  right: -15px;
  background: none;
  border: none;
  font-size: 1.5rem !important;
  cursor: pointer;
  color: var(--sidebar-titulo-geral);
}

.sidebar-close-btn:hover {
    color: var(--botao-principal-hover);
}

.badge-incluso {
    color: var(--tag-incluso);
    background: var(--tag-incluso-backgound);
    border-radius: 12px;
    font-size: 0.85em;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 0;
    right: 0
}
.badge-extra {
    color: var(--tag-disponivel);
    background: var(--tag-disponivel-backgound);
    border-radius: 12px;
    font-size: 0.85em;
    padding: 2px 8px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 0;
    right: 0
}
.badge-incluso i,
.badge-extra i {
    font-size: 1em;
}

