main {
    background-color: var(--white);
    height: calc(100vh - 50px);
}
section {
    width: 100%;
}
/**/
#section-titulo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
h1, h2 {
    width: 100%;
    text-align: center;
}
h1 {
    padding-bottom: 20px;
}
h2 {
    font-size: 14pt;
}
/**/
#section-encurtador {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
#section-encurtador form {
    width: 100%;
    display: flex;
    justify-content: center;
}
#section-encurtador form input {
    padding: 10px;
    width: 350px;
    border: 1px solid var(--verde-militar-1);
}
#section-encurtador form button {
    background-color: var(--verde-militar-1);
    color: var(--white);
    padding: 0px 10px;
    font-weight: bolder;
    cursor: pointer;
}
#section-encurtador form button:hover {
    background-color: var(--verde-militar-2);
}

#section-encurtador #url-curta {
    margin-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#section-encurtador #url-curta p {
    padding: 20px;
    border: 1px solid var(--verde-militar-1);
}
#section-encurtador #url-curta a {
    color: var(--verde-militar-1);
    font-weight: bolder;
}
/**/
#section-informativo {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
    color: #333;
}

#section-informativo #div-texto {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#section-informativo h3 {
    margin-top: 25px;
    color: #222;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

#section-informativo p {
    margin-top: 8px;
    color: #555;
    font-size: 1rem;
}

#section-informativo h3::before {
    font-size: 1.4rem;
    display: inline-block;
}

/* Ícones por categoria */
#section-informativo h3:nth-of-type(1)::before { content: "🔗"; }
#section-informativo h3:nth-of-type(2)::before { content: "🚀"; }
#section-informativo h3:nth-of-type(3)::before { content: "✨"; }
#section-informativo h3:nth-of-type(4)::before { content: "🔐"; }
#section-informativo h3:nth-of-type(5)::before { content: "⚙️"; }
#section-informativo h3:nth-of-type(6)::before { content: "📌"; }

/* Responsividade */
@media (max-width: 600px) {
    #section-informativo div {
        padding: 20px;
    }

    #section-informativo h3 {
        font-size: 1.15rem;
    }

    #section-informativo p {
        font-size: 0.95rem;
    }
}
/**/

#div-contagem{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
#div-contagem #div-contagem-title, #div-contagem #div-contagem-num{
    width: 100%;
    display: flex;
}
#div-contagem #div-contagem-title p, #div-contagem #div-contagem-num p{
    width: 50%;
    display: flex;
    justify-content: center;
    font-weight: bolder;
}