html {
  scroll-behavior: smooth;
}
/*MENU SECTION EFFECT*/
.menu-section {
  opacity: 0;
  display: block;
  position: fixed;
  top: -60px;
  width: 100%;
  z-index: 1000;
  transition: opacity 0.4s ease, top 0.4s ease;
}
.menu-section.visible {
  opacity: 1;
  top: 0;
}
.menu-section.fixed {
  position: fixed;
  width: 100%;
  top: 0;
}

/*TEXT-FACTS*/
.text-facts {
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  line-height: 45px;
  color: #007bff;
}
.h3-text-facts {
  text-align: center;
  margin-top: -15px;
}
.blue-highlight {
  color: #007bff;
}
/*Logo navbar*/
.logo-navbar {
  max-height: 50px;
  width: auto;
  margin-top: -5px;
  margin-left: -25px;
}
/*Tag home*/
.row.d-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
/*Below slide show*/
.below-slideshow h1,
h2,
h4 {
  text-align: center;
}
.below-slideshow h1 {
  padding-top: 80px;
}
.below-slideshow h1 span {
  padding: 0 10px;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}
.below-slideshow h2 {
  padding-bottom: 5px;
}
/*Section sobre jr8*/
.txt-block i {
  font-size: 60px;
}
.txt-block {
  text-align: center;
}
/*Section topic*/
.tag-topic {
  padding-top: 80px;
  padding-bottom: 30px;
  font-size: 50px;
  text-align: center;
  line-height: 45px;
}
.topic {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 10px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic i {
  font-size: 40px;
  color: #1e1f1e;
  margin-bottom: 10px;
}

.topic h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.topic p,
.topic ul {
  display: none;
  font-size: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.topic:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.topic:hover p,
.topic:hover ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.topic:hover i {
  color: #007bff;
}
/*just-txt-div h3*/
.just-txt-div h3 {
  font-size: 32px;
}
.just-txt-div p {
  width: 560px;
}

/*Container contact*/
.container-contact {
  display: flex;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 40px;
  justify-content: center;
  gap: 150px;
}
.container-contact i {
  font-size: 40px;
}
/*Copyright footer*/
.copyright {
  margin-top: 40px;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 40px;
  color: white;
}
.footer {
  border-top: white solid 2px;
  background-color: #01a2a6;
}

body {
  overflow-x: hidden;
  width: 100%;
}
