@charset "UTF-8";

@font-face {
    font-family: '', sans-serif;
    src: url("");
}
::-webkit-scrollbar{
    background-color: #ccc;
    width: 12px;
}
::-webkit-scrollbar-thumb{
    background-color: var(--cor1);
    border-radius: 20px;
    cursor: pointer;
}
:root{
    --cor1: rgb(47,30,22);
    --cor2: rgb(238,223,194);
    --cor4: #dcdcdc;
    --cor5: #FFFFFF;
    /* --cor1: rgb(1,18,150); */
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    scroll-behavior: smooth;
    transition: all ease-in-out .5s;
    text-decoration: none;
}
body{
    overflow-x: hidden;
    user-select: none;
    box-sizing: border-box;
}
/* Nevegão */
header#navegacao{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    z-index: 100000;
    width: 100%;
    height: 100px;
    padding: 0px 3rem;
    background-color: var(--cor1);
    box-shadow: 0px 0px 12px rgb(0,0,0,.3);
}
header#navegacao nav img{
    width: 140px;
}
/*  */
header#navegacao nav a#btn_contacto_1{
  display: none;
}
header#navegacao nav button#media_responsivo{
    display: none;
}
header#navegacao ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}
header#navegacao ul li{
    display: inline-block;
    list-style: none;
}
header#navegacao ul li a{
    text-decoration: none;
    color: var(--cor5);
    background-color: var(--cor1);
    border: 1px solid var(--cor1);
    padding: .2rem .6rem;
    font-size: 11pt;
}
header#navegacao ul li a:hover{
    border: 1px solid rgb(238,223,194,.2);
}
header#navegacao ul li a.active{
    background-color: var(--cor1);
    border: 1px solid var(--cor5);
    color:var(--cor5);
    padding: .2rem .6rem;
}
header#navegacao ul  li:nth-child(6) a{
    background-color: var(--cor2);
    color:var(--cor1);
    padding: .4rem .8rem;
    transition: all ease-in-out 300ms;
    border: 1px solid var(--cor1);
}
header#navegacao ul  li:nth-child(6) a:hover{
    background-color: var(--cor1);
    border: 1px solid var(--cor2);
    color:var(--cor2);
}
/*  */
div.outros_menus{
    transition: all ease-in-out 900ms;
    display: flex;
    justify-content: space-between;
    align-items:stretch;
    flex-direction: column;
    width: 50%;
    height: 100vh;
    position: absolute;
    position: fixed;
    top: 100px;
    right: -50%;
    background-color:var(--cor2);
    z-index: 2000;
    transition: right 900ms;
    box-shadow: 0px 1px 11px rgb(0,0,0,.1);
    padding: 10px 0px;
}

