/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* ========== DIV 1 - Header ========== */
.div1 {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.div-alto {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #0047AB;
    color: #fff;
    font-size: 0.85rem;
}

.esquerda {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icone-svg {
    width: 40px;
    height: 40px;
}

.texto-alto {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.links-direita {
    display: flex;
    gap: 20px;
}

.links-direita p {
    margin: 0;
    cursor: pointer;
    transition: opacity 0.3s;
}

.links-direita p:hover {
    opacity: 0.8;
}

/* Div Baixo - Menu */
.div-baixo {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.menu-bolinha {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-bolinha span {
    width: 25px;
    height: 3px;
    background-color: #0047AB;
    border-radius: 2px;
}

.linha-vertical {
    width: 1px;
    height: 30px;
    background-color: #e0e0e0;
}

.linha-vertical2 {
    width: 1px;
    height: 30px;
    background-color: #e0e0e0;
    margin-left: auto;
}

.icone-svg2 {
    width: 50px;
    height: 50px;
}

.input-busca {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-busca:focus {
    border-color: #0047AB;
}

.busca-mobile {
    display: none;
    cursor: pointer;
    color: #0047AB;
    font-size: 1.2rem;
}

.notificacao {
    cursor: pointer;
    color: #0047AB;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.notificacao:hover {
    color: #003380;
}

/* ========== DIV 2 - Breadcrumb ========== */
.div2 {
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb span {
    color: #0047AB;
    font-weight: 600;
}

/* ========== DIV 3 - Título da Seção ========== */
.div3 {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
    background-color: #fff;
}

.seta-bolinha {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.seta-bolinha:hover {
    background-color: #e0e0e0;
}

.seta-bolinha i {
    color: #0047AB;
    font-size: 1.2rem;
}

.titulo-secao {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ========== DIV 4 - Formulário de Consulta ========== */
.div4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.card-direita {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-direita h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-direita label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.input-form {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-form:focus {
    border-color: #0047AB;
}

.btn-consultar {
    width: 100%;
    padding: 14px;
    background-color: #0047AB;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-consultar:hover {
    background-color: #003380;
}

.btn-consultar:active {
    transform: scale(0.98);
}

/* Modal Aguarde */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-box p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Lupa e Texto Explicativo */
.lupa-img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.texto-direito {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0047AB;
}

.texto-direito p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ========== DIV 5 - Rodapé ========== */
.div5 {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.div5-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.logos-esquerda {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-go {
    height: 50px;
}

.divisor {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
}

.logo-expresso {
    height: 40px;
}

.lado-direito {
    display: flex;
    gap: 60px;
}

.coluna {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.titulo-coluna {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
}

.icones {
    display: flex;
    gap: 10px;
}

.icones svg {
    cursor: pointer;
    transition: opacity 0.3s;
}

.icones svg:hover {
    opacity: 0.7;
}

.icones-lojas {
    display: flex;
    gap: 10px;
}

.icone-loja {
    height: 40px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.icone-loja:hover {
    opacity: 0.7;
}

.linha-inferior {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.botoes-rodape {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.botao-rodape {
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.botao-rodape:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.rodape-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
}

.logo-final {
    height: 40px;
}

.rodape-final p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* ========== Responsividade ========== */
@media screen and (max-width: 768px) {
    .links-direita {
        display: none;
    }

    .input-busca {
        display: none;
    }

    .busca-mobile {
        display: block;
    }

    .icone-svg {
        width: 45px;
        height: 45px;
    }

    .icone-svg2 {
        width: 55px;
        height: 55px;
    }

    .div4 {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .titulo-secao {
        font-size: 1.4rem;
    }

    .div5-conteudo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lado-direito {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .botoes-rodape {
        flex-direction: column;
        align-items: center;
    }

    .botao-rodape {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .div-alto {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }

    .esquerda {
        flex-direction: column;
    }

    .icone-svg {
        width: 50px;
        height: 50px;
    }

    .icone-svg2 {
        width: 60px;
        height: 60px;
    }

    .texto-alto {
        font-size: 1.1rem;
    }

    .div-baixo {
        padding: 10px;
    }

    .card-direita {
        padding: 20px;
    }

    .titulo-secao {
        font-size: 1.2rem;
    }
}
