 <style>
                                  /* ISOLAMENTO COMPLETO DA NAV BAR PARA NÃO DAR CONFLITO COM AS CLASSES DE 'restaurante_estrutura.css'
/*##############################################################################################################################*/
/* Container isolado para o nav */
.nav-wrapper {
    /* Isola completamente o nav dos estilos globais */
    all: initial;
    font-family: initial;
    box-sizing: border-box;
    display: block;
    width: 100%;
}

/* Redefine todos os estilos específicos do nav dentro do wrapper */
.nav-wrapper * {
    box-sizing: border-box;
}

.nav-wrapper .logo {
    margin: 20px 5% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    font-family: 'Times New Roman', Times, serif !important;
}

.nav-wrapper .logo-conteudo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
}

.nav-wrapper .logo_img {
    height: auto !important;
    max-height: 120px !important;
    width: auto !important;
    max-width: 150px !important;
    transition: all 0.3s ease !important;
}

.nav-wrapper .mini-carrossel {
    width: 100% !important;
    max-width: 300px !important;
    height: 70px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.nav-wrapper .mini-carrossel .slide {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    opacity: 0 !important;
    z-index: 0 !important;
    transition: left 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
    background-color: white !important;
    border-radius: 10px !important;
}

.nav-wrapper .mini-carrossel .slide.active {
    left: 0 !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

.nav-wrapper .mini-carrossel .slide.out {
    left: -100% !important;
    opacity: 0 !important;
    z-index: 0 !important;
}

.nav-wrapper .alinhamento {
    margin-left: 5% !important;
    margin-right: 5% !important;
    position: relative !important;
}

.nav-wrapper nav {
    background-color: orange !important;
    height: 50px !important;
    border-radius: 30px !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Times New Roman', Times, serif !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-wrapper nav ul {
    list-style: none !important;
    display: flex !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.nav-wrapper nav ul li a {
    color: white !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    font-size: clamp(12px, 2.5vw, 16px) !important;
    padding: 8px 12px !important;
    border-radius: 15px !important;
    white-space: nowrap !important;
    display: block !important;
    font-family: 'Times New Roman', Times, serif !important;
}

.nav-wrapper nav ul li a:hover {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Responsividade do nav isolado */
@media (max-width: 1024px) {
    .nav-wrapper nav ul {
        gap: 15px !important;
    }
    
    .nav-wrapper nav ul li a {
        font-size: clamp(11px, 2vw, 15px) !important;
        padding: 6px 10px !important;
    }
}

@media (max-width: 768px) {
    .nav-wrapper nav {
        height: auto !important;
        border-radius: 20px !important;
        padding: 15px !important;
    }

    .nav-wrapper nav ul {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
    }

    .nav-wrapper nav ul li {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-wrapper nav ul li a {
        font-size: 16px !important;
        padding: 12px 20px !important;
        display: block !important;
        width: 100% !important;
        border-radius: 15px !important;
        transition: all 0.3s ease !important;
    }

    .nav-wrapper nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.2) !important;
        transform: scale(1.05) !important;
    }

    .nav-wrapper .alinhamento {
        margin-left: 3% !important;
        margin-right: 3% !important;
    }

    .nav-wrapper .logo {
        margin: 15px 3% !important;
    }

    .nav-wrapper .logo_img {
        max-height: 100px !important;
        max-width: 120px !important;
    }

    .nav-wrapper .mini-carrossel {
        max-width: 250px !important;
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .nav-wrapper nav {
        padding: 12px !important;
        border-radius: 15px !important;
    }

    .nav-wrapper nav ul {
        gap: 10px !important;
    }

    .nav-wrapper nav ul li a {
        font-size: 15px !important;
        padding: 10px 15px !important;
    }

    .nav-wrapper .alinhamento nav {
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-wrapper .logo {
        margin: 12px 2% !important;
        gap: 12px !important;
    }

    .nav-wrapper .logo_img {
        max-height: 80px !important;
        max-width: 100px !important;
    }

    .nav-wrapper .mini-carrossel {
        max-width: 200px !important;
        height: 50px !important;
    }
}

@media (max-width: 360px) {
    .nav-wrapper .alinhamento {
        margin-left: 1% !important;
        margin-right: 1% !important;
    }

    .nav-wrapper nav {
        padding: 10px !important;
    }

    .nav-wrapper nav ul li a {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }

    .nav-wrapper .mini-carrossel {
        max-width: 180px !important;
        height: 45px !important;
    }
}
/*##############################################################################################################################*/

    

      /* ===== RESET E ESTILOS GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* ===== LAYOUT PRINCIPAL ===== */
.alinhamento {
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== HEADER E LOGO ===== */
header {
    padding: 25px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-items: center;
    padding: 10px 0;
}

.logo-img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

/* ===== BOTÃO LOGIN/PERFIL ===== */
.botao_login {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: orange;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #dd6f08;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px auto;
    max-width: 200px;
}

.avatar-foto, .avatar-foto_3 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botao_login:hover .avatar-foto {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ===== CARROSSEL PRINCIPAL ===== */
.slideshow-container {
    width: 100%;
    position: relative;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mySlides {
    display: none;
    width: 100%;
    transition: opacity 1s ease-in-out;
}

.mySlides img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 5s ease;
}

.mySlides img:hover {
    transform: scale(1.02);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}

.next {
    right: 15px;
}

.prev {
    left: 15px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

/* ===== SEÇÃO PRINCIPAL ===== */
main {
    padding: 20px 0;
}

section {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #dd6f08;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

h2:hover {
    color: #ff8c00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* ===== GALERIA ===== */
.galeria {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
}

.galeria img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.5s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.galeria img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    filter: brightness(1.05);
}

.imagem-alta {
    grid-row: span 2;
}

/* ===== MAPA ===== */
.mapa {
    margin: 30px 0;
    transition: all 0.3s ease;
}

.mapa:hover {
    transform: translateY(-5px);
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.mapa iframe:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.01);
}

/* ===== FOOTER ===== */
footer {
    background-color: rgb(247, 132, 0);
    color: rgb(0, 0, 0);
    padding: 30px 0;
    margin-top: 40px;
    transition: all 0.3s ease;
}

footer:hover {
    background-color: rgb(255, 140, 0);
}

footer > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

footer h3:hover {
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

footer img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

footer img:hover {
    transform: scale(1.1);
}

/* ===== MODAIS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.modal-buttons button {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-buttons .sair {
    background-color: orange;
    color: white;
    border: none;
}

.modal-buttons .sair:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 0, 0.3);
}

.modal-buttons .cancelar {
    background-color: white;
    color: orange;
    border: 2px solid orange;
}

.modal-buttons .cancelar:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.avatar-foto_2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    animation: zoomFadeIn 0.6s ease-out forwards;
    border: 3px solid orange;
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar-foto_2:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border-color: #ff8c00;
}

.upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.custom-file-label {
    background-color: orange;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-file-label:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 0, 0.3);
}

.botao_foto {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.botao_foto:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 0, 0.3);
}

/* ===== MENSAGENS DE FEEDBACK ===== */
.caixa-boas-vindas, .caixa-boas-vindas_02 {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    z-index: 9999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.5s ease-out, fadeout 1s ease-out 4s forwards;
    max-width: 90%;
    transform: translateX(120%);
    opacity: 0;
}

.caixa-boas-vindas {
    background-color: #e0ffe0;
    color: #006600;
    border: 2px solid #00aa00;
}

.caixa-boas-vindas_02 {
    background-color: #ffe0e0;
    color: red;
    border: 2px solid red;
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== MINI CARROSSEL ===== */
.mini-carrossel {
    width: 100%;
    height: 70px;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mini-carrossel:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.mini-carrossel .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s ease;
}

/* ===== MODO ESCURO ===== */
body.modo-escuro {
    background-color: #333;
    color: #f0f0f0;
}

body.modo-escuro .modal-content {
    background-color: #444;
    color: #f0f0f0;
    border: 1px solid #555;
}

body.modo-escuro .modal-buttons .cancelar {
    background-color: #555;
    color: #f0f0f0;
    border-color: #f0f0f0;
}

body.modo-escuro .modal-buttons .cancelar:hover {
    background-color: #666;
}

body.modo-escuro .label_trocar_foto {
    color: #f0f0f0;
}

body.modo-escuro .modal-buttons .sair {
    background-color: #ff8c00;
}

body.modo-escuro .modal-buttons .sair:hover {
    background-color: #e67e00;
}

body.modo-escuro .custom-file-label,
body.modo-escuro .botao_foto {
    background-color: #ff8c00;
}

body.modo-escuro .custom-file-label:hover,
body.modo-escuro .botao_foto:hover {
    background-color: #e67e00;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomFadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeout {
    to { opacity: 0; visibility: hidden; }
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 576px) {
    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .upload-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .alinhamento {
        padding: 0 50px;
    }
    
    .botao_login {
        position: absolute;
        top: 20px;
        right: 5%;
        margin: 0;
    }
    
    footer > div {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .modal-content {
        padding: 30px;
    }
}

@media (min-width: 992px) {
    .galeria {
        grid-template-columns: repeat(2, 1fr) auto;
        max-width: 1000px;
        margin: 30px auto;
    }
    
    .imagem-alta {
        width: 240px;
        height: 300px;
    }
    
    .mapa iframe {
        height: 450px;
    }
    
    /* Restaurar layout original de desktop */
    .caixa {
        width: 800px;
        height: 250px;
        margin-left: 400px;
        margin-top: -305px;
    }
    
    .btn_reservar {
        margin-top: -30px;
        margin-left: 330px;
    }
    
    .icone {
        margin-left: -800px;
    }
    
    .pix {
        margin-top: -58px;
        margin-left: 50px;
    }
    
    .cartao {
        margin-left: -80px;
        margin-top: -20px;
    }
    
    .linha {
        border-left: 2px solid #000;
        height: 1000px;
        margin-left: 750px;
    }
}

@media (min-width: 1200px) {
    .alinhamento {
        padding: 0 100px;
    }
}

/* ===== HOVER EFFECTS (apenas para dispositivos com hover) ===== */
@media (hover: hover) {
    .logo-img:hover {
        transform: scale(1.06);
    }
    
    .galeria img:hover {
        transform: scale(1.05);
    }
    
    .mapa iframe:hover {
        transform: scale(1.06);
    }
    
    .modal-content:hover {
        transform: scale(1.03);
    }
    
    .botao_login:hover {
        transform: scale(1.05);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .modal-buttons button:hover {
        transform: scale(1.05);
    }
    
    .custom-file-label:hover, .botao_foto:hover {
        background-color: darkorange;
    }
}

.gear-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* Ícone da engrenagem */
.fa-cog {
    font-size: 1.5rem;
    color: #dd6f08;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fa-cog:hover {
    transform: rotate(90deg) scale(1.1);
    color: #ff8c00;
}

/* Menu de configurações */
.gear-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 100;
    overflow: hidden;
    animation: fadeIn 0.2s ease-out;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gear-menu.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.gear-menu button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    text-align: left;
    background: none;
    border: none;
    color: #333;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gear-menu button:hover {
    background-color: #f5f5f5;
    color: #dd6f08;
    transform: translateX(5px);
}

.gear-menu button i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Estilo para modo escuro */
body.modo-escuro .gear-menu {
    background-color: #444;
    border: 1px solid #555;
}

body.modo-escuro .gear-menu button {
    color: #f0f0f0;
}

body.modo-escuro .gear-menu button:hover {
    background-color: #555;
    color: orange;
}

/* Responsividade */
@media (max-width: 480px) {
    .gear-menu {
        min-width: 180px;
        right: -10px;
    }
    
    .gear-menu button {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

input[type="file"] {
    display: none;
}

.email-usuario {
    color: #666;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 12px;
    text-align: center;
    transition: color 0.3s ease;
}

body.modo-escuro .email-usuario {
    color: #aaa;
}

/* Estilos para o modal de confirmação de exclusão */
.modal-exclusao .modal-content {
    max-width: 500px;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.texto-exclusao {
    margin: 15px 0;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

body.modo-escuro .texto-exclusao {
    color: #ccc;
}

/* Efeito de hover para o avatar no botão de login */
.botao_login:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

/* Efeito de transição suave para o nome do usuário */
.nome-usuario {
    transition: all 0.3s ease;
}

.botao_login:hover .nome-usuario {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

/* Efeito de hover para os botões do modal */
.modal-buttons button i {
    transition: transform 0.3s ease;
}

.modal-buttons button:hover i {
    transform: scale(1.2);
}

/* Efeito de hover para o ícone de engrenagem */
.gear-container:hover .fa-cog {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efeito de hover para o label do arquivo */
.custom-file-label i {
    transition: transform 0.3s ease;
}

.custom-file-label:hover i {
    transform: scale(1.2);
}

/* Efeito de hover para o botão de foto */
.botao_foto i {
    transition: transform 0.3s ease;
}

.botao_foto:hover i {
    transform: scale(1.2);
}

/* Efeito de transição para o texto do modal */
.modal-content h2 {
    transition: all 0.3s ease;
}

.modal-content:hover h2 {
    color: #ff8c00;
}

/* Efeito de hover para o separador */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 165, 0, 0.75), rgba(0, 0, 0, 0));
    transition: all 0.3s ease;
}

.modal-content:hover hr {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 140, 0, 0.8), rgba(0, 0, 0, 0));
    height: 2px;
}

body.modo-escuro hr {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0));
}

body.modo-escuro .modal-content:hover hr {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 165, 0, 0.8), rgba(0, 0, 0, 0));
}

/* Efeito de hover para o aviso de exclusão */
.aviso_exclusao {
    text-align: center;
    margin: 15px 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.modal-content:hover .aviso_exclusao {
    color: #ff8c00;
}

body.modo-escuro .aviso_exclusao {
    color: #f0f0f0;
}

body.modo-escuro .modal-content:hover .aviso_exclusao {
    color: #ffb74d;
}

/* Efeito de hover para o email do usuário */
.modal-content:hover .email-usuario {
    color: #888;
}

body.modo-escuro .modal-content:hover .email-usuario {
    color: #bbb;
}