/* Menu de navegação */
@media only screen and (min-width: 1500px) and (max-width: 10000px){
    /* menu */
    header#navegacao{
        z-index: 100000;
        max-width: 100%;
        min-width: none;
        height:100px;
    }
    header#navegacao nav img{
        width: 90px;
    }
    header#navegacao nav{
        margin-left: 10%;
    }
    header#navegacao ul{
        margin-right: 10%;
    }
}
@media only screen and (min-width: 850px) and (max-width: 1050px){
    header#navegacao ul{
        gap: 5px;
    }
    header#navegacao ul li a{
       font-size: 11pt;
    }
    header#navegacao nav{
        margin-left: -3%;
    }
    header#navegacao ul{
        margin-right: -3%;
    }
}
@media only screen and (min-width: 650px) and (max-width: 850px){
    header#navegacao{
        height:120px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
    header#navegacao nav{
       display: flex;
       justify-content: space-between;
       align-items: center;
       width: 100%;
    }
    header#navegacao nav a#btn_contacto_1{
        display: flex;
        background-color: var(--cor2);
        color:var(--cor1);
        padding: .4rem .8rem;
        transition: all ease-in-out 300ms;
        border: 1px solid var(--cor1);
        
    }
    header#navegacao nav a#btn_contacto_1:hover{
        background-color: var(--cor1);
        border: 1px solid var(--cor2);
        color:var(--cor2);
    }
    header#navegacao nav{
        margin-left: -3%;
    }
    header#navegacao ul{
        margin: 0px;
    }
    /*  */
    header#navegacao ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3px;
    }
    header#navegacao ul li#btn_contacto_2{
        display: none;
    }
    header#navegacao ul li a{
        font-size: 11pt;
     }
    /* slider */
    .-slider {
        margin-top: 120px;
    }
}
@media only screen and (min-width: 250px) and (max-width: 650px){
    header#navegacao{
        height:100px;
        padding: 10px;
    }
    header#navegacao nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0px;
     }
    header#navegacao ul{
       display: none;
    }
    header#navegacao nav a#btn_contacto_1{
        display: none;
      }
    header#navegacao nav button#media_responsivo{
        display: flex;
        background-color: var(--cor2);
        width: 40px;
        height: 40px;
        border-radius: 60px;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        box-shadow: 0px 1px 11px rgb(0,0,0,.1);
    }
    header#navegacao nav button#media_responsivo img{
        width: 38px;
        height: 38px;
    }
    /* slider */
    .-slider {
        margin-top: 100px;
    }
    /* Responsivo */

    div.outros_menus ul{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
    div.outros_menus ul a{
        width: 90%;
        max-width: 90%;
        min-width: 85%;
        padding: .5rem 1rem ;
        border: 2px solid var(--cor1);
        display: flex;
        justify-content: center;
        align-items: center;
        color:var(--cor1);
    }
    div.outros_menus ul a:hover{
        background-color: var(--cor1);
        color: var(--cor2);
    }
    div.outros_menus ul a:nth-child(7){
        background-color: var(--cor1);
        color: var(--cor2);
    }
    div.outros_menus ul a:nth-child(7):hover{
        background-color: var(--cor2);
        color: var(--cor1);
        border: 2px solid var(--cor1);
    }
    div.outros_menus main{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: absolute;
        bottom: 20vh;
    }
    div.outros_menus main h1{
        font-size: 15pt;
        color: var(--cor1);
    }
    div.outros_menus main p{
        font-size: 12pt;
        width: 90%;
        text-align: center;
        color: var(--cor1);
    }
    div.outros_menus.active{
        transition: all ease-in-out 900ms;
        display: flex;
        justify-content: space-between;
        align-items:stretch;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        position: absolute;
        position: fixed;
        top: 100px;
        right: 0%;
        background-color:var(--cor2);
        z-index: 2000;
        transition: right 900ms;
        box-shadow: 0px 1px 11px rgb(0,0,0,.1);
        padding: 10px 0px;
    }
    div.outros_menus.active.hidden{
        right: -50vh;
    }
}
@media only screen and (min-width: 250px) and (max-width: 500px){
    div.outros_menus{
        transition: all ease-in-out 900ms;
        display: flex;
        justify-content: space-between;
        align-items:stretch;
        flex-direction: column;
        width: 70%;
        right: -70%;
    }
    div.outros_menus.active{
        width: 70vw;
    }
}
/*  */
section{
    width: 100%;
    height: 100vh;
    background-color: var(--cor5);
}
section:nth-child(even){
    background-color: var(--cor1);
}

/*Segunda sessão*/
section.-slider {
    box-sizing: inherit;
    box-sizing: border-box;
    scroll-behavior: smooth;
    width: 100%;
    height: 560px;
    margin-top: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}
