@charset "UTF-8";
/*
Theme Name: BlazePress
Theme URI:
Author:
Version: 1.1.1
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 */

/* html,
body {
  height: 100%;
} */

body {
  /* Exemplo de fonte sem serifa */
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  /* display: flex;
  flex-direction: column; */
}

a {
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, sans-serif;

  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: 0.25s;
    z-index: 999;
  }

  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: 0.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: 0.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: 0px;
  border: 2px solid #3c913c;
  border-radius: 25px;
  overflow: hidden;
} */

#s {
  flex: 1;
  padding: 10px 20px;
  /* border: none; */
  font-size: 16px;
  background-color: transparent;
  transition: all 0.3s ease;
  outline: none;
  border-width: 2px;
  border-style: solid;
  border-radius: 25px;
}

/* #s:focus {
  box-shadow: inset 0 0 5px #3e8e41;
} */

#searchsubmit {
  border-width: 2px;
  border-style: solid;
  border-radius: 25px;
}

/*

#searchsubmit:hover {
  background: linear-gradient(135deg, #3c913c 0%, #7cba42 100%);
}

#searchform input[type="submit"]:hover {
  background-color: #3e8e41;
} */

.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.legal-notice {
  background-color: rgba(0, 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, 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;
}

/* Apply base button styles to all wp-block-buttons */
.wp-block-button__link {
  display: inline-block;
  padding: 0.667em 1.33em;
  border-radius: 75px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Only apply fill-style spacing when NOT using outline */
.wp-block-button:not([class*="is-style-outline"]) .wp-block-button__link {
  border: none;
}

/* Optional: Ensure border-radius from user setting works */
.wp-block-button__link[style*="border-radius"] {
  border-radius: inherit;
}
