/* Importação da fonte Inter */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #222;
}

/* Navbar / Cabeçalho */
.navbar {
    background-color: #001d3b;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 25px 40px;
}

.logo {
    height: 90px;
}

.logo-p p{
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.titulo-escritorio {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Banner */


/* Container principal */
.info {
    display: flex;
    justify-content: space-between;
    padding: 20px 140px;
    background-color: #f8fbff;
}

/* Lado esquerdo */
.info-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.saudacao {
    font-size: 22px;
    margin-bottom: 10px;
}

.contador-nome {
    color: #064A8D;
    font-weight: 700;
}

.descricao {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

.contato p {
    margin-bottom: 10px;
    font-size: 17px;
    color: #333;
}

.contato i {
    margin-right: 8px;
    color: #064A8D;
}

.telefone {
    background-color: #1abc5b;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    font-size: 16px;
}

.telefone i {
    margin-right: 10px;
    color: white;
}

/* Lado direito - formulário */
.info-right {
    width: 45%;
    background-color: #fefefe;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.form-duvidas h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.form-duvidas label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}

.form-duvidas input,
.form-duvidas textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    resize: none;
}

.form-duvidas button {
    background-color: #064A8D;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s;
}

.form-duvidas button:hover {
    background-color: #053a72;
}

footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
}

        .container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .noticia {
            background: white;
            width: 340px;
            height: auto;
            display: flex;
            flex-direction: column;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            text-align: left;
            overflow: hidden;
        }
        .noticia img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 0;
        }
        .noticia-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .noticia h2 {
            font-size: 15px;
            margin-bottom: 10px;
        }
        .noticia p {
            font-size: 14px;
            color: #666;
            text-align: left;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .noticia a {
            display: block;
            text-align: center;
            margin-top: 15px;
            padding: 10px;
            background: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 0;
        }
        .noticia a:hover {
            background: #0056b3;
        }

        

/* Responsivo */
@media (max-width: 900px) {
    .info {
        flex-direction: column;
        padding: 20px;
    }

    .info-left, .info-right {
        width: 100%;
    }

    .info-right {
        margin-top: 30px;
    }

    .logo-p p {
    font-size: 11px;
}

.titulo-escritorio {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 25px;
}

.empregos-texto h2 {
    font-size: 25px;
}

.empregos-texto p {
    font-size: 15px;
    text-align: center;
}

.botao-cadastro {
    padding: 14px 24px;
}

.botao-cadastro p{
    color: #fff;
    font-size: 14px;
}
}