section.-slider .-slider.active {
    margin-top: 0rem;
}
section.-slider .-slider main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 560px;
    margin: auto;
    overflow: hidden;
}
::selector {
    color: #fff;
}
section.-slider  .carousell {
    position: relative;
    width: 100vw;
    height: 560px;
    overflow: hidden;
}  
section.-slider  .carousell .img-list {
    position: absolute;
    top: 0;
    left: 0%;
    width: calc(100vw * 11);
    height: 560px;
    transition: 2000ms;
}
section.-slider  .carousell .img-list img {
    float: left;
    width: 100vw;
    height: 610px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
section.-slider  #cor{
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgb(0,0,0, .6);
      z-index: 20;
      top: 0;
}
/*  */
section.-slider  div.sobre-nos{
    position: absolute;
    top: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
section.-slider div.sobre-nos h1{
    font-size: 2em;
    font-weight: bolder;
    color: var(--cor1);
}
section.-slider div.sobre-nos p{
      width: 80%;
      font-size: 1.2em;
      text-align: center;
      color: var(--cor4);
}
section.-slider div.sobre-nos a{
      padding: .5rem 3rem ;
      background-color: var(--cor1);
      box-shadow: 0px 1px 11px rgb(0,0,0,.2);
      text-decoration: none;
      color: var(--cor4);
      border-radius: 10px;
      transition: all ease-in-out .2s;
      animation: baulce 1.4s ease-in-out infinite both;
}
@keyframes baulce{
    0%,20%,60%,100%{
        transform: translateY(0px);
    }
    40%{
        transform: translateY(-4px);
    }
    80%{
        transform: translateY(-8px);
    }
}
section.-slider div.sobre-nos a:hover{
    background-color: var(--cor2);
    color: var(--cor1);
    animation: none;
}
@media only screen and (min-width: 250px) and (max-width: 800px){
    section.-slider div.sobre-nos p{
        font-size: 1em;
        max-width: 95%;
        min-width: 90%;
  }
  section.-slider div.sobre-nos h1{
    font-size: 1.5em;
    text-align: center;
  }
}
/*  */
img.img-slider--1 {
    background-image: url('_img/3.jpg');
}
img.img-slider--2 {
    background-image: url('_img/3.jpg');
}
img.img-slider--3 {
    background-image: url('_img/3.jpg');
}
/* Btns de indice */
.carousell .btn-section {
      position: absolute;
      display: flex;
      bottom: 20px;
      z-index: 200;
      bottom: 20px;
      width: 97%;
      display: flex;
      justify-content: right;
      align-items: center;
      flex-wrap: nowrap;
}
.carousell .caro-btn {
      border: .5px solid var(--cor1);
      width: 15px;
      height: 15px;
      margin: 0 4px;
      transition: 300ms;
      cursor: pointer;
      border-radius: 15px;
      background-color:transparent;
}
.container.dark .carousell .caro-btn {
      border: .5px solid rgb(21, 21, 21);
      background-color:transparent;
}
 /*  */
.carousell .caro-btn:first-child {
      background-color: var(--cor1);
}
.carousell .caro-btn:hover{
     transform: scale(1.2);
}

 /* Servicos */
section#servicos{
    height: auto;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-color: var(--cor5);
}
section#servicos a{
    margin-top: -17px;
    position: absolute;
    top: .3rem;
    padding: .2rem 3rem ;
    background-color: var(--cor2);
    z-index: 30;
    font-size: 12pt;
    text-decoration: none;
    color:var(--cor1);
}
section#servicos ul {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    gap: 30px;
}
section#servicos ul li{
    flex: 1 1 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
section#servicos ul li div{
    width: 120px;
    height: 120px;
    background-color: var(--cor2);
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}
section#servicos ul li h1{
    font-size: 15pt;
    color: var(--cor1);
}
section#servicos ul li p{
    font-size: 11pt;
    color: var(--cor1);
    text-align: center;
    width:90%;
}
section#servicos ul li:nth-child(1) div img{
    width: 150px;
    height: 150px;
}
section#servicos ul li:nth-child(2) div img{
    width: 80px;
    height: 80px;
}
section#servicos ul li:nth-child(3) div img{
    width: 110px;
    height: 110px;
    margin-left: -10px;
}
section#servicos ul li:nth-child(4) div img{
    width: 90px;
    height: 90px;
}

