@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');



:root{
    --color-white: #ffffff;
    --color-orange: #CC682D;
    --color-orange-button-gradient: #A6460E;
    --color-dark-text: #1E1E1E;
    --color-dark-options: #3F3F41;
    --color-form-title: #747474;
    --color-form-field: #B9B9B9;
}

*{
    font-family: Inter;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    transition: all .2s linear;
}

html{
    scroll-behavior: smooth;
    line-height: 1.3;
}

::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-track{
    background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover{
    background-color: hsl(0, 0%, 75%);
}
/* ------------- HEADER ------------- */

.navbar{
    width: 100%;
    display: flex;
    position: fixed;
    padding: 8px 40px;
    background-color: var(--color-white);
    justify-content: space-between;
    z-index: 1111;
    transition: 0.5s ease;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}

.logotipo{
  height: 65px;
}

ul{
    display: flex;
    margin: auto 0;
}

ul li{
    list-style: none;
    margin-right: 30px;
}

ul li a{
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Inter;
    color: var(--color-dark-options);
}

ul li a:hover{
    transition: 0.5s;
    color: var(--color-orange);
}



/* ------------- INICIO------------- */


/* tamanho para SECTION: */

.view{  
    width: 100%;
    position: relative;   
    margin-bottom: 40px;
}

/* ----- */

.home{
    margin-bottom: 10px;
    display: flex;
    min-height: 120vh;
    align-items: center;
    justify-content: center;
    /* clip-path: polygon(0 0,100% 0,100% 100%,80% 95%,0 100%); */
}

.banner{
    height: 100%;
    width: 100%; 
    position: absolute;
    background-image: url(foto-banner.jpg);
    background-size: cover;
    position: center;
    align-items: center;
    justify-content: center;
    /* filter: brightness(40%); */
}

.highlights{
    width: 70%;
    margin-top: 5%;
    position: absolute;
    display: inline-block;
    text-align: center;
    /* align-items: center; */
    z-index: 11;
    color: var(--color-white);
}

.highlights h1{
    font-family: Josefin Sans;
    display: inline;
    font-size: 5vw;
    font-weight: 500;
    /* margin-bottom: -7%; */
}

.highlights h3{
    font-family: Roboto Slab;
    font-weight: 400;
    font-size: 2.8vw;
}

.highlights h4{
  font-family: Roboto Slab;
    font-weight: 400;
    font-size: 2vw;
    color: #ffffffd8;
}

/* CONTENT */

.main{
    width: 100%;
    text-align: center ;
    align-items: center;
    padding-bottom: 40px;
}

.main h2{
    font-size: 2.7vw;
    position: relative;
    text-align: center;
    padding-top: 70px;
    display: inline-block;
    font-family: Josefin Sans;
    color: var(--color-orange);
    font-weight: 300;
}

.main h2 span{
    font-family: Josefin Sans;
    font-weight: 500;
}

.content{
    position: relative;
    display: flex;
    width: 100%;
    padding: 0 20px;
    justify-content: center;
    font-family: inter;
}

.content .cols p{
    font-size: 0.85em;
    font-weight: 300;
   
}

.about .content .cols{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 50px;
    top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.about .content .cols .box{
    position: relative;
    height: 300px;
    width: 470px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 0.3125rem; */
}

.about .content .cols .box img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* AREAS DE ATUAÇÃO */

.areas{
    background-image: linear-gradient(#F8F8F8, #F8F8F8, white) ;
}   

.areas .content{
    flex-wrap: wrap;
}

.areas .content .frame{
    position: relative;
    width: 300px;
    gap: 1.125rem;
    padding: 20px;
    margin: 10px;
    background: white;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    transition: 0.2s ease-in;
    border-radius: 5px;
}

.areas .content .frame:hover{
    filter: brightness(100%);
    transform: scale(1.02);
    box-shadow: 0px 4px 10px 2px rgba(166, 70, 14, 0.30);
}

.areas .content .frame .box{
    position: relative;
    height: 120px;
    width: 100%;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
} 

.areas .content .frame .box img{
    position: relative;
    object-fit: cover;
    height: 6rem;
    filter: brightness(100%);
}

.areas .content .frame .title{
    color: var(--color-orange);
    padding: 10px 0 ;
    font-size: 1.2em;
    font-family: Roboto Slab;
    font-weight: 700;
    text-align: center;
}

.areas .content .frame p{
    font-size: 0.8em;
    font-family: inter;
    font-weight: 300;
    text-align: center;
    line-height: 1.8em;
}


/* INFORMATIVO */

.informativo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .content_informativo {
    display: flex;
    width: 50%;
    min-height: 100px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .informativo .frame {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Inter', sans-serif;
    background-color: #CC682D;
    color: #fff;
  }

  .informativo span {
    font-size: 16px;
    font-weight: 200;
    margin-right: 10px; /* Adicionei margem à direita para separar o texto do botão */
  }

  .informativo button{
    width: 190px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--color-orange);
    color: #fff;
    border: 1px solid white;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .informativo button:hover {
    background-color: white;
    transition: 0.3s ease-in-out;
    color: #CC682D;
    /* box-shadow: 1px 1px 10px 1px rgba(247, 247, 247, 0.692); */
  }


/* FORMULARIO */

.content_form{

  
    min-width: 420px;
    padding: 35px 50px;
    transform: translate(-50%,-50%);
    position: absolute;
    left: 50%;
    top: 50%;
}

form{

    position: relative;
    margin: 30px auto 0 auto;
    width: 65%;
    min-width: 320px;
    padding: 35px 50px;
    
}

.row{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto, minmax(300px, 1fr));
    grid-gap: 30px 30px;
    margin-bottom: 20px;
}

label{
    color:var(--color-form-title);
    font-size: 15px;
    font-family: Roboto Slab;
    font-weight: 600;
}

textarea,
input{
    width: 100%;
    font-weight: 400;
    padding: 15px 2px;
    border: none;
    border-bottom: 1.5px solid rgb(204, 204, 204);
    margin-top: 10px;
    
}

input::placeholder{
    color: rgb(145, 145, 145);
    font-size: 14px;
    font-weight: 300;
}

textarea{
    resize: none;
    color: #747474;
    font-size: 14px;
    font-weight: 300;
}

textarea:focus,
input:focus{

    border: 1.4px solid;
    border-color: var(--color-orange);
}

.botao button{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

button{
    margin: auto;
    width: 15.375rem;
    height: 2.7rem;
    border: none;
    background: var(--color-orange);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

button:hover{
    background-color: #A6460E;
    transition: 0.5s ease;
}


/* MAPS */

.map-responsive{
   margin-top: 10px;
}

.map-responsive iframe{
    width: 100%;
}


footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 80px;
  background-color: var(--color-orange);
  font-family: Inter;
}

footer .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper .footer-widget {
  width: calc(20% - 30px);
  margin: 0 15px 50px;
  padding: 0 12px;
}

.wrapper .footer-widget:nth-child(1) {
  width: calc(40% - 50px);
  margin-right: 15px;
}

.wrapper .footer-widget .desc{
    color: white;
    font-family: inter;
    font-weight: 200;
}

.wrapper .footer-widget .logo {
  margin-bottom: 30px;
  vertical-align: middle;
  height: 90px;
}

.wrapper .footer-widget p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}

.wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wrapper .footer-widget .socials li {
  list-style: none;
}

.wrapper .footer-widget .socials li a {
  width: 47px;
  height: 47px;
  margin-right: 10px;
  color: #ffffff;
  background-color: var(--color-orange-button-gradient);
  border-radius: 50%;
  font-size: 25px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .socials li a:hover {
  background-color: #3f3f4165;
}

.wrapper .footer-widget h6 {
  color: white;
  text-transform: uppercase;
  margin: 10px 0 35px;
  font-size: 18px;
  font-weight: 600;
}

.wrapper .footer-widget .links{
    display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
}

.wrapper .footer-widget .links li {
  list-style: none;
  
}

.wrapper .footer-widget .links li a {
  color: white;
  font-size: 14px;
  font-weight: 200;
  text-decoration: none;
  text-transform: none;
  line-height: 32px;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .links li a:hover {
  color: #c7c7c7;
}

.wrapper .footer-widget p{
    /* display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap; */
    color: #585978;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 32px;
    transition: all 0.3s ease-out;
}

.copyright-wrapper {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.copyright-wrapper p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.copyright-wrapper p a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.copyright-wrapper p a:hover {
  color: #ffffff;
}


/* --------------- HTML - INFORMATIVO --------------- */

#card .main h2{
  margin-top: 70px;
}

#card .content{
  flex-wrap: wrap;
}

#card .content .frame{
  position: relative;
  width: 500px;
  padding: 30px 30px 60px 30px;
  margin: 10px;
  background-color: white;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
}

#card .content .frame .box{
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

#card .content .frame .box img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.2s ease-in;
}

#card .content .frame .box:hover img{
  filter: grayscale(0);
  transform: scale(1.08);
}

#card .content .frame .headline{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 1.5em;
}

