/* =========================
CORES
#F6F3EE - BRANCO OVO
#172B47 - AZUL
#D2A44E - DOURADO
#163C37 - VERDE

FONTES
Tan Pearl
Montserrat
Higuen Elegant Serif
========================= */

/* Import de fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "tan-pearl";
    src: url("./assets/fonts/tan-pearl.woff") format("woff");
}

@font-face {
    font-family: "Higuen-serif";
    src: url("./assets/fonts/Higuen-Serif.woff") format("woff");
}

/* Reset e fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

.link{
    font-size: 15px;
}

a:hover{
    color: #D2A44E;
}

/* NAV */
nav {
    display: flex;
    position: fixed;
    justify-content: space-around;
    align-items: center;
    background-color: #163C37;
    padding: 20px;
    font-size: 15px;
    color: white;
    width: 100%;
}

/* SECTIONS */
section {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F6F3EE;
    padding: 0 20px;
}

h1 {
    font-family: "tan-pearl";
    font-size: 120px;
    font-weight: 500;
    color: #172B47;
    text-align: center;
}

h2 {
    font-size: 50px;
    font-weight: 500;
    color: #163C37;
    text-align: center;
}

h3 {
    font-family: "tan-pearl";
    font-size: 50px;
    margin-bottom: 60px;
    text-align: center;
    color: #172B47;
}

section h3 {
    margin-top: 80px;
    margin-bottom: 60px;
    text-align: center; 
}

/* CONTAINER 2 COLUNAS */
.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    margin: 0 auto;
}

.esquerda, .direita {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* SOBE */
.sobre .esquerda {
    padding-right: 30px;
}

.sobre .direita img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h4, h4 > a {
    color: #163C37;
    font-size: 15px;
}

.dentro-esquerda{
    display: flex;
    justify-content: space-between;
}

.dentro-direita{
    gap: 50px;
}

/* CONTATO */
.contato .esquerda {
    padding-right: 20px;
    align-items: center;
}

.form {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border: 1px solid #163C37;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.depoimentos{
    background-color: #172B47;
    color: #F6F3EE;
}

input, select {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #172B47;
    font-size: 16px;
}

button {
    height: 50px;
    background-color: #D2A44E;
    color: #F6F3EE;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    margin-top: 20px;
}

.contato .direita {
    justify-content: flex-start;
    align-items: flex-start;
}

.contato .direita ol {
    padding-left: 20px;
    color: #172B47;
}

/* FOOTER */
footer {
    width: 100%;
    background-color: #163C37;
    display: flex;
    justify-content: center;
}

.info-footer{
    width: 80%;
    color: #F6F3EE;
    font-weight: 300;
    display: grid;
    text-align: center;
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
}

.footer-sobre{grid-area: 3/1/2/2;}
.footer-link{grid-area: 3/2/2/3;}
.footer-contato{grid-area: 3/3/2/4;}
.footer-seguir{grid-area: 3/4/2/4;}
.footer-direitos{
    grid-area: 3/2/4/4;
}

footer h4{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D2A44E;
}

footer p, a{
    font-size: 12px
}

footer ul{
    list-style: none;
}

footer h6{
    color: #D2A44E;
    font-size: 15px;
    font-weight: 400;
    padding-top: 60px;
}

.footer-imagens{
    display: flex;
    justify-content: center;
    gap: 10px;
}

ol li{
    color:#D2A44E;
    font-size: 20px;
    margin-top: 20px;
}


/* RESPONSIVO TABLET */
@media(max-width: 992px){
    h1 { font-size: 80px; }
    h2 { font-size: 32px; }
    h3 { font-size: 28px; }

    .container {
        flex-direction: column;
        gap: 30px;
    }

    .sobre .esquerda, .contato .esquerda {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .sobre .direita img {
        width: 80%;
        height: auto;
    }
}

/* RESPONSIVO CELULAR */
@media(max-width: 600px){
    h1 { font-size: 50px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }

    section { padding: 40px 15px; }

    .form { width: 100%; padding: 20px; }

    .sobre .direita img { width: 100%; height: auto; }

    .container { width: 100%; flex-direction: column; gap: 20px; }
}
