@charset "UTF-8";
/*
Theme Name: Pixelads V4
Theme URI: 
Author: Daniel
Version: 1.5.5
Author URI: 
*/

/* Reset CSS */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
ol,
li,
form,
label,
input,
textarea,
button,
select,
option,
table,
thead,
tbody,
tr,
th,
td,
blockquote {

  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;

}



ol,
ul {

  list-style: none;

}



table {

  border-collapse: collapse;
  border-spacing: 0;

}



img {

  max-width: 100%;
  height: auto;
  display: block;

}



/* End of Reset CSS */



* {

  box-sizing: border-box;

}



@font-face {

  font-family: 'Open Sans';
  src: url('./fonts/opensans-variablefont_wdthwght-webfont.woff') format('woff'),
    url('./fonts/opensans-variablefont_wdthwght-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;

}



/* Fontes */

body {

  font-family: 'Open Sans', sans-serif;
  /* Exemplo de fonte sem serifa */

  font-size: 16px;
  line-height: 1.5;
  color: #333;

}

a {

  color: #333;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.header-nav
 {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: center;
  justify-content:center;
}
.header-nav ul{
	 display: flex;
  	gap: 40px;
	list-style-type: none;
	width:90%;
	justify-content:center;
}
.menu__btn,
#menu__toggle {
  display: none;
}

@media(max-width:1200px) {
  #menu__toggle {
    opacity: 0;
  }

  #menu__toggle:checked+.menu__btn>span {
    transform: rotate(45deg);
  }

  #menu__toggle:checked~.menu__box {
    left: 0;
    z-index: 999;
  }

  #menu__toggle:checked~body,
  #menu__toggle:not(:checked)~body {
    overflow: hidden;
  }

  #menu__toggle:not(:checked)~.menu__btn {
    position: relative;
  }

  .menu__box {
    display: block;
    position: relative;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #ECEFF1;
    transition-duration: .25s;
    z-index: 999;
  }

  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }

  .menu__item:hover {
    background-color: #CFD8DC;
  }

  header {
    justify-content: start;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100lvh;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #ECEFF1;
    transition-duration: .25s;
    z-index: 999;
  }

  .menu__btn {
    display: block;
    position: fixed;
    right: 65px;
    top: 12px;
    width: 26px;
    cursor: pointer;
    color: white;
    z-index: 1000;
  }

  .header-nav ul {
    width: 100%;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .header-nav ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    HEIGHT: 45px;
    align-items: center;
    border: 1px solid #ccc;
  }

  .header-nav ul li a {
    color: #333;
    width: 100%;
  }

  .header-nav ul li.current-menu-item {
    background-color: #5d70b352;
    color: white;
    text-decoration: none;
  }

  #searchform {
    margin-top: 20px;
    text-align: center;
  }

  #menu__toggle:checked~.header-nav {
    left: 0;
  }

  .menu__btn span {
    padding: 5px;
    border-radius: 8px;

  }
}

#searchform {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 30px;
}

#searchform div {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #525c9f;
  border-radius: 25px;
  overflow: hidden;
}

#s {
  flex: 1;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  background-color: transparent;
  transition: all .3s ease;
  outline: none;
}

#s:focus {
  box-shadow: inset 0 0 5px #C06C84;
}

#searchsubmit {
  padding: 10px 20px;
  border: none;
background: linear-gradient(135deg, #3338a5 0%, #8069d6 100%);
	color: #fff;
  cursor: pointer;
  transition: all .3s ease;
}

#searchsubmit:hover {
  background: linear-gradient(135deg, #119400 0%, #0b7c56 100%);
}
.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
}

#searchform input[type=submit]:hover {
  background-color: #3e8e41;
}
.legal-notice {
  background-color: rgba(0, 0, 0, .05);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center
}
.legal-notice-wrapper {
  background-color: #fff;
  padding: 8px;
  box-shadow: rgba(0, 0, 0, .15) 1.95px 1.95px 2px;
  border-radius: 4px;
  max-width: 768px
}
.legal-notice h2 {
  font-size: 20px;
  margin-bottom: 15px
}
.legal-notice p {
  font-size: 14px;
  line-height: 1.5
}
.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px
}
.footer-menu-items {
  display: flex;
  gap: 20px;
  list-style: none
}
.social-icons {
  display: flex;
  gap: 10px
}
.footer-section-all-rights p {
  text-align: center;
  margin-bottom: 0
}

@media screen and (max-width:768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px
  }
}
.custom-logo {

  max-width: 120px;

}