body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'NjNaruto';
    src: url('/assets/fonts/njnaruto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgb(72 72 72);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo {
    flex: 1;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 15px;
    font-size: 30px;
    font-weight: bold;
    font-family: 'NjNaruto', sans-serif;
}

.logo img {
    width: 100px;
}

.text-modals,
.text-manuseio {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'NjNaruto', sans-serif;
}

.text-manuseio {
    color: white;
}

.nav-menu {
    justify-content: center;
    flex: 2;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'NjNaruto', sans-serif;
}

.nav-menu a:hover {
    color: #c7c7c7;
}

.topmenu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.topmenu .main-button {
    margin-left: 10px;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.7);
    border: none;
    padding: 12px 24px;
    font-family: 'NjNaruto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.topmenu .main-button:hover {
    background-color: #c7c7c7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-weight: bold;
}

input {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button[type="submit"] {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: rgb(0 0 0 / 82%);
}

.message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.round-content {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 5px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background-color: #000000a1;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-content: space-between;
}

.round-content p {
    margin: 0;
    color: #007BFF;
    font-size: 18px;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }

    .topmenu {
        flex-direction: column;
        align-items: center;
    }

    .topmenu .main-button {
        margin: 10px 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    .topmenu .main-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .modal-content {
        padding: 10px;
        max-width: 90%;
    }

    .round-content p {
        font-size: 16px;
    }
}

/* Esconder o menu desktop no mobile */
.desktop-menu {
    align-items: center;
}

.mobile-menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu-content {
        display: none;
        flex-direction: column;
    }

    .mobile-menu-toggle {
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none;
    }

    .mobile-menu-content a,
    .mobile-menu-content button {
        display: block;
        margin: 5px 0;
        text-align: center;
    }

    .mobile-menu-content.show {
        display: flex;
    }
}


#menuToggle
{
  top: 50px;
  left: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #f0e9ff;
  border-color: #232323;
  border-radius: 3px;
  border-style: double;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #484848;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

/* line 1125, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top {
  padding-top: 15px;
  border-top: 1px solid #f0e9ff;
}

/* line 1129, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top p {
  margin-bottom: 0;
}

/* line 1133, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .like-info {
  font-size: 14px;
}

/* line 1136, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .like-info i,
.single-post-area .navigation-top .like-info span {
  font-size: 16px;
  margin-right: 5px;
}

/* line 1143, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .comment-count {
  font-size: 14px;
}

/* line 1146, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .comment-count i,
.single-post-area .navigation-top .comment-count span {
  font-size: 16px;
  margin-right: 5px;
}

/* line 1155, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .social-icons li {
  display: inline-block;
  margin-right: 15px;
}

/* line 1159, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .social-icons li:last-child {
  margin: 0;
}

/* line 1163, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_blog.scss */
.single-post-area .navigation-top .social-icons li i,
.single-post-area .navigation-top .social-icons li span {
  font-size: 14px;
  color: #999999;
}

/**************menu part start*****************/
/* line 2, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* line 9, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .navbar-brand {
  padding-top: 0rem;
  padding-bottom: 0px;
}

/* line 14, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .navbar {
  padding: 0px;
}

/* line 18, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .main-menu-item {
  justify-content: center;
}

/* line 21, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .main-menu-item ul li .nav-link {
  color: #fff;
  font-size: 15px;
  padding: 43px 23px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  line-height: 12px;
  font-weight: 400;
}

/* line 29, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .main-menu-item ul li .nav-link:hover {
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  /* line 21, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
  .main_menu .main-menu-item ul li .nav-link {
    padding: 35px 20px;
  }
}

/* line 39, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .main-menu-item .nav-item a {
  position: relative;
  z-index: 1;
}

/* line 42, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .main-menu-item .nav-item a:before {
  position: absolute;
  left: 16%;
  top: 49px;
  width: 0%;
  height: 2px;
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* line 53, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .main-menu-item .nav-item a:hover:before {
  width: 67%;
}

/* line 62, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu #search_1 i {
  color: #fff;
}

/* line 69, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .dropdown-toggle:hover .nav-item .dropdown {
  color: #fff !important;
}

/* line 75, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu #search_input_box {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  z-index: 999;
  text-align: center;
  background: #fff;
}

/* line 89, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu #search_input_box ::placeholder {
  color: #fff;
}

@media (max-width: 991px) {
  /* line 75, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
  .main_menu #search_input_box {
    margin-top: 15px;
  }
}

/* line 99, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu #search_input_box .form-control {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  padding: 0;
}

/* line 108, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu #search_input_box .btn {
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
}

/* line 115, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu #search_input_box .ti-close {
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  padding-right: 0;
}

/* line 124, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .search-inner {
  padding: 5px 5px;
}

/* line 128, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .form-control:focus {
  box-shadow: none;
}

/* line 132, ../../01 cl html template/03_jun 2019/186_Gaiming_html/sass/_menu.scss */
.main_menu .active_color {
  color: #f5790b !important;
}

.button-style {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff; /* Cor de fundo do botão */
    color: white; /* Cor do texto */
    text-align: center;
    text-decoration: none;
    border-radius: 5px; /* Bordas arredondadas */
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: none;
    cursor: pointer;
	margin-bottom: 15px;
}

.button-style:hover {
    background-color: #c7c7c7; /* Cor ao passar o mouse */
}