/*Carros disponiveis  */
section#carros_disponiveis{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: var(--cor1);
    gap: 10px;
    padding: 20px 0px;
}
section#carros_disponiveis div{
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0px 4rem;
}
section#carros_disponiveis div h1{
    color: var(--cor2);
}
section#carros_disponiveis div a{
    padding: .2rem 1rem ;
    background-color: var(--cor4);
    color: var(--cor1);
    text-decoration: none;
    font-size: 11.5pt;
}
section#carros_disponiveis ul{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    padding: 20px;
}
section#carros_disponiveis ul li{
   flex: 0 0 300px;
   list-style: none;
}
section#carros_disponiveis ul li p{
    color: var(--cor4);
    width: 100%;
}
section#carros_disponiveis ul li h1{
    color: var(--cor2);
    font-family: 'Lucida Calligraphy', sans-serif;
}
section#carros_disponiveis ul li img{
    width: 100%;
}
@media only screen and (min-width: 250px) and (max-width: 669px){
    section#carros_disponiveis ul li{
        flex: 1 1  300px;
        list-style: none;
     }
     section#carros_disponiveis div h1{
        color: var(--cor2);
        font-size: 1em;
    }
    section#carros_disponiveis div{
        padding: 0px 1rem;
    }

}

/*Depoimentos de clientes  */
.testimonials-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    overflow: hidden;
    gap: 20px;
    padding: 20px 0px;
}
.testimonials-section h2 {
    font-size: 20pt;
    color: var(--cor1);
}
.testimonials-section p {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0px 15px ;
}
div.box_depoimentos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 5px;
    padding: 0px 20px;
}
.depoimentos___ {
    box-sizing: border-box;
    background-color:var(--cor2);
    border-radius: 10px;
    margin-right: 10px;
    flex: 1 1 100%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-direction: column;
    padding: 50px 5px;
    height: 280px;
}
.depoimentos___ h4 {
    font-size: 20px;
    margin-top: 5px;
    color:var(--cor1);
}
/*  */
main#depoimentos_clientes{
    display: none;
}
@media only screen and (min-width: 250px) and (max-width: 950px){
    .testimonials-section h2 {
        font-size: 15pt;
    }
    .testimonials-section p {
        font-size: 12pt;
    }
}
@media only screen and (min-width: 466px) and (max-width: 800px){
    div.box_depoimentos{
        display: none;
    }
    section#testimonials-section {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: auto;
        overflow: hidden;
        padding: 10px 0px;
    }
    main#depoimentos_clientes{
        display: flex;
        display: block;
        width: 95%;
        overflow: hidden;
        margin: auto;
        position: relative;
    }
    div.depoimentos_clientes{
        display: block;
        max-width: 86%;
        min-width: 85%;
        overflow: hidden;
        margin: auto;
    }
    .testimonials-section {
        text-align: center;
        padding: 50px;
        background-color: #fff;
    }
    .depoimentos_clientes {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }
    .depoimentos_clientes_ {
        display: flex;
        transition: transform 1s ease-in-out;
    }
    .depoimentos__ {
        min-width: 100%;
        box-sizing: border-box;
        padding: 20px;
        background-color:var(--cor2);
        border-radius: 10px;
        margin-right: 10px;
        flex: 1 1 100%;
        display: flex;
        justify-content:space-between;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        padding: 50px 5px;
    }
    .depoimentos__  p,h4{
    color: var(--cor1);
    }
    .prev_, .next_ {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color:var(--cor2);
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--cor1);
    }
    .prev_ {
        left: 0px;
    }
    .next_ {
        right: 0px;
    }
}
@media only screen and (min-width: 250px) and (max-width: 466px){
    section#testimonials-section {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: auto;
        overflow: hidden;
        padding: 10px 0px;
    }
    div.box_depoimentos{
        display: none;
    }
    main#depoimentos_clientes{
        display: flex;
        display: block;
        width: 95%;
        overflow: hidden;
        margin: auto;
        position: relative;
    }
    div.depoimentos_clientes{
        display: block;
        max-width: 81%;
        min-width: 80%;
        overflow: hidden;
        margin: auto;
    }
    .testimonials-section {
        text-align: center;
        padding: 50px;
        background-color: #fff;
    }
    .depoimentos_clientes {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }
    .depoimentos_clientes_ {
        display: flex;
        transition: transform 1s ease-in-out;
    }
    .depoimentos__ {
        min-width: 100%;
        box-sizing: border-box;
        padding: 20px;
        background-color:var(--cor2);
        border-radius: 10px;
        margin-right: 10px;
        flex: 1 1 100%;
        display: flex;
        justify-content:space-between;
        align-items: center;
        flex-direction: column;
        gap: 30px;
        padding: 50px 5px;
    }
    .depoimentos__  p,h4{
    color: var(--cor1);
    }
    .prev_, .next_ {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color:var(--cor2);
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--cor1);
    }
    .prev_ {
        left: 0px;
    }
    .next_ {
        right: 0px;
    }
}