#card .content .frame p{
  font-size: 1em;
  font-weight: 300;
  position: relative;
  bottom: 5px;
}

#card .content .frame a{
  top: 20px;
  color: #fff;
  background-color: var(--color-orange);
  padding: 8px 30px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  transition: 0.2s ease;
}

#card .content .frame a:hover{
  background-color: var(--color-orange-button-gradient);
}
    
/*  ------------------- media quires section -------------------*/

@media screen and (max-width: 1240px) {
  .navbar{
    width: 100%;
 }

 .navbar ul{
     display: none;
 }

 .navbar ul.active{
     top: 60px;
     left: 0;
     width: 100%;
     display: flex;
     position: fixed;
     background-color: white;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     height: calc(100% - 60px);
 }

 .navbar ul.active li{
     margin: 17px;
 }

 .navbar ul.active li a{
     font-size: 16px;
 }

 .navbar .toggle{
     height: 25px;
     width: 25px;
     margin: auto 0;
     cursor: pointer;
     background: url(menu-orange.png);
     background-size: cover;
     background-position: center;
     /* filter: invert(1); */
     background-repeat: no-repeat;
     color: #3F3F41;
 }

 .navbar .toggle.active{
     background: url(close-orange.png);
     background-size: 40px;
     background-position: center;
     cursor: pointer;
 }
}


