.container-potof-produtos-about {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    padding: 64px 16px;
    max-width: 1216px;
    margin: 0 auto;
}

.container-potof-produtos-about .pa-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.container-potof-produtos-about .pa-badge {
    background-color: #fff9f5;
    padding: 6px 16px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container-potof-produtos-about .pa-badge span {
    color: #ed6e04;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    line-height: 1.5;
    font-family: Quicksand, sans-serif;
}

.container-potof-produtos-about .pa-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.container-potof-produtos-about .pa-desc {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
}

.container-potof-produtos-about .pa-desc p {
    margin-bottom: 16px;
}

.container-potof-produtos-about .pa-desc p:last-child {
    margin-bottom: 0;
}

.container-potof-produtos-about .pa-btn {
    background-color: #1f1f42;
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1.5;
    padding: 12px 40px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    font-family: Quicksand, sans-serif;
}

.container-potof-produtos-about .pa-btn:hover {
    background-color: #2a2a5a;
}

.container-potof-produtos-about .pa-right-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.container-potof-produtos-about .pa-cards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.container-potof-produtos-about .pa-card {
    background-color: #ffffff;
    border: 1px solid #f9fafb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0px 8px 15px rgba(31, 31, 66, 0.04);
    width: 100%;
}

.container-potof-produtos-about .pa-card-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-potof-produtos-about .pa-card-icon-wrapper i,
.container-potof-produtos-about .pa-card-icon-wrapper svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.container-potof-produtos-about .pa-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.container-potof-produtos-about .pa-card-title {
    color: #1f1f42;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.container-potof-produtos-about .pa-card-desc {
    color: #6a7282;
    font-size: 16px;
    line-height: 1.4;
    display: block;
}

@media (min-width: 1024px) {
    .container-potof-produtos-about {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 80px 16px;
        gap: 64px;
    }

    .container-potof-produtos-about .pa-left-col {
        width: 50%;
        max-width: 592px;
        gap: 32px;
    }

    .container-potof-produtos-about .pa-badge span {
        color: #1f1f42;
    }

    .container-potof-produtos-about .pa-title {
        font-size: 48px;
    }

    .container-potof-produtos-about .pa-desc {
        font-size: 16px;
    }

    .container-potof-produtos-about .pa-right-col {
        width: 50%;
        max-width: 560px;
    }

    .container-potof-produtos-about .pa-card-title {
        font-size: 20px;
    }
}