/*
Theme Name: Quantum Projects 
Theme URI: quantumprojects.com.br
Author: Marcos Reis
Author URI: https://meusite.com
Description: Um tema WordPress personalizado.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meu-tema
*/

@import url(./css/header.css);
@import url(./css/fonts.css);
@import url(./css/home.css);
@import url(./css/footer.css);
@import url(./css/swiper.css);
@import url(./css/swiper-bundle.min.css);
@import url(./css/sobre.css);
@import url(./css/servicos.css);
@import url(./css/news.css);

h1,h2,h3,h4,h5,h6,p{
	margin: 0;
}

:root {
  --blue: #003267;
  --red: #d22e57;
}

*{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;	
	line-height: 1.5;
  font-family: 'Arimo Regular' , sans-serif;
}

.btn:focus, button:focus, .navbar-toggler:focus, .navbar-toggler:hover, input:focus, textarea, select, video{
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    outline: none;
    text-decoration: none;
}

a{
	text-decoration: none;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: var(--blue) !important; 
}
::-webkit-scrollbar-thumb:hover {
  background: darkgray; 
}

html{
	scroll-behavior: smooth !important;
}

body, footer, section{
	position: relative !important;
	overflow-x: hidden !important;	
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff9b4e;
  z-index: 9999999999999;
}

.content-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-loader img {
  width: 240px;
  animation: resize 1.5s ease-in-out infinite;
}

@keyframes resize {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


/* Todas as imagens do site */
.image-none {
  -webkit-user-drag: none; /* Chrome, Safari */
  -khtml-user-drag: none;
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome/Safari */
  -ms-user-select: none; /* Edge antigo */
  user-select: none;

  pointer-events: none; /* impede clique, drag, seleção */
}
