 /* ==========================================
           TEMA ESCURO NATIVO E BLINDADO
        ========================================== */
        :root {
            --primary-green: #10b981;
            /* O !important bloqueia qualquer tentativa do sistema mudar a cor */
            --bg-overlay: rgba(10, 10, 10, 0) !important;
            --text-main: #f8fafc !important;
            --text-muted: #94a3b8 !important;
            --card-bg: #1e293b !important;
            --border-color: rgba(51, 65, 85, 0.5) !important;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        
        body {
            background-image: url('img/backgrounds/fundopaginainicial.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-main);
            min-height: 100vh;
        }

        .overlay {
            background-color: var(--bg-overlay);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        /* CABEÇALHO DO TOPO */
        .top-header {
            display: flex; justify-content: flex-end; align-items: center;
            padding: 20px 40px; gap: 15px; flex-wrap: wrap;
        }

        .rating-badge {
            display: flex; align-items: center; gap: 5px;
            background: rgba(217, 119, 6, 0.1); color: #d97706; 
            border: 1px solid rgba(253, 230, 138, 0.5);
            padding: 6px 12px; border-radius: 20px; font-weight: 600; font-size: 14px;
            text-decoration: none; transition: 0.2s;
        }
        .rating-badge:hover { filter: brightness(0.9); background: rgba(217, 119, 6, 0.2); }

        .status-badge {
            display: flex; align-items: center; gap: 6px;
            border: 1px solid var(--border-color);
            padding: 6px 12px; border-radius: 20px; font-weight: 600; font-size: 14px;
            background: transparent; color: var(--text-main);
            cursor: pointer; transition: 0.2s;
        }
        .status-badge:hover { background: var(--card-bg); }
        .status-dot { color: var(--primary-green); font-size: 10px; }

        .btn-order-top {
            background: var(--primary-green); color: white;
            text-decoration: none; font-weight: 700; padding: 8px 20px;
            border-radius: 8px; font-size: 14px; transition: 0.2s;
        }
        .btn-order-top:hover { filter: brightness(0.9); }

        /* CENTRO (HERO SECTION) */
        .hero-section {
            flex-grow: 1; display: flex; align-items: center; justify-content: center; padding: 40px;
        }

        .hero-container {
            display: flex; align-items: center; justify-content: center; gap: 60px;
            max-width: 900px; width: 100%;
        }

        .hero-info { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
        .hero-logo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 2px solid var(--primary-green); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .hero-title { font-size: 40px; font-weight: 800; margin-bottom: 5px; display: flex; align-items: center; gap: 10px;}
        .hero-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; font-weight: 500;}
        
        .service-badges { display: flex; gap: 15px; margin-bottom: 20px; }
        .s-badge { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text-main); }
        .s-badge svg { color: var(--primary-green); width: 18px; height: 18px; }

        .hero-address { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-muted); line-height: 1.5; max-width: 400px; text-decoration: none; transition: color 0.2s; cursor: pointer; }
        .hero-address:hover, .hero-address:hover span { color: var(--primary-green) !important; }
        
        /* BOTÕES PRINCIPAIS */
        .hero-actions { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 320px; }
        .btn-hero {
            display: flex; align-items: center; justify-content: center;
            background: var(--primary-green); color: white;
            text-decoration: none; font-weight: 700; font-size: 18px;
            padding: 18px; border-radius: 8px; transition: 0.2s;
            width: 100%; text-align: center; border: none; cursor: pointer;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }
        .btn-hero:hover { filter: brightness(0.9); transform: translateY(-2px); }

        /* SESSÃO DE CLIENTES E FOOTER */
        .reviews-section { text-align: center; padding: 40px 20px; }
        .reviews-section h3 { font-size: 24px; font-weight: 800; color: var(--text-main); }

        .footer {
            display: flex; justify-content: space-between; align-items: center;
            padding: 30px 40px; border-top: 1px solid var(--border-color);
            flex-wrap: wrap; gap: 20px;
        }

        .footer-links { display: flex; gap: 20px; flex-wrap: wrap;}
        .footer-links a { color: var(--text-main); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s;}
        .footer-links a:hover { color: var(--primary-green); }

        .footer-social { display: flex; gap: 15px; align-items: center; }
        .icon-btn {
            background: transparent; border: 1px solid var(--border-color);
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-main); text-decoration: none; transition: 0.2s; cursor: pointer;
        }
        .icon-btn:hover { background: var(--border-color); }

        /* MODAL DE INFORMAÇÕES */
        .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); align-items: center; justify-content: center; z-index: 1000; }
        .info-modal-content { background: var(--card-bg); width: 100%; max-width: 480px; max-height: 90vh; border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
        .info-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border-color); }
        .info-modal-header h2 { font-size: 18px; font-weight: 700; color: var(--text-main);}
        .close-btn { background: none; border: none; font-size: 20px; font-weight: bold; cursor: pointer; color: var(--text-main); }
        .info-modal-body { padding: 20px; overflow-y: auto; text-align: left;}
        
        /* Barra de rolagem nativa para o modal da Home (Verde) */
        .info-modal-body::-webkit-scrollbar { width: 6px; }
        .info-modal-body::-webkit-scrollbar-track { background: transparent; }
        .info-modal-body::-webkit-scrollbar-thumb { background-color: rgba(16, 185, 129, 0.4); border-radius: 10px; }
        
        .info-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
        .info-title-row h3 { font-size: 20px; font-weight: 700; max-width: 85%; color: var(--text-main);}
        .info-logo { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
        .info-icons { display: flex; gap: 10px; margin-bottom: 25px; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
        .info-section { margin-bottom: 25px; }
        .info-section h4 { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: var(--text-main);}
        .address-text { font-size: 14px; color: var(--text-main); line-height: 1.5; }
        .service-box { border: 1px solid var(--border-color); border-radius: 8px; margin-bottom: 15px; overflow: hidden; }
        .service-box-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; background: transparent; }
        .service-title { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-main);}
        .service-details { padding: 15px; background: rgba(255,255,255,0.03); border-top: 1px solid var(--border-color); font-size: 13px; color: var(--text-muted); display: flex; flex-direction: column; gap: 8px; }
        .service-details strong { color: var(--text-main); }
        .warning-text { color: #ef4444; }
        .hours-list { list-style: none; }
        .hours-list li { display: flex; justify-content: space-between; padding: 10px 15px; font-size: 14px; color: var(--text-main); border-radius: 6px; }
        .hours-list li.closed-day { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }
        .hidden { display: none !important; }

        /* RESPONSIVIDADE (CELULAR) */
        @media (max-width: 768px) {
            .top-header { padding: 15px 20px; justify-content: center; }
            .hero-section { padding: 20px; }
            .hero-container { flex-direction: column; text-align: center; gap: 30px; }
            .hero-info { align-items: center; }
            .hero-title { justify-content: center; font-size: 32px;}
            .service-badges { justify-content: center; }
            .hero-address { justify-content: center; text-align: center; margin: 0 auto;}
            .hero-actions { max-width: 100%; }
            .footer { flex-direction: column; text-align: center; padding: 20px; }
            .footer-links { justify-content: center; }
            .info-modal-content { margin: 20px; }
        }