/*Perguntas frequentes  */
section.sessao_das_perguntas_frequentes{
    width:100vw;
    height:auto;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    overflow: hidden;
    margin: 2rem 0rem 0rem 0rem;
    padding: 20px 0px;
}
section.sessao_das_perguntas_frequentes h1{
    color: var(--cor2);
    font-size: 20pt;
}
section.sessao_das_perguntas_frequentes .sessao_das_perguntas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  margin: 1rem;
}
section.sessao_das_perguntas_frequentes .perguntas_frequentes {
  flex: 1 1 23rem;
  width: 5.5rem;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background-color:  var(--cor2);
  padding: 5px;
  box-shadow: 0px 1px 11px rgb(0,0,0,.2);
}
section.sessao_das_perguntas_frequentes .pergunta {
  height: 5.5rem;
  background-color:transparent;
  padding: 15px;
  cursor: pointer;
  font-size: 12pt;
  color: var(--cor1);
  border-left: 5px solid var(--cor1);
}
section.sessao_das_perguntas_frequentes .content {
  display: none;
  padding: 15px;
  background-color: transparent;
  border-left: 5px solid var(--cor1);
}
section.sessao_das_perguntas_frequentes .content p{
    color: var(--cor1);
}

/* Sobre nos */
section#sobre_nos{
    width: 100%;
    height: auto;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section#sobre_nos form {
    width: 100%;
    background-color: var(--cor2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 1px 11px rgb(0,0,0,.1);
}
section#sobre_nos form div{
    max-width: 35%;
    min-width: 30%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    box-shadow: none;
}
/* img */
section#sobre_nos form img{
    display: none;
}
section#sobre_nos form div textarea{
    width: 350px;
    height: 160px;
    outline: none;
    resize: none;
    padding: 5px;
    background-color: transparent;
    border: 1px solid var(--cor1);
    border-radius: 5px;
}
section#sobre_nos form div textarea::placeholder{
    color: var(--cor1);
}
section#sobre_nos form div input{
    width: 350px;
    height: 35px;
    padding: 5px;
    outline: none;
    border: 1px solid var(--cor1);
    border-radius: 5px;
    background-color: transparent;
    color: var(--cor1);
}
section#sobre_nos form  div input::placeholder{
    color: var(--cor1);
}
section#sobre_nos form div input[type=submit]{
    background-color: var(--cor1);
    color: var(--cor5);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 1px 11px rgb(0,0,0,.2);
}
section#sobre_nos form div input[type=submit]:hover{
    background-color: var(--cor5);
    color: var(--cor1);
}
/*  */
section#sobre_nos div{
    display: flex;
    justify-content:left;
    align-items: center;
    max-width: 70%;
    min-width: 69%;
    height: auto;
    background-color: var(--cor2);
    box-shadow: 0px 1px 11px rgb(0,0,0,.1);
    border-radius: 10px;
    padding-right: 10px;
    gap: 20px;
}
section#sobre_nos div img{
    width: 300px;
    height: 300px;
}
section#sobre_nos div h1{
    text-align: center;
    font-size: 20pt;
    color:var(--cor1)
}
section#sobre_nos div p{
    font-size: 13pt;
    text-align: justify;
    width: 565px;
    color: var(--cor1);
    font-weight: 500;
}
section#sobre_nos div p a{
    font-weight: bolder;
    font-size: 20pt;
    color: var(--cor1);
}
section#sobre_nos div p strong{
    display: none;
}

