/* Seu CSS inline aqui */
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -250px;
    background: #f8f9fa;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    left: 0;
}

.content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.content.shifted {
    margin-left: 250px;
}

.fixed-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(87, 3, 3, 0.1);
    z-index: 900;
    height: 60px;
}

.main-content {
    padding-top: 100px;
}

/*.dropdown-item {
    border-left: 5px solid transparent;
    transition: border-color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    border-left: 5px solid #ff7828;
}*/

@media print {

    /* Esconde o menu e o footer na impressão */
    .no-print,
    footer {
        display: none;
    }
}

@media print {

    /* Esconde a barra de endereços e URL durante a impressão */
    .no-print,
    .no-print * {
        display: none !important;
    }

    /* Você também pode esconder a parte do rodapé de impressão, que pode conter a URL */
    body {
        visibility: visible;
    }

    .no-print {
        visibility: hidden;
    }
}

/* Estilos para o modo escuro */
body.dark-mode {
    background-color: #121212;
    /* Cor de fundo escura */
    color: #ffffff;
    /* Cor do texto clara */
}

/* Outros estilos do modo escuro para diferentes elementos */
body.dark-mode .header-item {
    background-color: #333;
}

body.dark-mode .btn {
    background-color: #444;
    color: #fff;
}

/* Exemplo de texto e links no modo escuro */
body.dark-mode a {
    color: rgb(230, 84, 0);
    /* Cor dos links no modo escuro */
}

body.dark-mode .footer {
    background-color: #222;
}

/* Estilização do botão */
.btn.header-item {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    transition: background-color 0.3s;
}

/* Estilo do botão no modo claro */
.btn.header-item.light {
    background-color: #e0e0e0;
}

/* Estilo do botão no modo escuro */
.btn.header-item.dark {
    background-color: #333;
}

/* Círculo que desliza */
.btn.header-item::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #f1c40f;
    /* Cor do sol */
    border-radius: 50%;
    top: 50%;
    /* Centraliza verticalmente */
    transform: translateY(-50%);
    /* Ajusta para o centro vertical */
    left: 3px;
    transition: transform 0.3s, background-color 0.3s;
}

/* Posição do círculo no modo escuro */
.btn.header-item.dark::before {
    transform: translateX(30px) translateY(-50%);
    /* Mantém o ajuste vertical */
    background-color: #ccc;
    /* Cor da lua */
}

/* Ícones */
.icon-lg {
    font-size: 16px;
    color: #333;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
}

/* Posiciona o ícone do sol à esquerda, centralizado com o círculo */
.fa-sun {
    left: 6px;
    /* Ajustado para centralizar com o círculo (3px + metade da largura do círculo: 24px/2 = 12px, menos metade do ícone ~6px) */
}

/* Posiciona o ícone da lua à direita, centralizado com o círculo */
.fa-moon {
    right: 6px;
    /* Ajustado para centralizar com o círculo (3px + metade da largura do círculo: 24px/2 = 12px, menos metade do ícone ~6px) */
}

/* Exibe o sol no modo claro, esconde a lua */
.btn.header-item.light .fa-sun {
    opacity: 1;
}

.btn.header-item.light .fa-moon {
    opacity: 0;
}

/* Exibe a lua no modo escuro, esconde o sol */
.btn.header-item.dark .fa-sun {
    opacity: 0;
}

.btn.header-item.dark .fa-moon {
    opacity: 1;
}



/*Menu Heade */
/* Menu Header Exclusivo */
/* Menu Header - Evita conflito com outros estilos */
.mh-sortable {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
}

.mh-item {
    margin: 5px 0;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mh-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mh-left {
    display: flex;
    align-items: center;
}

.mh-right {
    display: flex;
    align-items: center;
}

.mh-handle {
    cursor: move;
    margin-right: 10px;
}

.mh-name {
    font-weight: bold;
    margin-right: 10px;
}

.mh-url {
    color: #666;
    margin-right: 10px;
}

.mh-toggle-icon {
    cursor: pointer;
    margin-left: 10px;
}

.mh-sortable ul {
    display: none;
}

.mh-item.ui-sortable-helper {
    background: #e0e0e0;
}

.ui-state-highlight {
    height: 20px;
    background: #e6e6e6;
    border: 1px dashed #ccc;
}

/*Lembretes*/
.status-toggle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    background-color: #fff;
    transition: all 0.3s ease;
}

.status-toggle:checked {
    background-color: red;
    border-color: red;
}

.status-text {
    transition: all 0.3s ease;
    color: black;
}

.status-toggle:checked+.status-text {
    color: red;
    text-decoration: line-through;
    text-decoration-color: currentColor;
    text-decoration-style: solid;
    text-decoration-thickness: auto;
}


/*index*/
/* WhatsApp */
.app-fab {
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.app-fab--left {
    left: 0;
}

.app-fab--right {
    right: 0;
}

.app-fab__container {
    display: flex;
    padding: 10px;
}

.app-fab__container--vertical {
    flex-direction: column;
}

.app-fab__container--horizontal {
    flex-direction: row;
}

.app-fab__item {
    width: 50px;
    margin: 5px;
    cursor: pointer;
}

.app-fab__item .link {
    display: block;
}

.app-fab__item .img {
    max-width: 100%;
}


.carousel-container {
    position: relative;
}

.carousel-image {
    display: none;
    width: auto;
    height: 80%;
}

.carousel-image.active {
    display: block;
}

.image-mask {
    /* Dimensões fixas da máscara */
    width: 400px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Opcional: bordas arredondadas */
}

.image-mask {
    /* Configura a imagem como fundo */
    background-size: cover;
    /* Ajusta a imagem para cobrir o container, mantendo a proporção */
    background-position: center;
    /* Centraliza a imagem */
    background-repeat: no-repeat;
    /* Evita repetição da imagem */
}

/* Mantém o efeito de hover */
.image-hover-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Overlay escuro ao passar o mouse */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover-overlay:hover::before {
    opacity: 1;
}

.image-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover-overlay:hover .image-hover-icon {
    opacity: 1;
}

/* Menu  Lua de Mel --> */
.lua-item {
    position: relative;
    font-size: 1.25rem;
    font-weight: 492;
    padding: 1.7rem 0;
    margin-right: -0.5rem;
}

.lua-link {
    padding: 10px 15px;
    background-color: var(--bs-primary);
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: white;
    text-decoration: none;
}

.lua-item.active .lua-link {
    background-color: var(--bs-primary);
    color: white;
}

.lua-link:hover {
    background-color: var(--bs-secondary);
    color: white;
}

/* Home Session Mini Selos --> */
.selos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin:
        20px 30px;
}

.selos-container {
    & .selos {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: fit-content !important;
        padding:
            20px;
        border-radius:
            20px;
        gap:
            40px;
    }
}

/* Home Session Fotografia */
.btn-instagram {
    border: 2px solid #C13584;
    color: #C13584;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background-color: #C13584;
    color: white;
}

.text-instagram {
    color: #C13584 !important;
}

/* Index Pacotes*/
.custom-image-hover {
    display: block;
    width: 100%;
    height: 237px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.custom-image-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.custom-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.custom-image-hover:hover .custom-image-overlay::before {
    opacity: 1;
}

.custom-image-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-image-hover:hover .custom-image-icon {
    opacity: 1;
}
/* final pacotes*/