.top-header {
  background-color: #FF5959;
  padding: 1px;
  text-align: right;
  font-weight: bold;
  color: #333;
   
}


.navbar {
  display: flex;
  justify-content: space-between;
  position:sticky;
  top: 0;
  z-index: 1000;
  align-items: center;
  background-color: white;
  padding: 25px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: padding 0.3s, background-color 0.3s; 
}


.navbar.scrolled {
  padding: 10px 40px; 
  background-color: rgb(255, 255, 255); 
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;

  
}

.nav-links li a {
  text-decoration: none;
  color: #ff0000;
  font-weight: bold;
  
}

.nav-links li a:hover {
  color: #f89797;
}

.button {
  background-color: #e60000;
  color: white;
  padding: 20px 15px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  margin-left: 10px; 
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

.button:hover {
  background-color: #cc0000;
}


.banner {
  background-color: white;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0; /* Inicialmente invisível */
  transform: translateY(10px); /* Movido para baixo */
  animation: fadeInUp 1s ease-out forwards, pulse 2s ease-in-out 2s;
}



/* Animação de entrada */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(5); /* Volta para posição original */
  }
}







.banner-content h1 {
  color: #e60000;
  font-size: 150px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
 
}

.banner-content p {
  color: #FF4545;
  font-size: 4em;
  margin-top: 10px;
}




.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px;
  background-color: #ffffff;
  border-radius: 8px;
  animation: fadeInUp 1s ease-out forwards, pulse 2s ease-in-out 2s;
  margin-bottom: 55px;
}


.about-text {
  flex: 1;
  padding-right: 60px;
}

.about-text h2 {
  font-size: 40px;
  color: #333;
}

.about-text h2 span {
  color: #e60000;
  font-weight: bold;
}

.about-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 9px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;


}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #e60000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
 font-size: 15px;
}

.read-more-btn:hover {
  background-color: #cc0000;
}


.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 11px 58px rgba(255, 0, 0, 0.322);
}



.services-container {
  display: flex;
  justify-content: space-between;
  background-image: url("/assets/imgs/water.png");
  background-size: cover;
  height: 650px;
  background-repeat: no-repeat;
  padding: 15px;
  

}

.services-text {
  width: 53%;
  padding-right: 20px;
  background-color: #ffffffe0;
  text-align: center;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;

  
}


.benefits-text {
margin-left: 99px;
  font-family: 'Roboto', sans-serif;
  color: rgb(255, 94, 94);
  font-size: 20px;

}

.down {
   
     padding-bottom: 126px;
  
  }


.ideal-text {
  margin-left: 99px;
  font-family: 'Roboto', sans-serif;
  color: rgb(255, 0, 0);
  font-size: 25px;
}


 
.services-text p {
  font-weight: bolder;
  color: #d32f2f;
  font-size: 25px;
  font-family: 'Roboto', sans-serif;
 
}

.services-text h3 {
  margin-top: 20px;
  font-size: 27px;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.services-text ul {
  list-style-type: none;
  padding: 0;
  list-style-type: disc; 
  padding-left: 20px; 
  margin: 0; 
  font-family: 'Roboto', sans-serif;
}

.services-text li {
  color: #333;
  padding: 13px 0;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: bolder;
}

.services-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 35%;
}

