/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    border: none;
}

body {
    line-height: 1.6;
    min-height: 100vh; 
}

.container {
    max-width: 98%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.header-principal {
    padding: 30px 0;
}

.logo-img {
    height: 50px; /* Ajuste o tamanho conforme sua imagem */
    width: auto;
}
.header-logo a {
    gap: 15px; /* Espaço entre a imagem e o texto */
    display: flex;
    align-items: center;
}
.header-logo h1 {
    font-size: 1.5rem;
    color: #3d1a4b;
    font-weight: 600;
    letter-spacing: 1px;
}


.header-links ul {
    display: flex;
    gap: 20px;
}
.header-links a {
    color: #696868;
    font-weight: 400;
}
.header-links a:hover {
    transition: color 0.5s;
    color: #3d1a4b;
}

/* Seção da Imagem */
.secimg {
    position: relative;
    height: 70vh;
    min-height: 400px;
    background-image: url('/assets/imgs/cidade.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.secimg-content {
    position: relative;
}
.secimg-content h2 {
    /* color: red; */
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}

/* Seção do Texto */
.section-texto {
    padding: 30px 0;
    text-align: center;
}
.section-texto .container {
    flex-direction: column;
}

.infoscontato {
    color: #696868;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.aviso {
    color: #e57373;
    font-size: 0.8rem;
}
.aviso a {
    color: #e57373;
    font-weight: 600;
}


/* ----- RESPONSIVIDADE ----- */

/* Tablets */
@media (max-width: 992px) {
    .secimg-content h2 {
        font-size: 2.5rem;
    }

    .secimg {
        height: 65vh;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .header-logo h1 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .header-links ul {
        gap: 15px;
    }

    .secimg {
        height: 50vh;
    }

    .secimg-content h2 {
        font-size: 1.6rem;
    }

    .infoscontato {
        font-size: 0.9rem;
    }

    .aviso {
        font-size: 0.7rem;
    }
        
}