/* 
 * Produtos Compatíveis Component 
 * Arquivo CSS básico sem estilizações específicas por enquanto
 */

.produtos-compativeis {
    position: relative;
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--primarias-principal-00) center center / cover no-repeat;
}

.produtos-compativeis__title {
    /* font-weight: 800;
    font-size: 3.5rem;
    line-height: 1; */
    text-align: center;
    /* letter-spacing: -0.02em; */
    color: var(--primarias-principal-150);
    margin-top: 0;
    margin-bottom: 80px;
}

.produtos-compativeis__products-pre-wrapper {
    position: relative;
    overflow: visible;
}

.produtos-compativeis__product-card {
    flex-shrink: 0;
    background-color: var(--primarias-principal-150);
    color: var(--branco);
    border-radius: var(--radius-m);
    height: auto;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.3s ease;
}
.produtos-compativeis__product-card:hover {
    transform: translateY(-10px);
}

.produtos-compativeis__product-link {
    display: block;
    text-decoration: none;
    padding: 32px 32px 97px;
}

.produtos-compativeis__product-icon {
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
}
.produtos-compativeis__product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produtos-compativeis__product-line1,
.produtos-compativeis__product-line2 {
    font-family: var(--fontefamiliaglobal);
    margin: 0;
}
.produtos-compativeis__product-line1 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.77;
    color: var(--primarias-principal-10);
}

.produtos-compativeis__product-line2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--branco);
    margin-bottom: 16px;
}
.produtos-compativeis__product-line3,
.produtos-compativeis__product-line3 p {
    color: var(--branco);
    font-size: 0.9375rem;
    line-height: 1.4;
}
.produtos-compativeis__product-line3 p:first-child {
    margin-top: 0;
}
.produtos-compativeis__product-line3 p:last-child {
    margin-bottom: 0;
}
.produtos-compativeis__product-link-text {
    position: absolute;
    bottom: 32px;
    left: 32px;
    width: calc(100% - 64px);
    cursor: pointer;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    color: var(--branco) !important;
    font-weight: 600;
    border-width: 1px;
}

.produtos-compativeis__pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 80px;
}
.produtos-compativeis__pagination-button {
    padding: 0;
    padding-top: 1px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primarias-principal-150);
    border-color: var(--primarias-principal-150);
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 1px;
}
.produtos-compativeis__pagination-button svg {
    margin-left: 0;
}
.produtos-compativeis__pagination-button.swiper-button-disabled {
    background-color: #E0E0E0;
    border-color: var(--primarias-principal-175);
    pointer-events: none;
}
.produtos-compativeis__pagination-button.swiper-button-disabled path {
    fill: var(--primarias-principal-175);
}


.produtos-compativeis__pagination-count {
    margin: 0 15px;
    color: var(--primarias-principal-150);
    font-size: 0.875rem;
    line-height: 1;
}

.produtos-compativeis__1-page .produtos-compativeis__pagination {
    display: none;
}

/* Responsivo */
@media (max-width: 767px) {
    .produtos-compativeis {
        padding: 40px 0 25px;
    }
    .produtos-compativeis__title {
        margin-bottom: 30px;
    }
    .produtos-compativeis__pagination {
        margin-top: 25px;
    }
} 
@media (max-width: 480px) {
    .produtos-compativeis__product-link {
        padding: 16px 16px 65px;
    }
    .produtos-compativeis__product-link-text {
        width: calc(100% - 32px);
        height: 32px;
        bottom: 16px;
        left: 16px;
        font-size: var(--font-m);
    }
    .produtos-compativeis__product-line1 {
        font-size: 0.875rem;
    }
    
    .produtos-compativeis__product-line2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .produtos-compativeis__product-line3,
    .produtos-compativeis__product-line3 p {
        font-size: 0.75rem;
    }
}

