.module-card {
    padding: 24px 0;
    margin: 0 2rem;
    background: white;
}

.warranty {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-container.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.warranty__title {
    color: #1C95DA;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 15px;
    text-align: center;
}

.centered-text {
    max-width: 800px;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    padding: 0 1rem;
}

.warranty__group {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.warranty__group-title {
    color: var(--greyscale_140);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 15px;
    text-align: left;
}

.warranty__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
}

.warranty__check {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.item-checked {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-checked__icon {
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-checked__text {
    flex: 1;
}

/* Para alinear perfectamente con el texto más largo */
@media (min-width: 768px) {
    .warranty__list {
        width: fit-content;
        margin: 0 auto;
    }
    
    .warranty__group-title {
        text-align: center;
    }
}
/* Para móviles (hasta 767px) */
@media (max-width: 767px) {
    .centered-text,
    .warranty__group {
        width: 90%;
    }
    
    .warranty__list {
        margin: 0; /* Alineamos a la izquierda en móviles */
        width: 100%;
    }
    
    .warranty__group-title {
        text-align: left; /* Título a la izquierda en móviles */
    }
}

/* Para tablets (768px en adelante) */
@media (min-width: 768px) {
    .warranty__list {
        align-items: center; /* Centramos los items en tablets y mayores */
    }
}

@media (max-width: 350px) {
    .centered-text,
    .warranty__group {
        width: 85%;
    }
}