.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.title-primary {
    color: var(--color-primary);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.description {
    color: var(--color-secondary);
    text-align: center;
    max-width: 520px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.text-highlight {
    background: var(--gradient-accent);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.break {
    display: block;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 360px;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #ece9e9;
    background-color: #FFF;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(36,49,45,.06);
}

.icon-card {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-card {
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.text-soft {
    color: var(--color-secondary);
    font-size: 16px;
    line-height: 1.3;
}

.text-label {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(230, 190, 199, 0.14);
    border: 1px solid rgba(230, 190, 199, 0.30);
    color: var(--color-nav-link);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto 18px auto;
}

/* Animation */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries Mobile/Tablets */

@media (max-width: 768px) {

    .container {
        padding: 0 4px;
    }

    .title-primary {
        font-size: 32px;
        line-height: 1.2;
    }

    .description,
    .text-soft {
        font-size: 16px;
        line-height: 1.6;
    }

    .card {
        transition: none;
    }

    .card:hover {
        transform: none;
        box-shadow: none;
    }
}