@media screen and (max-width: 1210px) {
  .navbar{
    width: 100%;
 }

 .navbar ul{
     display: none;
 }

 .navbar ul.active{
     top: 60px;
     left: 0;
     width: 100%;
     display: flex;
     position: fixed;
     background-color: white;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     height: calc(100% - 60px);
 }

 .navbar ul.active li{
     margin: 17px;
 }

 .navbar ul.active li a{
     font-size: 16px;
 }

 .navbar .toggle{
     height: 25px;
     width: 25px;
     margin: auto 0;
     cursor: pointer;
     background: url(menu-orange.png);
     background-size: cover;
     background-position: center;
     /* filter: invert(1); */
     background-repeat: no-repeat;
     color: #3F3F41;
 }

 .navbar .toggle.active{
     background: url(close-orange.png);
     background-size: 40px;
     background-position: center;
     cursor: pointer;
 }
}

@media screen and (max-width: 990px) {

  .view{
    min-width: 420px;
  }
  
  .informativo{
    min-width: 420px;
  }

  #maps{
    min-width: 420px;
  }

  footer{
    min-width: 420px;
  }

    .navbar{
       width: 100%;
    }

    .navbar ul{
        display: none;
    }

    .navbar ul.active{
        top: 60px;
        left: 0;
        width: 100%;
        display: flex;
        position: fixed;
        background-color: white;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: calc(100% - 60px);
    }

    .navbar ul.active li{
        margin: 17px;
    }

    .navbar ul.active li a{
        font-size: 16px;
    }

    .navbar .toggle{
        height: 25px;
        width: 25px;
        margin: auto 0;
        cursor: pointer;
        background: url(menu-orange.png);
        background-size: cover;
        background-position: center;
        /* filter: invert(1); */
        background-repeat: no-repeat;
        color: #3F3F41;
    }

    .navbar .toggle.active{
        background: url(close-orange.png);
        background-size: 40px;
        background-position: center;
        cursor: pointer;
    }

    .highlights h3{
        font-size: 5vw;
        padding: 5px 10px;
    }

    .highlights h1{
        font-size: 6vw;
    }

    .highlights h4{
      font-size: 4vw;
    }

    .banner{
        background-image: url(foto-banner02.jpg);
        background-size: cover;
    }

    .main h2{
        font-size: 1.5rem;
    }

    .main h6{
        font-size: 10px;
    }

    .about .content{
        flex-direction: column;
    }
    .about .content .cols .box {
        height: 37vh;
        width: 50vw;
    }

    .areas .content{
        margin-bottom: 40px;
    }

    .areas .content .frame{
        width: 330px;
        padding: 15px 15px 40px 15px;
    }

    .informativo .frame{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    #contato{
      width: 100%;
    }
} 

    
@media screen and (max-width: 800px) {
    
    .content_informativo {
      width: 80%;
    }
  }


  /* ---- FOOTER ---- */

  @media (max-width: 992px) {
    footer .container {
      max-width: 960px;
    }
  
    footer .wrapper .footer-widget,
    .wrapper .footer-widget:nth-child(1) {
      width: calc(50% - 30px);
    }
  }
  
  @media (max-width: 768px) {
    footer .container {
      max-width: 720px;
    }
  
    footer .wrapper .footer-widget,
    .wrapper .footer-widget:nth-child(1) {
      width: 100%;
      margin: 0 10px 50px;
    }
  }

  @media screen and (max-width: 680px) {
    .about .content .cols .box {
      height: 37vh;
      width: 100%;
    }
  }

  @media screen and (max-width: 500px) {
    .logotipo{
      display: none;
    }

    .logotipo2{
      content: url(logo2_1.svg);
      height: 70px;
      /* position: relative; */
     
    }
  }