/* GERAL */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Playfair Display";
}

:root{
    --color-neutral-0:#f0f1f3;
    --color-neutral-10:#fafe00;
    --color-neutral-30:#707070;
    --color-neutral-40:#c14518;
    --color-neutral-50:#8FFBFD;
    --color-neutral-60:black;
}

.html, main{
    background-color: var(--color-neutral-0);
}

.flex{
    display: flex;
    align-items: center;
}

.titulo h1{
    font-size: 6vh;
}

.titulo h3{
    font-size: 4vh;
}

@media screen and (max-width: 600px) {
    .titulo h1{
        font-size: 5vh;
    }
    
    .titulo h3{
        font-size: 3vh;
    }
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f1f3;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align:center;
    gap: 20px;
}

/* HTML: <div class="loader"></div> */
.loader {
  --c:no-repeat linear-gradient(orange 0 0);
  background: 
    var(--c),var(--c),var(--c),
    var(--c),var(--c),var(--c),
    var(--c),var(--c),var(--c);
  background-size: 16px 16px;
  animation: 
    l32-1 1s infinite,
    l32-2 1s infinite;
}
@keyframes l32-1 {
  0%,100% {width:45px;height: 45px}
  35%,65% {width:65px;height: 65px}
}
@keyframes l32-2 {
  0%,40%  {background-position: 0 0,0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0,  50% 50% }
  60%,100%{background-position: 0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0,0 0,  50% 50% }
}

/* CABEÇALHO */
header{
    position: fixed;
    display: flex;
    height: 100px;
    width: 100%;
    padding: 10px 4%;
    transition: 2s;
    z-index: 1000;
    background-image: url('../imagens/fundo-olaria.png');
    /*background-color: #D8A643;*/
}

header .logo {
    text-align: center;
    align-items: center;
}

header .nav-bar{
    display: grid;
    grid-template-columns: 15% 70% 15%;
    align-items: center;
    width: 100%;
}

header .nav-list ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

header img{
    width: 80px;
    height: 80px;
}

header .nav-list  ul li a{
    font-size: 18px;
    font-weight: bold;
    color: var(--color-neutral-0);
    text-decoration: none;
}

header .nav-desktop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

header .nav-desktop p{
    text-align: center;
    color: var(--color-neutral-0);
}

header .opcs{
    display: flex;
    gap: 1rem;
}

header .opcs a{
    color: var(--color-neutral-0);
}

header .nav-list ul li{
    display: inline-block;
}

header .mobile-menu, .mobile-menu-icon{
    display: none;
}

.navigation{
    display: none;
}

@media screen and (max-width: 900px) {
    header .nav-list  ul li a{
        font-size: 15px;
    }

    header .nav-desktop p{
        font-size: 12px; 
    }

    header .opcs a{
        font-size: 12px;
    }
}


/* CABEÇALHO MOBILE */

@media screen and (max-width: 650px) {
    header{
        position: unset;
    }

    header .nav-list{
        display: none !important;
    }
    
    header .nav-bar{
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
    }

    header .nav-desktop{
        display: flex;
        align-items: center;
        justify-content: end;
    }

    header .logo{
        text-align: left;
    }

   .navigation{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 10%;
    padding-bottom: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    z-index: 10;
   }

   .navigation ul{
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0;
   }

   .navigation li{
    position: relative;
    list-style: none;
    width: 100px;
    height: 100px;
    z-index: 1;
   }

   li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: transparent;
   }

   a .icon{
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 2em;
    text-align: center;
    transition: 0.5s;
    color: black;
   }

   li#active .icon{
    transform: translateY(-5px);
    color: black;
   }

   a .text {
    position: absolute;
    font-size: 1em;
    transition: 0.5s;
    transform: translateY(20px);
    color: black;
   }

   li#active .text{
    transform: translateY(20px);
    color: black;
   }

   li#active a{
    transform: translateY(-40px);
    background-color: #D8A643;
    border-radius: 50%;
    border: 2px solid white;
   }

    .navigation li{
        width: 70px;
        height: 70px;
    }

    a .icon{
        font-size: 1.5em;
    }

    a .text {
        font-size: 0.75em;
        transform: translateY(20px);
    }
    
    li#active .text{
        transform: translateY(15px);
    }

    li#active a{
        transform: translateY(-25px);
    }

    header .nav-desktop p{
        font-size: 18px; 
    }

    header .opcs a{
        font-size: 18px;
    }
}