/* Footer */
footer#contacto{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer#contacto ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow:hidden;
    background-color: var(--cor1);
    padding: 10px 0px;
}
footer#contacto ul li:nth-child(1){
    width: 40%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 80px;
}
footer#contacto ul li:nth-child(1) a {
    /*  */
    color: var(--cor2);
    cursor: pointer;
}
footer#contacto ul li:nth-child(1) main a img{
    width: 35px;
    height: 35px;
    animation: baulce 1.4s ease-in-out infinite both;
}
footer#contacto ul li:nth-child(1) main a{
    border: 2px solid var(--cor2);
    border-radius: 50%;
    margin-left: 10px;
}

footer#contacto ul li:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 20px;
}
footer#contacto ul li:nth-child(2) h1{
    font-size: 15pt;
    text-align: left;
    margin-left: -30px;
    color: var(--cor2);
    margin-bottom: 10px;
}
footer#contacto ul li:nth-child(2) ol{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
footer#contacto ul li:nth-child(2) ol a{
    font-size: 11pt;
    text-decoration: none;
    color: var(--cor5);
}
footer#contacto ul li:nth-child(4){
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 20px;
}
footer#contacto ul li:nth-child(4) h1{
    font-size: 15pt;
    color: var(--cor2);
    margin-bottom: 10px;
}
footer#contacto ul li:nth-child(4)  ol{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 10pt;
}
footer#contacto ul li:nth-child(4)  ol dd{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 190px;
    height: 34px;
 }
 footer#contacto ul li:nth-child(4)  ol hr{
     width: 100%;
     height: 1px;
     border: none;
     background-color: var(--cor2);
     margin: 3px;
 }
 footer#contacto ul li:nth-child(4)  ol dd img{
     width: 55px;
     height: 35px;
     object-fit: contain;
 }
 footer#contacto ul li:nth-child(4)  ol dd:nth-child(4) img{
    width: 50px;
    height: 30px;
    object-fit: contain;
 }
 footer#contacto ul li:nth-child(4)  ol dd:nth-child(6) img{
    width: 35px;
    height: 25px;
    margin-left: 10px;
    object-fit: contain;
 }
 footer#contacto ul li:nth-child(4)  ol dd span{
    font-size: 10pt;
    color: #fff;
 }
 footer#contacto ul li:nth-child(4)  ol dd aside{
     display: flex;
     flex-direction: column;
 }
 footer#contacto ul li:nth-child(3){
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     margin-right: 20px;
 } 
 footer#contacto ul li:nth-child(3) h1{
    font-size: 15pt;
    color: var(--cor2);
    margin-bottom: 10px;
}
 footer#contacto ul li:nth-child(3) img{
     width: 80px;
 }
 footer#contacto ul li:nth-child(3) p{
     font-size: 11pt;
 }
 footer#contacto ul li:nth-child(5){
   display: none;
}
 @media only screen and (min-width: 250px) and (max-width: 955px){
    footer#contacto ul li:nth-child(1){
        width:auto;
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 80px;
    }
 }
 @media only screen and (min-width: 250px) and (max-width: 800px){
    footer#contacto ul{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        overflow:hidden;
        background-color: var(--cor1);
        padding: 10px 0px;
        gap: 20px;
    }
    footer#contacto ul li:nth-child(2) h1{
        font-size: 14pt;
    }
    footer#contacto ul li:nth-child(3) h1{
        font-size: 14pt;
    }
    footer#contacto ul li:nth-child(4) h1{
        font-size: 14pt;
    }
 }
 @media only screen and (min-width: 250px) and (max-width: 450px){
    footer#contacto ul{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        overflow:hidden;
        background-color: var(--cor1);
        padding: 10px 5px;
        gap: 0px;
    }
    footer#contacto ul li:nth-child(1){
        display: none;
    }
    footer#contacto ul li:nth-child(5) a {
        /*  */
        color: var(--cor2);
        cursor: pointer;
        white-space: nowrap;
        font-size: 8pt;
    }
    footer#contacto ul li:nth-child(5) main a img{
        width: 35px;
        height: 35px;
        animation: none;
    }
    footer#contacto ul li:nth-child(5) main{
        display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
    }
    footer#contacto ul li:nth-child(5){
        width:auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding:0px;
        gap: 10px;
     }
    footer#contacto ul li:nth-child(2) h1{
        font-size: 12pt;
    }
    footer#contacto ul li:nth-child(3) h1{
        font-size: 11pt;
        white-space: nowrap;
    }
    footer#contacto ul li:nth-child(4){
     width: auto;
     padding: 0px;
    }
    footer#contacto ul li:nth-child(4) h1{
        font-size: 12pt;
    }
    footer#contacto ul li:nth-child(4)  ol{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 10pt;
    }
    footer#contacto ul li:nth-child(4)  ol dd{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 200px;
        height: 34px;
        margin: 0px;
     }
     footer#contacto ul li:nth-child(3) p{
        font-size: 8pt;
    }
 
