body {
    width: 100%;
    height: fit-content;
}

/* TITULO */
.title-products {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
}

.title-products h1 {
    font-size: max(40px);
    margin: 3rem 0 5rem 0;
    color: var(--azul);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
}

/* PLASTIC-CARD */
.plastic-card {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

.pc-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.pc-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.pc-cards>h3 {
    color: var(--azul);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
    align-self: flex-start;
    margin: 0 0 2rem 1rem;
}

.pc-cards>p {
    width: 60%;
    align-self: flex-start;
    margin: 0 0 2rem 1rem;
}

.pc-flex-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;

}

.cards-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--branco);
    border-radius: var(--border);
    padding: 1rem;
    overflow: hidden;
    box-shadow: 0px 2px 13px -8px #00000070;
    transform: translateY(-2px);
    transition: .2s;
}

.cards-content:hover {
    box-shadow: 0px 14px 13px 0px #0000002c;
    transform: translateY(-10px);
}


.cards-content figure {
    width: 205px;
    height: 217px;
    padding: 10px;
}

.cards-content figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cards-content h4 {
    color: var(--azul);
    margin-bottom: 2rem;
}

.cards-content h3 a {
    color: var(--verde);
}

.cards-content h3 {
    font-size: 16px;
}

/* PC-DESCRIÇÃO */
.pc-desc {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6rem;
    flex-wrap: wrap;
}

.pc-desc figure {
    width: 400px;
    padding: 10px;
}

.pc-desc figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.pc-desc p {
    max-width: 600px;
    text-align: justify;
}



/* !CRACHAS */
.cracha {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}


.cracha-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.cracha-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 5rem;
}

.cracha-cards>h3 {
    color: var(--azul);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
    align-self: flex-start;
    margin: 0 0 2rem 1rem;
}

.cracha-flex-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;

}

.cracha-cards-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--branco);
    border-radius: var(--border);
    padding: 1rem;
    overflow: hidden;
    box-shadow: 0px 2px 13px -8px #00000070;
    transform: translateY(-2px);
    transition: .2s;
}

.cracha-cards-content:hover {
    box-shadow: 0px 14px 13px 0px #0000002c;
    transform: translateY(-10px);
}


.cracha-cards-content figure {
    width: 200px;
    height: 250px;
    padding: 10px;
}

.cracha-cards-content figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cracha-cards-content h4 {
    color: var(--azul);
    margin-bottom: 2rem;
}

.cracha-cards-content h3 a {
    color: var(--verde);
}

.cracha-cards-content h3 {
    font-size: 16px;
}

/* PC-DESCRIÇÃO */
.cv-pc-desc {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    column-gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.cv-pc-desc figure {
    width: 400px;
    padding: 10px;
}

.cv-pc-desc figure img {
    width: 100%;
    object-fit: contain;
}

.cv-pc-desc h3 {
    color: var(--azul);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
    align-self: flex-start;
    margin: 1rem 0;
}

.cv-pc-desc p {
    max-width: 600px;
    text-align: justify;
}

/* CV TRANSPARENT */
.cv-transparent {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 5rem;
    flex-wrap: wrap;
}

.cv-transparent figure {
    width: 400px;
    padding: 10px;
}

.cv-transparent figure img {
    width: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

.cv-transparent h3 {
    color: var(--azul);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
    align-self: flex-start;
    margin: 1rem 0;
}

.cv-transparent p {
    max-width: 600px;
    text-align: justify;
}

.cv-pc-desc p, .cv-transparent p, .pc-desc p, .red-cards>p, .last-cards>p{
    font-size: 16px;
    color: var(--preto);
}

/* *-------------------------------------------RED SECTION */
.red-section {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    background-color: var(--azul);
    align-items: center;
    padding-top: 5rem;
}

.red-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.red-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.red-cards>h3 {
    color: var(--branco);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
    align-self: flex-start;
    margin: 0 0 2rem 1rem;
}

.red-cards>p {
    color: var(--branco);
    width: 100%;
    align-self: flex-start;
    text-align: justify;
    margin: 0 0 2rem 1rem;
}

.red-flex-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;

}

.red-cards-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--branco);
    border-radius: var(--border);
    padding: 1rem;
    overflow: hidden;
    box-shadow: 0px 2px 13px -8px #00000070;
    transform: translateY(-2px);
    transition: .2s;
}

.red-cards-content:hover {
    box-shadow: 0px 14px 13px 0px #0000002c;
    transform: translateY(-10px);
}


.red-cards-content figure {
    width: 230px;
    height: 250px;
    padding: 10px;
}

.red-cards-content figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.red-cards-content h4 {
    color: var(--azul);
    margin-bottom: 2rem;
}

.red-cards-content h3 a {
    color: var(--verde);
}

.red-cards-content h3 {
    font-size: 16px;
}

/* *------------------------------------LAST PROD SECTION */
.last-prod-section {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    background-color: var(--branco);
    align-items: center;
    padding-top: 5rem;
    margin-bottom: 5rem;
}

.last-prod-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.last-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.last-cards>h3 {
    color: var(--azul);
    border-bottom: 3px solid var(--amarelo);
    width: fit-content;
    align-self: flex-start;
    margin: 0 0 2rem 1rem;
}

.last-cards>p {
    width: 80%;
    align-self: flex-start;
    margin: 0 0 2rem 1rem;
}

.last-flex-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;

}

.last-cards-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--branco);
    border-radius: var(--border);
    padding: 1rem;
    overflow: hidden;
    box-shadow: 0px 2px 13px -8px #00000070;
    transform: translateY(-2px);
    transition: .2s;
}

.last-cards-content:hover {
    box-shadow: 0px 14px 13px 0px #0000002c;
    transform: translateY(-10px);
}


.last-cards-content figure {
    width: 230px;
    height: 250px;
    padding: 10px;
}

.last-cards-content figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.last-cards-content h4 {
    color: var(--azul);
    margin-bottom: 2rem;
}

.last-cards-content h3 a {
    color: var(--verde);
}

.last-cards-content h3 {
    font-size: 16px;
}

/* *------------------------------------CURIOSIDADES */
.curiosidades{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--amarelo);
}
.curiosidades .how-to-order{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.how-to-order > h1{
    font-size: max(25px);
    margin: 3rem 0 2rem 0;
    color: var(--branco);
    border-bottom:3px solid var(--azul) ;
    width: fit-content;
}

.how-to-order > p{
    color: var(--branco);
    font-weight: 500;
    text-align: justify;
    margin-bottom: 2rem;
}

.hto-box{
    display: block;
    background-color: var(--branco);
    border-radius: var(--border);
    padding: 1rem;
    margin-bottom: 50px;
    box-shadow: 0px 2px 5px -1px #00000070;
    transform: translateY(-2px);
    transition: .2s cubic-bezier(0, 0.24, 0.45, 0.43);
}
.hto-box:hover{
    box-shadow: 0px 14px 13px 0px #00000045;
    transform: translateY(-10px);
}

.hto-box h3 {
    color: var(--azul);
    margin-bottom: 1rem;
}
.hto-box p {
    text-align: justify;
}