/* BANNER */

section.banner{
    background-color: var(--color-neutral-0);
    padding-top: 100px;
}

.slider{
    display: flex;
}

.slider img{
    height: 80vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.next{
    position: absolute;
    top: 45%;
    right: 50px;
}

.banner .next i{
    font-size: 3em;
    cursor: pointer;
    color: white;
}

.prev{
    position: absolute;
    top: 45%;
    left: 50px;
}

.banner .prev i{
    font-size: 3em;
    cursor: pointer;
    color: white;
}

.bullet-points {
    position: absolute;
    display: flex;
    top: 85%;
    left: 50%;
}
  
.bullet-points ul {
    list-style: disc;
    display: flex;
    padding: 0;
    margin: 0;
}
  
.bullet-points li {
    color: var(--color-neutral-30);
    font-size: 30px;
    padding: 10px;
}

.bullet-points li.selected {
    color: #fff;
}

.container{
    display: flex;
    justify-content: center;
}

.info{
    max-width: 1000px;
    gap: 2rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    background-color: var(--color-neutral-0);
    border-radius: 20px;
}

.horario, .planta, .btns{
    width: 100%;
    border: 1px solid var(--color-neutral-30);
    border-radius: 10px;
    padding: 1rem 2rem 1rem 2rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 50px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.horario{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
}

.horario h6{
    font-size: 15px;
    color: var(--color-neutral-30);
    font-weight: 500;
}

.horario h5{
    font-size: 18px;
    color: black;
    font-weight: 500;
}

.planta{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-items: center;
}

.planta h6{
    font-size: 15px;
    color: var(--color-neutral-30);
    font-weight: 500;
}

.planta p{
    font-size: 15px;
    color: black;
    font-weight: 500;
}

.btns{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-ligue, .btn-wts{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-ligue button{
    padding: 10px;
    font-size: 1rem;
    border-radius: 20px;
    border: 1px solid black;
}

.btn-ligue button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    cursor: pointer;
    width: 130px;
    font-weight: 500;
    font-size: 16px;
    padding: 0.7em 1.4em 0.7em 1.1em;
    color: white;
    background: linear-gradient(
        0deg,
        rgba(193, 69, 24, 1) 0%,
        rgba(193, 69, 24, 0.5) 100%
    );
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em white;
    letter-spacing: 0.05em;
    border-radius: 20em;
}
  
.btn-ligue button:hover {
    box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.btn-ligue a{
    text-decoration: none;
    color: white;
}

.btn-ligue i{
    color: var(--color-neutral-40);
    font-size: 2rem;
}

/* From Uiverse.io by adamgiebl */ 
.btn-wts button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    cursor: pointer;
    width: 130px;
    font-weight: 500;
    font-size: 16px;
    padding: 0.7em 1.4em 0.7em 1.1em;
    color: white;
    background: linear-gradient(
        0deg,
        rgba(20, 167, 62, 1) 0%,
        rgba(102, 247, 113, 1) 100%
    );
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
    letter-spacing: 0.05em;
    border-radius: 20em;
}
  
.btn-wts button:hover {
    box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.btn-wts i{
    font-size: 2rem;
    color: #2BB03D;
}

.btn-wts a{
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 1000px) {
    section.banner{
        padding-top: 0px;
    }

    .slider img{
        height: 75vh;
    }

    .next{
        right: 30px;
    }
    
    .prev{
        left: 30px;
    }

    .bullet-points {
        top: 65%;
    }

    .horario, .planta, .btns{
        padding: 1rem;
    }

    .btn-ligue, .btn-wts{
        gap: 1rem;
    }

    .banner .next i{
        font-size: 2.5em;
    }
    
    .banner .prev i{
        font-size: 2.5em;
    }
}

@media screen and (max-width: 650px) {
    .bullet-points {
        top: 80%;
    }

    .info{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .horario, .planta, .btns{
        width: 70%;
        padding: 1rem;
        max-width: 400px;
    }

    .horario{
        text-align: center;
    }

    .btn-ligue, .btn-wts{
        gap: 0.5rem;
    }

    .banner .next i{
        font-size: 2em;
    }
    
    .banner .prev i{
        font-size: 2em;
    }
}

@media screen and (max-width: 450px) {
    .horario, .planta, .btns{
        width: 80%;
    }
}

@media screen and (max-width: 350px) {
    .horario, .planta, .btns{
        width: 85%;
    }
}


/* CASINHA */

section.casinha {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 5rem 2rem 5rem;
    gap: 2rem;
    background-color: var(--color-neutral-0);
}

section.casinha .titulo{
    flex-basis: 20%;
    text-align: center;
}

.casinha-container{
    flex-basis: 70%;
    display: grid;
    grid-template-columns: 70% 30%;
}

.txt-casinha p{
    font-size: 20px;
}

.img-casinha{
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-casinha img{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border-radius: 50%;
}

.txt-casinha ul{
    margin: 1rem;
}

.txt-casinha ul li{
    font-size: 15px;
}

@media screen and (max-width: 900px) {
    section.casinha {
        padding: 0rem 1rem 2rem 1rem;
        gap: 1rem;
    }

    .casinha-container{
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 700px) {
    .txt-casinha p{
        font-size: 3.5vw;
    }

    .txt-casinha ul li{
        font-size: 3vw;
    }
}

/* REGRAS DE UTILIZAÇÃO */

section.faqs2{
    padding: 2rem 2rem 4rem 2rem;
    background-color: var(--color-neutral-0);
}

.faqs2 .wrapper .imagem{
    text-align: center;
}

.faqs2 .wrapper img{
    width: 25%;
}

.wrapper {
    max-width: 75%;
    margin: auto;
}

.wrapper > p,
.wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
}

.accordion {
    background-color: white;
    color: var(--color-neutral-40);
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 50px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.accordion i {
    font-size: 1.6rem;
    color: var(--color-neutral-40);
}

.pannel {
    padding: 0.2rem 2rem 0.2rem 2rem;
    background-color: white;
    overflow: hidden;
    display: none;
    border-radius: 30px;
    text-align: center;
    border: 2px solid var(--color-neutral-40);
}

.pannel p {
    color: black;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq {
    margin: 10px 0;
}

.faq.active {
    border: none;
}

.faqs2 button{
    border-radius: 30px;
}

button.accordion.active i{
    color: white;
}

.faqs2 button.active{
    background-color: var(--color-neutral-40);
    color: white;
    transition: .5s;
}

@media (max-width: 767px) {
    section.faqs2{
        padding-top: 20%;
        padding-bottom: 20%;
    }
}

@media screen and (max-width:1000px){
    .faqs2 h1{
        font-size: 40px;
        margin: 5% 5% 5%;
    }

    .wrapper {
        max-width: 100%;
    }

    .accordion {
        font-size: 0.8rem;
        padding: 1rem 1.5rem;
    }
    
    .accordion i {
        font-size: 1.2rem;
    }

    .pannel p {
        font-size: 0.8rem;
    }
}

/* PREÇOS */

section.precos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem 2rem 2rem;
    gap: 1rem;
    background-color: var(--color-neutral-0);
}

.precos .titulo{
    text-align: center;
}

.precos .tabela{
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--color-neutral-30);
    border-radius: 20px;
    width: 60%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.precos .valor{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-neutral-30);
    margin: 1rem;
}

.precos .valor p{
    font-size: 20px;
}

.precos .iva h5{
    font-size: 15px;
    color: var(--color-neutral-30);
}

.precos .btns{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    border: none;
    box-shadow: none;
}

@media screen and (max-width: 800px) {
    section.precos{
        padding: 1rem;
    }

    .precos .tabela{
        width: 90%;
    }

    .precos .btns{
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    .tabela .tit h3{
        font-size: 4vw;
    }

    .tabela .valor p{
        font-size: 4vw;
    }

    .tabela .iva h5{
        font-size: 3vw;
    }
}

/* FORMULÁRIO */

section.formulario{
    padding: 2rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form {
    padding: 20px;
    border: 1px solid #ccc; 
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 500px;
}

.form h2{
    text-align: center;
    margin-bottom: 1rem;
}

form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.secao{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.secao input{
    padding: 0.3rem;
    font-size: 20px;
}

label{
    text-align: left;
    font-size: 20px;
}

.secao-consentimento{
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.check{
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin: 10px;
}

label#consent{
    font-size: 1rem;
}

.secao-btn{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.secao-btn input{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    padding: 0.7em 1.4em 0.7em 1.1em;
    color: white;
    background: linear-gradient(
        0deg,
        rgba(20, 167, 62, 1) 0%,
        rgba(102, 247, 113, 1) 100%
    );
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
    letter-spacing: 0.05em;
    border-radius: 20em;
}

@media screen and (max-width: 800px) {
    .form {
        width: 400px;
    }

    label#consent{
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 400px) {
    .form {
        width: 300px;
    }

    label#consent{
        font-size: 12px;
    }
}

/* GALERIA */

section.titulo-galeria{
    background-image: url(../imagens/fundo-olaria.png);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.galeria{
    background-color: var(--color-neutral-0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.titulo-galeria .titulo{
    text-align: center;
    padding: 2rem;
    color: var(--color-neutral-0);
}

.titulo-galeria .constituicao{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: white;
    border-radius: 20px;
    width: 70%;
    margin-bottom: 2rem;
}

.titulo-galeria .bloco{
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-right: 1px solid var(--color-neutral-30);
}

#sem-borda{
    border-right: none;
}

.bloco .icone i{
    font-size: 1.8rem;
}

.bloco .texto h5{
    font-size: 20px;
    font-weight: 500;
}

.galeria-fts{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 2rem 2rem 5rem 2rem;
    justify-items: center;
}

.galeria-fts img {
    width: 80%;
    height: 200px;
    object-fit: cover;
    margin: 10px;
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.galeria-fts img:hover{
    filter: brightness(1.2);
}

div.galeria-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 4%;
    visibility: hidden;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.89);
}

div.galeria-modal span{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

div.galeria-modal .next{
    position: absolute;
    top: 50%;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

div.galeria-modal .prev{
    position: absolute;
    top: 50%;
    width: 30px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

div.galeria-modal .image-number{
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: var(--color-neutral-0);
    cursor: pointer;
    z-index: 10;
}

div.galeria-modal img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
}

@media screen and (max-width: 1000px) {
    .constituicao{
        width: 90%;
    }
}

@media screen and (max-width: 800px) {
    .titulo-galeria .bloco{
        flex-direction: column;
        padding: 3px;
        gap: 3px;
    }

    .galeria-fts img{
        height: 100px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 700px) {
    .bloco .texto h5{
        font-size: 3vw;
        text-align: center;
    }

    .bloco .icone i{
        font-size: 3vw;
    }
}

@media screen and (max-width: 500px) {
    .galeria-fts{
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem 1rem 5rem 1rem;
    }

    .bloco{
        gap: 0.2rem;
        padding: 5px;
    }
}

/* ATRACOES */

section.atracoes{
    padding: 2rem 2rem 2rem 2rem;
    background-color: var(--color-neutral-0);
}

.atracoes .titulo{
    text-align: center;
    color: black;
    margin-bottom: 1rem;
}

.atracoes-container{
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-bottom: 4rem;
}

.atracoes .modulo{
    position: relative;
    display: grid;
    grid-template-rows: 50% 50%;
    border-radius: 20px;
    gap: 0.5rem;
    width: 250px;
    height: 350px;
    background-color: white;
    border: 2px solid var(--color-neutral-30);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 40px -20px, rgba(0, 0, 0, 0.3) 0px 30px 20px -20px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.modulo .img{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.modulo .txt-modulo{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modulo .img img{
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.modulo .img img.azeite{
    width: auto;
}

.modulo h3{
    text-align: center;
    padding: 0.5rem 0 0 0;
}

.modulo p{
    padding: 0 1rem 1rem 1rem;
}

@media screen and (max-width:1110px) {
    .atracoes-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
}

@media screen and (max-width:600px) {
    .atracoes-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
}

/* CONTACTOS */

section.informacoes{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    padding: 2rem;
    background-color: var(--color-neutral-0);
}

.contactos-container{
    display: flex;
    justify-content: center;
}

.contactos{
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    align-items: center;
    border: 1px solid var(--color-neutral-30);
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contactos .titulo{
    text-align: center;
}

.contactos .btns{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    border: none;
    box-shadow: none;
}

.contactos .btns .btn-ligue, .contactos .btns .btn-wts{
    gap: 0.5rem;
}

.maps{
    border-radius: 20px;
}

.maps iframe{
    border-radius: 20px;
}

@media screen and (max-width:1120px) {
    section.informacoes{
        display: flex;
        flex-direction: column;
    }

    .contactos{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        text-align: center;
        justify-items: center;
    }

    .maps{
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width:600px) {

    .contactos .btns{
        flex-direction: column;
    }
}

/* RODAPÉ */

footer{
    width: 100%;
    color: white;
    background-image: url(../imagens/fundo-olaria.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-link{
    text-decoration: none;
}

.footer_content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 3.5rem;
    text-align: center;
    position: relative;
}

.footer_Contactos img{
    width: 20%;
}

.footer_Contactos h1{
    margin-bottom: 0.75rem;
}

.footer_social_media{
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    color: white;
    transition: all 0.4s;
}

.footer_social_media .footer-link i{
    font-size: 2rem;
}

.footer-list{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list .footer-link{
    color: white;
    transition: all 0.4s;
}

.footer-list .footer-link:hover{
    color: whitesmoke;
}

.footer_copyright{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9;
    padding: 1.5rem;
    font-weight: 100;
    text-align: center;
}

.footer_copyright a{
    color: var(--color-neutral-10);
}

/* MOBILE FOOTER */

@media screen and (max-width:1000px){
    .footer_copyright{
        padding: 5rem;
    }
}

@media screen and (max-width:768px) {
    .footer_content{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .texto-fundo p{
        font-size: 12px;
        margin-left: 20px;
        margin-right: 20px;
    }

    footer{
        text-align: center;
    }

    .footer_social_media {
        justify-content: center;
    }
}

@media screen and (max-width:426px) {
    .footer_content{
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 2rem;
    }
}

/* OBRIGADO */

.obg{
    height: 60vh;
}

.obg h1{
    font-size: 30px;
    text-align: center;
    padding-top: 10rem;
}

.obg p{
    margin: 2% 15% 5% 15%;
    font-size: 15px;
    margin-top: 2rem;
    text-align: justify;
}

.obg a{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.obg a button{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    padding: 0.7em 1.4em 0.7em 1.1em;
    color: white;
    background: linear-gradient(
        0deg,
        rgba(20, 167, 62, 1) 0%,
        rgba(102, 247, 113, 1) 100%
    );
    border: none;
    box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
    letter-spacing: 0.05em;
    border-radius: 20em;

}

@media screen and (max-width:700px) {
    .obg p{
        margin: 2%;
    }
}

/* POLITICA DE PRIVACIDADE */

.pol{
    padding-top: 8rem;
}

.pol .btn-termos-e-politicas .btn-ligue{
    width: 100%;
    display: flex;
    justify-content: center;
}

.pol h1{
    font-size: 30px;
    text-align: center;
    padding-top: 2rem;
}

.pol p, .pol h2, .pol h4{
    padding: 0 5% 1% 5%;
    text-align: justify;
}

.pol h2{
    font-size: 20px;
}

.pol h4{
    font-size: 18px;
}

.pol p{
    font-size: 15px;
}

@media screen and (max-width:700px) {
    .pol p{
        margin: 2%;
    }
}

@media screen and (max-width:650px) {
    .pol{
        padding-top: 1rem;
    }
}