footer#contacto ul li:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: auto;
    margin-left: -30px;
}
footer#contacto ul li:nth-child(2) h1{
    font-size: 12pt;
    text-align: center;
    color: var(--cor5);
    margin-right: -30px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer#contacto ul li:nth-child(2) ol{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer#contacto ul li:nth-child(2) ol a{
    font-size: 8pt;
    text-decoration: none;
    color: var(--cor5);
}

 }

/* Portfolio */
section.portfolio{
    margin-top: 90px;
    height: 250px;
   background-image: url('_icon/portfolio_3.jpg');
    background-position: center;
    position: relative;
}
section.portfolio div{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0,0,0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
}
section.portfolio div h1{
    font-size: 30pt;
    color: var(--cor5);
}
section.box_portfolio{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    height: auto;
    margin: 20px 0px;
}
section.box_portfolio h1{
    color: var(--cor1);
    font-size: 20pt;
}
section.box_portfolio div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
    width: 93%;
}
section.box_portfolio div img{
    flex: 1 1 300px;
    width: 300px;
    height: 250px;
}
section.box_portfolio div:hover img:not(:hover) {
  opacity: .5;
  transform: scale(.95);
}
@media only screen and (min-width: 250px) and (max-width: 560px){
    section.box_portfolio div{
        padding: 5px 10px;
    }
    section.box_portfolio h1{
        color: var(--cor1);
        font-size: 15pt;
        text-align: center;
    }
    section.box_portfolio p{
        font-size: 12pt;
        max-width: 90%;
        min-width: 89%;
        text-align: center;
    }
}
@media only screen and (min-width: 250px) and (max-width: 684px){
    section.box_portfolio div img{
        height: 400px;
    }
}
@media only screen and (min-width: 250px) and (max-width: 560px){
    section.box_portfolio div {
        width: 97%;
    }
    section.box_portfolio div img{
        height: 270px;
        flex: 1 1 50%;
      
    }
}
/* todos os direitos */
div#todos_os_direitos{
    text-align: left;
    max-width: 61%;
    min-width: 60%;
    margin: 130px auto;
}
div#todos_os_direitos h1{
    color: var(--cor1);
    font-size: 20pt;
    margin:2rem 0px 1rem 0px ;
}
div#todos_os_direitos p{
    max-width: 99%;
    min-width: 95%;
}
@media only screen and (min-width: 250px) and (max-width: 5000px){

}

