


.product__code {
    font-size: 16px;
    font-weight: 700;
    color: #55A0C5;
    margin-bottom: 5px;
}

.product__title {
    color: #012F87;
    font-size: 32px;
    font-weight: 700;
}

.product__text {
    font-size: 16px;
    font-weight: 700;
    color: #282828;
    margin-top: 10px;
}

.product__btn {
    color: white;
    border: 1px solid #1A1C89;
    background-color: #1A1C89;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    width: 191px;

}

.product__btn:hover {
    background-color: #1A1C89;
    color: white;
}

.product__contact-container {
    position: absolute;
    width: 100%;
    bottom: 100px;
}
.product__ficha{
    color:#1A1C89;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.product__btn--consult {
    background-color: #1A1C89;
    color: white;
    border: 1px solid #1A1C89;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}
.product__container-buttons {
    position: absolute;
    bottom: 0px;
}
.product__table {

    overflow: hidden;
}

.product-variants__container {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.product-variants__header {
    display: flex;
    background-color: #1A1C89;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.product-variants__header-cell {
    flex: 1;
    padding: 10px;
    text-align: left;
}

.product-variants__header-cell:last-child {
    border-right: none;
}

.product-variants__row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.product-variants__row:nth-child(even) {
    background-color: #F5F5F5;
}

.product-variants__row:last-child {
    border-bottom: none;
}

.product-variants__cell {
    flex: 1;
    padding: 15px 10px;
    text-align: left;
    color: #000;
    font-size: 14px;
}

.product-variants__cell:first-child {
    font-weight: 400;
}

.product-variants__cell:last-child {
    border-right: none;
}
.product__text-title {
    font-size: 20px;
    font-weight: 400;
    color: #848484;
    margin-top: 20px;
    text-transform: uppercase;
}
.product__description {
    font-size: 16px;
    font-weight: 400;
    color: #171717;
    margin-top: 10px;
}
/* Product Card Styles */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #DFDFDF;
    width: 288px;
    height: 325px;
    margin-bottom: 0.5rem;
}

.product-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 94px;
    height: 27px;
    background-color: #1A1C89;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 600;
    z-index: 10;
}

.product-card__link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__image {
    width: 100%;
    height: 70%;
    object-fit: contain;
    border-radius: 3px 3px 0 0;
}

.product-card__content {
    padding: 16px;
    background: white;
}

.product-card__code {
    font-family: 'Carlito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #282828;
    margin-bottom: 8px;
}

.product-card__separator {
    border: none;
    border-top: 1px solid #DFDFDF;
    margin: 8px 0 12px 0;
}

.product-card__title {
    font-family: 'Carlito', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #282828;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-card__price {
    font-family: 'Carlito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1A1C89;
}
/* Product Thumbnail Styles */
.product-thumbnail.active {
    border: 2px solid #199EB8 !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 288px;
        height: 350px;
    }

    .product-card__image {
        height: 65%;
    }

    .product-card__content {
        padding: 12px;
    }

    .product-card__title {
        font-size: 16px;
    }

    .product-card__price {
        font-size: 16px;
    }
}
