* {
    margin: 0;
    --azul-marinho: #1b2b53;
    --branco: #fff;
    --cinza: #f0f0ee;
    --cinza-texto: #494949;
    --destaque: #1b3a5d;
}

body {
    font-family: 'Montserrat', sans-serif;
    max-width: 100vw;
    background-color: var(--cinza);
}

.center {
    text-align: center;
}

.header__logo {
    width: 100%;
    background-color: var(--azul-marinho);
    padding: 0.4rem 0
}

.footer__logo {
    width: 100%;
    background-color: var(--azul-marinho);
    padding: 0.4rem 0;
    color: var(--branco);
}

.footer_logo__img{
    width: 11rem;
}

.header_logo__img {
    width: 11rem;
}

.apresentacao__img {
    width: 8rem;
    height: 8rem;
    border-style: solid;
    border-radius: 5px;
    border-width: 0.4rem;
    overflow: hidden;
    border-color: var(--azul-marinho);

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.titulo {
    color: var(--azul-marinho);
}

.section__apresentacao {
    margin: 1rem 0;
    padding: 1rem;
    background-color: var(--branco);
}

.flex-center-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.flex-center-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.apresentacao__dados {
    color: var(--cinza-texto);
    font-size: 0.8rem;
}

.apresentacao__btn {
    background-color: var(--azul-marinho);
    color: var(--branco);
    padding: 0.5rem 2rem;
    border-radius: 5px;

    a {
        text-decoration: none;
        color: var(--branco);
    }

    img{
        width: 2rem;
        height: 2rem;
    }
}


.card {
    background-color: var(--branco);
    border-radius: 5px;
    padding: 1rem;
    margin: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-listagem {
    background-color: var(--cinza);
    border-radius: 5px;
    padding: 1rem;
    margin: 1.2rem 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(39vw, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    text-align: center;
    place-self: center;
    width: 100%;
}

.grid-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    font-size: 80%;
    border: 1px solid var(--azul-marinho);
    border-radius: 5px;
    gap: 1rem;
    padding: 0.8rem;
}

.grid-item img {
    width: 30%;
    max-width: 3rem;
}

.faq {
    margin: 1rem 0;
}

.faq details {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--branco);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq details:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--azul-marinho);
    list-style: none;
    padding: 0.7rem 0;
    font-size: 1rem;
    position: relative;
}


.faq summary:hover {
    color: var(--destaque);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: translateY(-50%) rotate(0deg);
    color: var(--azul-marinho);
    transform-origin: center;
}

.faq details[open] summary .icon {
    transform: rotate(180deg);
}

.faq details .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding-top: 0;
}

.faq details[open] .faq-content {
    max-height: none;
    opacity: 1;
    padding-top: 1rem;
}

.faq details .faq-content {
    color: var(--cinza-texto);
    line-height: 1.6;
}

.faq details p {
    margin-bottom: 0.8rem;
}

.faq details p:last-child {
    margin-bottom: 0;
}

.faq summary::after {
    float: right;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--azul-marinho);
    transform-origin: center;
    font-weight: bold;
}

.faq details[open] summary::after {
    transform: rotate(180deg) scale(1.1);
}

.faq details[open] {
    transform: scale(1.01);
    border-color: var(--azul-marinho);
}

.footer__items{
    margin: 2rem 0;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.info-contato {
    display: flex;
    flex-direction: column;
    gap: 0.7%;
    font-size: 100%;
}

.info-contato span {
    color: var(--branco) !important;
}

.copyright {
    width: 100%;
    text-align: center;
    font-size: 100%;
    opacity: 0.7;
}