/* ==========================================
   MAIN
========================================== */
main {
    width: 100%;
}


/* ==========================================
   BANNER / HERO
========================================== */
main .banner {
    /* margin-top: 80px; */
    height: 100vh;
    width: 100%;

    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.9) 100%),
        url("../img/banner_pois.png") top/cover no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 15px;
    text-align: center;
}

main .banner h1 {
    max-width: 900px;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
}

main .banner h1:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

main .banner form {
    display: flex;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

main .banner input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 16px;
}

main .banner button {
    padding: 0 25px;
    background: #ff6b1a;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

main .banner button:hover {
    background: #ff4800;
}

/* ==========================================
   SEÇÕES
========================================== */
section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

section h1 {
    font-size: 38px;
    color: #ff6b1a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

section h1::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff6b1a, #ff9f3a);
    margin: 15px auto 40px;
    display: block;
}

section h2 {
    font-size: 22px;
    color: #ccc;
    margin-bottom: 40px;
}

section p {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #dcdcdc;
    line-height: 1.7;
}

/* ==========================================
   SERVIÇOS
========================================== */
.apresenta_servico {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.servico_item {
    background: linear-gradient(180deg, #1b1b3a 0%, #151530 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 45px 25px;
    text-align: center;
    position: relative;
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.servico_item::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 26, 0.12), transparent 60%);
    transform: rotate(25deg);
    transition: 0.6s ease;
}

.servico_item:hover::before {
    top: -20%;
    left: -20%;
}

.servico_item h3 {
    font-size: 22px;
    color: #ff8c3a;
    margin-bottom: 10px;
}

.servico_item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 26, 0.25);
    border-color: rgba(255, 107, 26, 0.5);
}


/* rodape */

/* ============================
   RODAPÉ PRINCIPAL
=============================== */
footer {
    width: 100%;
    color: #ffffff;
}

/* Container geral do rodapé */
.rodape {
    width: 100%;
    background: #121228f2;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
    padding: 40px 0px;
    /* gap: 40px; */
}

/* ============================
   CONTATO + LINKS
=============================== */
.info_entrar_contato {
    display: flex;
    justify-content: center;

    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.info_entrar_contato h1 {
    color: #ff4800;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Ajuste interno */
.entrar_contato div,
.links_rapidos div {
    margin-bottom: 6px;
}

/* ============================
   NOTÍCIAS
=============================== */
.rodape .noticias {
    max-width: 650px;
    text-align: center;
    padding: 40px;
}

.rodape .noticias h1 {
    color: #ff4800;
    font-size: 22px;
    margin-bottom: 10px;
}

.rodape .noticias p {
    margin-top: 10px;
    line-height: 1.5;
    color: #ccc;
}

/* Formulário de e-mail */
.rodape .noticias .caixa-msm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
    gap: 10px;
}

.rodape .noticias .email {
    flex: 1;
    padding: 14px;
    font-size: 16px;
    min-width: 220px;
    border-radius: 4px;
    border: none;
}

.rodape .noticias .inscrever {
    padding: 14px 25px;
    background: #ff4800;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}

/* ============================
   DIREITOS AUTORAIS
=============================== */
.direitos_autorias {
    width: 100%;
    padding: 20px 0;
    background: rgba(18, 18, 40, 0.95);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
    font-size: 14px;
}

.direitos_autorias a {
    color: #fff;
    padding: 0 10px;
}

.direitos_autorias a:hover {
    color: #ff4800;
}

.direitos_autorias .autoridade span {
    color: #ff4800;
}