@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cor-primaria: #D97706;
    --cor-secundaria: #EAD7B7;
    --cor-fundo2: #2A140E;
    --cor-fundo1: #010101;
    --cor-texto: #F5F3EE;
    --border: 2px solid rgba(255,255,255,0.3); 
}


* {
padding: 0;
margin: 0;
list-style: none;
text-decoration: none;
color: inherit;
box-sizing: border-box;
/* transition: 0.2s linear; */
font-family: "Roboto Condensed", sans-serif;
}
body {
    background: linear-gradient(70.15deg, var(--cor-fundo1) 76.62%, var(--cor-fundo2) 85.61%);
    color: var(--cor-texto);
    min-height: 100vh;
}
section {
    max-width: 1200px;
    margin: 0 auto;
    padding:2rem 1rem
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--cor-fundo1);
    border-bottom: var(--border);
}
header section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header section a.logo {
    background-color: white;
    border-radius: 100%;
}

header section a img {
    width: 8.5rem;

}
header nav ul {
    display: flex;
    flex-direction: row;
    column-gap: 4rem;
}
header nav ul li a {
    font-size: 1.25rem;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}
header nav ul li a:hover {
    color: var(--cor-primaria);
    font-size: 1.35rem;
    border-bottom: 2px solid var(--cor-primaria);
    padding-bottom: 0.2rem;
    transition: 0.2s ease-in-out;
}
main {
    margin: 16rem 0 4rem 0;
}
.inicio {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    
}
.inicio img {
    width: 100%;
    max-width: 40rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.inicio .titulo {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    align-items:flex-end;
}
.inicio .titulo h1 {
    font-size: 4rem;
    font-family: "Bebas Neue", cursive;
    color: var(--cor-secundaria);
}
.inicio .titulo h2 {
    font-size: 2rem;
    color: var(--cor-primaria)
}
.descricao {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.descricao div {
    border: var(--border);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.descricao div h3 {
    font-size: 1.8rem;
    color: var(--cor-primaria);
}
.descricao div p {
    font-size: 1.1rem;
    text-align: justify;
}

.cards {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
}
.cards h3{
    font-size: 1.8rem;
    color: var(--cor-primaria);
}

.cards .distritos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    justify-content: center;
    column-gap: 2rem;
    row-gap: 2rem;
    flex-wrap: wrap;
}
.cards .distritos a {
    border: var(--border);
    padding: 2rem 1rem;
    border-radius: 10px;
    width: 100%;
    max-width: 22rem;
}
.cards .distritos a:hover {
    transition: 0.2s ease-in-out;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.cards .card {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;

}
.cards .card h4 {
    font-size: 1.2rem;
    color: var(--cor-secundaria);
}
.cards .card p {
    font-size: 1rem;
    text-align: justify;
    font-weight: 200;
    max-width: 20rem;
}

.cards .card img {
    width: 100%;
    max-width: 20rem;
    border-radius: 10px;
}

.localizacao {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}
.localizacao h3 {
    font-size: 1.8rem;
    color: var(--cor-primaria);
}

footer {
    border-top: var(--border); 
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer p {
    font-size: 1rem;
    color: var(--cor-secundaria);
}
.footer a {
    display: flex;
    flex-direction: row;
    column-gap: 0.2rem;
    align-items: center;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 900px) {
    .inicio {
        flex-direction: column;
        text-align: center;
    }

    .inicio .titulo {
        align-items: center;
    }

    header nav ul {
        column-gap: 1.5rem;
    }
    iframe {
        width: 100%;
        height: 300px;
    }
    .footer a {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    header section {
        flex-direction: column;
        gap: 0.5rem;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
    }

    header section a img {
        width: 60px;
    }

    main {
        margin-top: 14rem; 
    }
    iframe {
        width: 100%;
        height: 250px;
    }
    .footer a {
        flex-wrap: wrap;
    }

}
