/* ============================================================
   Qualidades Module - Styles
   ============================================================ */

.qualidades-wrapper {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    padding: 40px 25px;
    box-sizing: border-box;
    width: 100%;
}

.qualidades-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.qualidades-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.qualidades-item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
    flex-shrink: 0;
    margin-top: 4px; /* visually aligns the top of the number with the top of the title */
}

.qualidades-item-number {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
    transform-origin: center center;
    line-height: 1;
    margin-bottom: 12px;
}

.qualidades-item-line {
    width: 2px;
    height: 40px;
    background-color: #00b4d8; /* light blue cyan */
}

.qualidades-item-right {
    flex-grow: 1;
}

.qualidades-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.qualidades-item-content {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.qualidades-item-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.qualidades-item-content p:last-child {
    margin-bottom: 0;
}

/* Responsive design for tablets and desktop */
@media (min-width: 769px) {
    .qualidades-wrapper {
        padding: 60px 50px;
    }
    
    .qualidades-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}
