/*
Theme Name: Portal Infortech Native
Theme URI: https://portalinfortech.io/
Author: Infortech Media Group
Description: Tema nativo e incrivelmente rápido do Portal Infortech, totalmente integrado com o WordPress sem necessidade de Supabase ou React pesante no Front-End.
Version: 2.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
License: Proprietary
Text Domain: portal-infortech
*/

/* O Tailwind CSS será carregado via CDN na header.php ou pode adicionar os utilitários aqui mais tarde */
body {
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

/* Verge-style scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border-left: 1px solid #e5e5e5;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
  background: #e91e63;
}

::selection {
  background: #e91e63;
  color: white;
}

/* Fixes for native WordPress Menus using Tailwind color scheme */
ul.flex>li.menu-item {
  display: flex;
  align-items: center;
}

.menu-item a {
  transition: all 0.3s ease;
}

.menu-item a:hover {
  color: #e91e63;
}

#mobile-menu .menu-item {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}