header {
    width: 100%;
    color: var(--azul);
}

header .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    align-items: flex-start;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.breadcrumbs {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    background-color: #133359;
    color: #fff;
    font-size: 1rem;
    font-family: "Bronkoh-Bold", sans-serif;
    letter-spacing: 0.08em;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Bronkoh-Bold", sans-serif;
    letter-spacing: 0.08em;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.header-programaorla {
    background-image: url("../../img/bannerbackgroundprograma.jpg");
    background-size: cover;
    background-position: center;
    height: 600px;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #a7a7a75d;
}

.download-list ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--azul); /* icon color */
}

.download-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M19 13h-4V3H9v10H5l7 8 7-8z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    color: var(--azul); /* icon color */
}

.download-list li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #000;
}

.download-list li a:hover {
    text-decoration: underline;
    color: var(--azul);
}

.download-list h3 {
    color: var(--azul);
    width: 100%;
    border-bottom: 2px solid var(--azul);
}

.cta-cg {
    width: 100%;
    background-color: #f4fbff;
    border: 2px dashed var(--azul);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(19, 51, 89, 0.04);
    gap: 0;
}


.cta-cg h3 {
    margin-bottom: 0;
    color: var(--azul);
}

.cta-cg p {
margin-top: 0;
    color: #000;
}

