/* =======================
   HEADER STYLES
   ======================= */
   nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: var(--bg-cream, #e8ddd3);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 25px;
        height: 100%;
    }
    
    .logo {
        display: flex;
        align-items: center;
        margin-top: 3px;
    }
    
    .logo img {
        height: 95px;
        width: auto;
        object-fit: contain;
    }
    
    /* Logo maior apenas no desktop */
    @media (min-width: 1025px) {
        .logo img {
            height: 95px !important;
        }
    }
    
    /* Menu Desktop */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 22px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        text-decoration: none;
        color: var(--text-dark, #8b7b6f);
        font-size: 15px;
        font-weight: 500;
        font-family: 'Georgia', serif;
        padding: 5px 0;
        transition: color 0.3s ease;
    }
    
    /* Garantir tamanho dos links de navegação (não do botão) no desktop */
    @media (min-width: 769px) {
        .nav-menu a:not(.btn-agendar) {
            font-size: 15px !important;
        }
    }
    
    .nav-menu a:hover {
        color: var(--text-darker, #6b5f54);
    }
    
    /* Botão Agenda - Desktop */
    .nav-menu .btn-agendar,
    .nav-menu a.btn-agendar,
    .btn-agendar {
        background: var(--button-brown, #a89687) !important;
        color: #ffffff !important;
        padding: 15px 38px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        transition: all 0.3s ease !important;
    }
    
    /* Garantir que não há estilos no index.html a sobrescrever no desktop */
    @media (min-width: 769px) {
        .nav-menu .btn-agendar,
        .nav-menu a.btn-agendar {
            padding: 15px 38px !important;
            font-size: 15px !important;
        }
    }
    
    .btn-agendar:hover {
        background: var(--text-darker, #6b5f54);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* Hamburger Button */
    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
        position: relative;
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-darker, #6b5f54);
        border-radius: 2px;
        pointer-events: none;
    }
    
    /* =======================
       RESPONSIVE
       ======================= */
    /* Tablet - 769px a 1024px */
    @media (min-width: 769px) and (max-width: 1024px) {
        .menu-toggle {
            display: flex !important;
        }
        
        .nav-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100vw;
            flex-direction: column;
            background: var(--bg-cream, #e8ddd3);
            padding: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            gap: 0;
            z-index: 999;
            margin: 0;
        }
        
        .nav-menu.active {
            display: flex;
        }
        
        .nav-menu li {
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu a {
            display: block;
            width: 100%;
            padding: 15px 0;
            text-align: center;
            font-size: 16px;
            border-bottom: 1px solid rgba(139,123,111,0.15);
            white-space: normal;
        }
        
        .nav-menu li:last-child a {
            border-bottom: none;
        }
        
        .nav-menu .btn-agendar {
            margin: 15px auto 0;
            padding: 15px 20px;
            font-size: 17px;
            display: block;
            width: calc(100% - 40px);
            max-width: calc(100% - 40px);
            text-align: center;
            color: #ffffff !important;
        }
    }
    
    @media (max-width: 768px) {
        nav {
            height: 60px;
        }
        
        .nav-container {
            height: 60px;
            padding: 0 10px;
            padding-left: 5px;
            padding-right: 5px;
            justify-content: space-between !important;
            align-items: center !important;
        }
        
        .logo {
            margin-left: -5px;
            flex-shrink: 1;
            min-width: 0;
            max-width: calc(100% - 50px);
        }
        
        .logo img {
            height: 75px;
            max-height: 75px;
            max-width: 100%;
            object-fit: contain;
        }
        
        .menu-toggle {
            display: flex !important;
            padding: 8px;
            z-index: 1001 !important;
            position: relative;
            pointer-events: auto !important;
            cursor: pointer !important;
            opacity: 1 !important;
            visibility: visible !important;
            flex-shrink: 0 !important;
            margin-left: auto !important;
            margin-right: 0 !important;
        }
    
        .nav-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100vw;
            flex-direction: column;
            background: var(--bg-cream, #e8ddd3);
            padding: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            gap: 0;
            z-index: 999;
            margin: 0;
        }
    
        .nav-menu.active {
            display: flex;
        }
    
        .nav-menu li {
            width: 100%;
            margin: 0;
            padding: 0;
        }
    
        .nav-menu a {
            display: block;
            width: 100%;
            padding: 15px 0;
            text-align: center;
            font-size: 16px;
            border-bottom: 1px solid rgba(139,123,111,0.15);
            white-space: normal;
        }
    
        .nav-menu li:last-child a {
            border-bottom: none;
        }
        
        .nav-menu .btn-agendar {
            margin: 15px auto 0;
            padding: 15px 20px;
            font-size: 17px;
            display: block;
            width: calc(100% - 40px);
            max-width: calc(100% - 40px);
            text-align: center;
            color: #ffffff !important;
        }
    }
    