main {
    display: flex;
    flex-direction: column;

    align-items: center;
}


/* ====================================== Ibagens, manda as ibagens comandante Ailton ========= */
.box-cards {
    width: 100%;
    max-width: var(--max-width);

    padding: var(--padding);

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 32px;

    overflow: hidden;
}

.card {
    width: 264px;
    height: 220px;

    padding: 32px;

    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: center;

    transform: scale(0);
    transition: transform 0.5s ease-in-out, opacity 0.5s 0.5s;

    background-color: var(--gray-f1);

    box-shadow: var(--box-shadow);

    border-radius: 10px;
}

.card img {
    max-width: 100%;
    height: 120px;

    object-fit: contain;
}

.card:nth-child(1) {
    animation: scaleAndMove 2s forwards;
}

.card:nth-child(2) {
    animation: scaleAndMove 2s forwards 0.5s;
}

.card:nth-child(3) {
    animation: scaleAndMove 2s forwards 1s;
}

@keyframes scaleAndMove {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .box-cards {
        flex-wrap: wrap;

        justify-content: center;
        align-items: center;
    }
}

/* ====================================== Solution Cards ====================================== */

.products {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
}

.products-container {
    width: 100%;

    max-width: var(--max-width);

    padding: var(--padding);

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 32px;
}

.products-title {
    color: var(--gray-333);

    font-weight: bolder;
}

.products-cards {
    width: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 24px;
}

.product-card {
    width: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    background-color: var(--gray-f1);

    box-shadow: var(--box-shadow);

    border-radius: 10px;

}

.product {
    position: relative;

    width: 100%;

    padding: 16px;

    display: grid;

    grid-template-columns: 48px 5fr 10fr 100px 42px;
    grid-auto-flow: column;

    gap: 16px;

    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.product-field {
    justify-self: left;
}

/* CLASSE GERENCIADA PELO SAIBA_MAIS.JS */
.product-open {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.product-card-image {
    width: 48px;
    height: 48px;
}

.product-card-title {

    font-size: 16px;

    font-weight: 600;

    color: var(--gray-60);
}

.product-card-text {
    font-size: 16px;

    font-weight: 400;

    color: var(--gray-60);
}

@media screen and (max-width: 1200px) {
    .products {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .product {
        height: fit-content;
        margin: 0;

        grid-template-columns: 1fr;
        /* Altera para uma única coluna */
        grid-auto-flow: row;
        /* Elementos adicionais serão adicionados em uma nova linha */
    }
}


/* SEÇÃO EMITINDO CUPOM FISCAL */

.box-req {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
}

.box-req .info-req {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-req .box-top {
    margin: 1rem 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.info-req h2 {
    font-size: 2rem;
    color: var(--blue-light-color);
}

.info-req p {
    margin: 2rem 0;
    font-size: 1rem;
}

/* S@T FISCAL */

/* .sell-itens */
.sell-itens {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sell-itens h2 {
    margin: 0 0 12px 7%;
}

@media screen and (max-width: 500px) {
    .sell-itens h2 {
        margin: 0;
    }
}

.sell-itens .sell-list {
    width: 90%;
    list-style-position: inside;
}

.sell-itens .sell-list li {
    line-height: 2rem;
}