.service-item {
  width: 45%;
  background-color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.service-item:hover {
  
  transform: translateY(-5px);
  box-shadow: 0 5px 18px hsl(0, 100%, 50%);
}





.service-item img {
  width: 200px;
  margin-bottom: 5px;
}

.service-item p {
  font-weight: bolder;
  color: #333;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;

}

.header-text {
  text-align: left; 
  margin-bottom: 20px; 
  font-family: 'Roboto', sans-serif;
}

.header-text p {
  font-size: 16px; 
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.red-line {
  width: 250px; 
  height: 5px; 
  background-color: red; 
  margin-top: 20px; 
  border-radius: 25px;
}


.red-line2 {
  width: 250px; 
  height: 5px; 
  background-color: red; 
  margin-top: 20px; 
  margin-left: 100px;
  border-radius: 25px;
}

.steps-section {
  display: flex;
  align-items: flex-start;
  padding: 20px;
 margin-left: -135px;
 padding-top: 50px;
 

 
}

.steps-image {
  flex: 1;
  display: flex;
 justify-content: center;
  
}

.steps-image img {
  width: 1029px;
  height: 676px;
  
   
}

.steps-content {
  flex: 1;
   font-size: 15px;
}

.steps-content h2 {
  color: #333;
  padding-bottom: 40px;
  font-family: 'Roboto', sans-serif;
}


.steps-content h2 span {
  color: red;
  font-family: 'Roboto', sans-serif;
  
}

.step-item {
  display: flex;
  gap: 15px;
  margin-bottom: 73px;
}

.icon-container {
  width: 60px;
  height: 60px;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.icon-container img {
  width: 60px;
  height: 60px;
}

.icon-container2 {
  width: 60px;
  height: 60px;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}


.icon-container2 img {
  width: 60px;
  height: 60px;
  justify-content: center;
}

.icon-container3 {
  width: 60px;
  height: 60px;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}


.icon-container3 img {
  width: 60px;
  height: 60px;
  justify-content: center;
}

.icon-container4 {
  width: 60px;
  height: 60px;
  background-color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}


.icon-container4 img {
  width: 65px;
  height: 65px;
  justify-content: center;
}

.step-text h3 {
  color: red;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
}

.step-text p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

 
details {
  margin: 10px;
  font-size: 18px;
  margin-left: 100px;
}
details > * {
  padding: .75rem;
}
details > div {
  background: #ddd;
  border-radius: 0 0 5px 5px;
  width: 600px;
}





summary {
  display: flex;
  align-items: center;
  border-radius: 5px;
  font-size: 20px;
  font-family: sans-serif;
  font-weight: bold;
  width: 600px;
  color: #fff;
  background: #ff0000;
  cursor: pointer;
  position: relative;
  transition: .3s;
  text-indent: 0px;
  font-family: 'Roboto', sans-serif;
  

  
}

summary::marker {
  content: "";
}

 
details:nth-of-type(1) summary::before {
  content: "";
  background-image: url('/assets/imgs/icons/apartamentos.png');  
  background-size: contain;
  background-repeat: no-repeat;
}

details:nth-of-type(2) summary::before {
  content: "";
  background-image: url('/assets/imgs/icons/caneta\ e\ papel.png');  
  background-size: contain;
  background-repeat: no-repeat;
}

details:nth-of-type(3) summary::before {
  content: "";
  background-image: url('/assets/imgs/icons/calculadora.png');  
  background-size: contain;
  background-repeat: no-repeat;
}

summary::before {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 20px;  
  
}

details[open] summary {
  background: #ff2a2a;
   
}

details[open] summary::before {
   
   
  transform: none;  
}

.benefits-list {
  list-style: none; 
  padding: 10px;
  margin: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #555; 
 
  
}

.benefits-list li {
  position: relative;
  padding-left: 10px; 
  margin-bottom: 15px; 
  line-height: 1.5; 
  
}

.benefits-list li::before {
  content: "»";  
  position: absolute;
  left: 0;  
  color: #ff0000;  
  font-size: 18px;  
   
}


.image-container {
  margin-left: 953px;
  margin-top: -400px;
  
 
}

.image-container img {
  width: 560px;  
   
}


.benefits-background  {
 
  background: linear-gradient(147deg, #ffffff, #faaaaa);


}

.responsive-cell-block {
  min-height: 75px;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 25px;
  height: 50%;
  width: 100%;
  font-size: 15px;
}

img {
  object-fit: cover;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 110px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 140px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  background-color: white;
}

.red-line3
{

  width: 250px; 
  height: 5px; 
  background-color: red; 
  margin-top: 20px; 
  border-radius: 25px;

}

.red-line4
{

  width: 250px; 
  height: 5px; 
  background-color: red; 
  margin-top: 20px; 
  border-radius: 25px;

}


.responsive-container-block.bg {
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1320px;
  margin: 50px 0 50px 0;
}

.text-blk.title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 36px;
  line-height: 45px;
  font-weight: 900;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin: 0 0 15px 0;
  color: red;
}

* {
  font-family: 'Roboto', sans-serif;
}

.text-blk.desc {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  height: auto;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 750px;
}

.responsive-container-block.blocks {
  width: 100%;
  min-height: 0px;
  justify-content: space-between;
  max-width: 1320px;
}

.responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
  width: 30%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-blk.info-block {
  width: 85%;
  height: auto;
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  margin: 30px 0 30px 0;
}

.responsive-container-block.person {
  width: 90%;
  min-height: 0px;
  height: auto;
  margin-top: 0px;
  margin-right: 31.25px;
  margin-bottom: 20px;
  margin-left: 31.25px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon-block {
  width: 22%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.text-block {
  width: 78%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.text-blk.name {
  font-size: 18px;
  line-height: 20px;
  font-weight: 900;
  height: auto;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.text-blk.desig {
  line-height: 16px;
  height: auto;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.responsive-container-block.big-container {
  justify-content: center;
  padding: 0 50px 0 50px;
}

@media (max-width: 1024px) {
  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 47%;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
    margin-top: 5%;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 25%;
  }

  .text-blk.desc {
    width: 70%;
  }

  .responsive-container-block.person {
    margin-top: 5%;
    margin-right: 31.25px;
    margin-bottom: 0px;
    margin-left: 31.25px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.person {
    margin-top: 21.9375px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 0px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    height: 50%;
    font-size: 17px;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5%;
    margin-left: 0px;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
    width: 85%;
    font-size: 17px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 30px;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.blocks {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bg {
    flex-wrap: nowrap;
  }

  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.desig {
    font-size: 15px;
  }

  .text-blk.name {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 8%;
    margin-left: 0px;
  }

  .text-blk.desc {
    width: 90%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 24px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 26px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0 20px 0;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .responsive-container-block.big-container {
    padding: 0 30px 0 30px;
  }

  .text-blk.name {
    font-size: 17px;
  }

  .text-blk.desig {
    font-size: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'Roboto', sans-serif;
}

html {
  font-size: 62.5%;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.1s;
   
}

.switch.container {
  background-color: #262431;
}

.circle-bg {
  width: 120rem;
  height: 120rem;
  border-radius: 50%;
  position: absolute;
  top: -70%;
  left: 50%;
   
  
}

.switch .circle-bg {
  background: linear-gradient(225deg, #93cdff, #3c3a74);
  box-shadow: 0 1rem 5rem rgba(60, 58, 115, 0.5);
}

.form-wrapper {
  width: 80rem;
  height: 60rem;
  background-color: #fff;
  display: flex;
  border-radius: 3rem;
  box-shadow: 0 2rem 6rem rgba(6, 12, 15, 0.2);
  position: relative;
  z-index: 100;
  transition: background-color 0.1s;
}

.switch .form-wrapper {
  background-color: #262431;
}

.form-wrapper-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 0 20rem 0;
}

 

.sun-moon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0);
  transform-origin: right top;
  transition: transform 0.5s;
}

.switch .sun-moon::after {
  background-color: #262431;
  transform: scale(1);
}

 
 
.form-wrapper-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 0;
}

.form-wrapper-right h1 {
  font-size: 5rem;
  color: #ff0000;
}

.field {
  width: 30rem;
  height: 5rem;
  border: none;
  border-bottom: 0.2rem solid #ff0000;
  font-size: 1.4rem;
  color: #555;
  background-color: transparent;
}

.switch .field {
  color: #bbb;
}

.field::placeholder {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #bbb;
  letter-spacing: 0.1rem;
}

.form-wrapper-right .msg {
  height: 10rem;
  resize: none;
}

.form-wrapper-right button {
  width: 30rem;
  height: 4.5rem;
  background: red;
  border: none;
  border-radius: 3rem;
  font-size: 1.4rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.switch .form-wrapper-right button {
  background: linear-gradient(225deg, #93cdff, #3c3a74);
  color: #2600ff;
}

.form-wrapper-right button:active {
  transform: translateY(0.2rem);
}


.location  {
font-size: 25px;
  font-family: 'Roboto', sans-serif;
color: red;
font-weight: bold;
margin-left: 20px;
}



.emailcontact  {
  font-size: 25px;
    font-family: 'Roboto', sans-serif;
  color: red;
  margin-top: 15px;
  font-weight: bold;
  margin-left: 20px;
  }



  .phone  {
    font-size: 25px;
      font-family: 'Roboto', sans-serif;
    color: red;
    margin-top: 15px;
    font-weight: bold;
    margin-left: 20px;
    }


  .adress  {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: red;
    margin-left: 20px;


  }

  .emailadress  {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: red;
    margin-left: 20px;


  }

  .phonenumber  {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: red;
    margin-left: 20px;
    

  }


  .map  {
margin-left: 30px;
margin-top: 50px;

  }



  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
footer{
    background-color: #ff0000;
    padding: 50px 0;
    margin-top: 10px;
}
.container-footer{
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}
.row-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}
.footer-col ul{
    list-style: none;
}
.footer-col ul li{
    margin: 10px 0;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: white;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #cecdcd;
    padding-left: 10px;
}
.footer-col .medias-socias{
    margin-top: 30px;
}
.footer-col .medias-socias a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    border-radius: 50%;
    color: white;
    border: 1px solid white;
    transition: all 0.5s ease;
}
.footer-col .medias-socias a i{
    font-size: 20px;
}

.footer-col .medias-socias a:hover{
    color: #415aca;
    background-color: white;
}
.footer-col .form-sub input{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    outline: none;
    border: 1px solid white;
    color: white;
    background-color: #002fff;
}
.footer-col .form-sub input::placeholder{
    color: white;
}
.footer-col .form-sub button{
    width: 100%;
    margin-top: 10px;
    padding: 10px; 
    font-size: 17px;
    outline: none;
    border: none;
    cursor: pointer;
    color: #415aca;
    border-radius: 3px;
    font-weight: bold;
    background-color: white;        
}
/* Responsivo */
@media (max-width: 800px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width:600px) {
    .footer-col{
        width: 100%;
    }
}
 

body::-webkit-scrollbar {
  width: 12px;                
}

body::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);         
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(255, 0, 0);     
  border-radius: 20px;       
  border: 3px solid rgb(255, 255, 255);   
}



.direitos   {
margin-left: 650px;
color: white;


}
html {
  scroll-behavior: smooth;  
  scroll-padding-top: 100px;  
}


* {
  &::-webkit-scrollbar {
    background-color: transparent;
    width: 6px;
  }

  &::-webkit-scrollbar-track {
    background-color: transparent;
  }

  &::-webkit-scrollbar-thumb {
    background-color: rgba(234, 234, 234, 0.6);
    border-radius: 6px;
  }

  &::-webkit-scrollbar-button {
    display: none;
  }
}

 
.container3 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
 

.sobre-nos {
  text-align: left;
  padding: 50px 0;
}

.sobre-nos h1 {
  font-size: 2.5em;
  color: #333;
  font-family: 'Roboto', sans-serif;
  
}

.sobre-nos h1 span {
  color: #ff0000;
  font-family: 'Roboto', sans-serif;
  
}

.sobre-nos p {
  margin: 20px 0;
  font-size:20px;
  font-family: 'Roboto', sans-serif;
  white-space: pre-line;
 color: #333;
  
}
 
 
.valores {
  padding: 50px 0;
  background-color: #fff;
}


.valores .missoes  {

margin-top: 100px;
font-size: 15px;

}



.valores .visao  {

  padding-top: 15px;
  font-size: 15px;
  
  }
  

.valores .missoes p {
    
    
    font-size: 15px;
    
}


.valores .missoes2 {
  margin-right: 10px;
  margin-top: 20px;
  font-size: 15px;
}
 

.valores h2 {
  color: #ff0000;
  margin-bottom: 10px;
  font-size: 1.8em;
  font-family: 'Roboto', sans-serif;
}

.valores p, .valores ul {
  font-size: 1.1em;
}

.valores ul li {
  margin: 10px 0;
}

.red-line4 {
  width: 250px; 
  height: 5px; 
  background-color: red; 
  margin-top: 20px; 
  border-radius: 25px;
}

.imagem-destaque {
  width: 100%;
  max-width: 459px;
 margin-top: -1000px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.527);
  margin-left: 1099px;
}