/* Media responsivo */
/* Sobre nos */
@media only screen and (min-width: 1300px) and (max-width: 10000px){
    /* Div sobre nos */
    section#sobre_nos div{
        width: 59%;
        max-width: 59%;
        min-width: 50%;
        height: 350px;
        padding-left: 20px;
    }
    section#sobre_nos form div{
        width: 40%;
        max-width: 40%;
        min-width: 39%;
    }
    section#sobre_nos form{
        width: 40%;
        max-width: 40%;
        min-width: 39%;
    }
}
@media only screen and (min-width: 1000px) and (max-width: 1300px){
    section#sobre_nos div img{
        display: none;
    }
    section#sobre_nos div{
        width: 59%;
        max-width: 59%;
        min-width: 50%;
        height: 350px;
        padding-left: 20px;
    }
    section#sobre_nos form div{
        width: 40%;
        max-width: 40%;
        min-width: 39%;
    }
    section#sobre_nos form{
        width: 40%;
        max-width: 40%;
        min-width: 39%;
    }
}
@media only screen and (min-width: 750px) and (max-width: 1000px){
    section#sobre_nos{
        width: 100%;
        height: auto;
        padding: 20px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    section#sobre_nos div{
        width: 100%;
        max-width: 100%;
        min-width: 99%;
    }
    /*  */
    section#sobre_nos form{
        width: 100%;
        max-width: 100%;
        min-width: 99%;
        justify-content: space-between;
    }
    section#sobre_nos form div{
        width: 50%;
        max-width: 50%;
        min-width: 49%;
    }
    section#sobre_nos form img{
        display: flex;
        width: 450px;
        height: 350px;
    }
}
@media only screen and (min-width: 250px) and (max-width: 750px){
    section#sobre_nos{
        flex-direction: column;
        gap: 20px;
    }
    /* form */
    section#sobre_nos form {
        justify-content: center;
        overflow: hidden;
    }
    section#sobre_nos form img{
        display: none;
    }
    section#sobre_nos form div{
        width: 100%;
        max-width: 100%;
        min-width: 99%;
        background-color:transparent;
    }
    /* Sobre nos */
    section#sobre_nos div img{
        display: none;
    }
     section#sobre_nos div#footer_sobre{
        width: 100%;
        max-width: 100%;
        min-width: 99%;
    }
    section#sobre_nos div p {
        text-align: center;
        width: 90%;
        margin: auto;
    } 
    section#sobre_nos div p strong{
        display: flex;
        font-weight: 500;
        color: var(--cor1);
    }

}
@media only screen and (min-width: 250px) and (max-width: 400px){
    section#sobre_nos form div{
        width: 100%;
        max-width: 100%;
        min-width: 99%;
        background-color:transparent;
    }   
    section#sobre_nos form div input{
        width: 90%;
    }
    section#sobre_nos form div textarea{
        width: 90%;
    }

}
/*Agradecimento  */
body#bom{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
body#bom div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    gap: 5px;
}
body#bom div img{
    
    width: 90px;
    filter: drop-shadow(0px 0px 5px rgb(0,0,0,.1));
}

body#bom div h1{
    color: rgb(81,200,93);
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    white-space: nowrap;
}
body#bom div p{
    color: rgb(74, 190, 143);
    font-size: clamp(1rem, 1.5vw, 1rem);
    white-space: nowrap;
}
body#bom div a{
    padding: .3rem 2rem;
    background-color: rgb(81,200,93);
    color: #fff;
    border-radius: 10px;
    transition: all ease-in-out 200ms;
    border: 1px solid transparent;
    box-shadow: 0px 0px 5px rgb(0,0,0,.1);
}
body#bom div a:hover{
    border: 1px solid rgb(81,200,93);
    background-color: transparent;
    color: rgb(81,200,93);
}
