.banner-principal-produtos {
    background: url(../images/bg-banner-gomah-interno.png) bottom center no-repeat;
    background-size: cover;
    height: 480px;
    display: flex;
    align-items: center;
}

.produtos-flex {
    display: flex;
    justify-content: space-between;
}

.content-produtos h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
    color: var(--black);
    margin-bottom: 8px;
}

.content-produtos {
    width: 50%;
}

.info-banner {
    background: #FFF;
    border-radius: 20px;
    padding: 20px;
    width: 40%;
}

.info-banner ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}

.info-banner ul li {
    width: 47%;
    background: #F3DFBE;
    padding: 20px;
    margin: 1%;
    line-height: 18px;
    font-size: 14px;
    border-radius: 20px;
}

#page-produtos .section-numeros {
    margin-top: 180px;
}

/* ==========================================
   SEÇÃO PRODUTOS SELECIONADOS (EMBALAGENS)
   ========================================== */
.section-produtos-selected {
    background-color: rgba(249, 238, 221, 0.95);
    padding: 40px 0px;
    margin: 100px 0;
}

.produtosSelect-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.embalagens-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.embalagens-subtitle {
    color: var(--dark-green, #055303);
    font-size: 32px;
    font-weight: 600;
    line-height: 50px;
    margin: 0 0 8px 0;
}

.embalagens-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 58px;
    color: var(--black);
    text-align: center;
    max-width: 60%;
    margin: 0;
}

/* TABS NAVIGATION */
.embalagens-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
}

.tab-btn {
    background-color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black, #000000);
    cursor: pointer;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tab-btn-active {
    background-color: var(--lemon-green, #cdd00d);
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.15);
}

/* CONTENT TABS */
.embalagens-content {
    width: 100%;
    display: flex;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content-active {
    display: flex;
    width: 100%;
}

/* EMBALAGEM CARD */
.embalagem-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.embalagem-card .image {
    width: 400px;
    display: flex;
    justify-content: center;
}

.embalagem-imagem {
    width: auto;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

.embalagem-1 {
    height: 250px;
}

.embalagem-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.embalagem-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black, #000000);
    margin: 0 0 8px 0;
    line-height: normal;
}

.embalagem-descricao {
    font-size: 16px;
    font-weight: 400;
    color: var(--black, #000000);
    line-height: 22px;
    margin: 0;
}

.embalagem-tags {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--light-beige, rgba(243, 223, 190, 0.95));
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black, #000000);
    white-space: nowrap;
}

/* ==========================================
   RESPONSIVIDADE - Tablet (768px)
   ========================================== */
@media (max-width: 768px) {


     .banner-principal-produtos {
        height: auto;
        padding: 40px 0;
    }

    .produtos-flex {
        flex-direction: column;
    }

    .content-produtos h2 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .content-produtos {
        width: 100%;
        padding: 0px 0 20px;
    }

    .produtos-flex .image {
        width: 100%;
        height: 180px;
        background-size: 140%;
    }

    .info-banner {
        width: 100%;
    }

    .info-banner ul li {
        width: 100%;
        margin: 0px 0 8px;
    }

    .embalagem-card .image {
        width: 250px;
    }



    .embalagens-title {
        font-size: 36px;
        line-height: 44px;
    }

    .embalagem-card {
        flex-direction: column;
        min-height: auto;
        padding: 20px 0;
    }

    .embalagem-imagem {
        width: 100%;
        height: 300px;
    }

    .embalagem-info {
        padding: 30px;
    }

    .embalagem-card-title {
        font-size: 28px;
    }

    .embalagem-descricao {
        font-size: 16px;
    }
}

/* ==========================================
   RESPONSIVIDADE - Mobile (480px)
   ========================================== */
@media (max-width: 480px) {
    .section-produtos-selected {
        padding: 60px 15px;
    }

    .embalagens-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .embalagens-title {
        font-size: 28px;
        line-height: 36px;
        max-width: 100%;
    }

    .embalagens-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        font-size: 12px;
        padding: 12px 8px;
    }

    .embalagem-imagem {
        height: 250px;
    }

    .embalagem-info {
        padding: 20px;
        width: 100%;
    }

    .embalagem-card-title {
        font-size: 20px;
    }

    .embalagem-descricao {
        font-size: 14px;
        line-height: 22px;
    }

    .tag {
        font-size: 13px;
        padding: 8px 12px;
    }
}
