/* ===========================
   Brand Elements
   =========================== */

.gradient-text {
    background: var(--brand-gradient);

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

    background-clip: text;
}

.icon-gradient {
    background: var(--brand-gradient);

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

/* ===========================
   Section Titles
   =========================== */

.section-title {

    font-size: 2.5rem;

    font-weight: 700;

    text-align: center;

    color: var(--dark-color);

    margin-bottom: 15px;
}

.section-subtitle {

    color: var(--text-muted);

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;

    font-size: 1rem;

    line-height: 1.7;
}

/* ===========================
   Hero Badge
   =========================== */

.hero-badge {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 999px;

    background:
        rgba(108, 61, 214, .08);

    color: var(--primary-color);

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* ===========================
   Buttons
   =========================== */

.btn-sonhos {

    background: var(--brand-gradient);

    color: white;

    border: none;

    padding: 14px 32px;

    border-radius: 14px;

    font-weight: 600;

    font-size: 1rem;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(108,61,214,.25);

    transition: all .3s ease;
}

.btn-sonhos:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(108,61,214,.35);

    text-decoration: none;
}

.btn-sonhos:focus {

    color: white;
}

.btn-sonhos-outline {

    background: white;

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

    padding: 14px 32px;

    border-radius: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}

.btn-sonhos-outline:hover {

    background: var(--primary-color);

    color: white;

    text-decoration: none;
}

.btn-sonhos-outline:focus {

    color: white;
}

/* ===========================
   Badges
   =========================== */

.category-badge {

    display: inline-block;

    padding: 6px 12px;

    border-radius: 999px;

    background:
        rgba(108,61,214,.08);

    color: var(--primary-color);

    font-size: .8rem;

    font-weight: 600;
}

.product-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    z-index: 10;

    background: var(--brand-gradient);

    color: white;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: .75rem;

    font-weight: 600;

    box-shadow:
        0 4px 10px rgba(0,0,0,.10);
}

/* ===========================
   Social Icons
   =========================== */

.social-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--primary-color);

    font-size: 1.2rem;

    text-decoration: none;

    box-shadow:
        0 4px 10px rgba(0,0,0,.05);

    transition: .3s ease;
}

.social-icon:hover {

    background: var(--brand-gradient);

    color: white;

    transform: translateY(-3px);

    text-decoration: none;
}

/* ===========================
   Empty States
   =========================== */

.empty-state {

    text-align: center;

    padding: 80px 20px;
}

.empty-state i {

    font-size: 4rem;

    color: var(--primary-color);

    margin-bottom: 20px;
}

.empty-state h4 {

    color: var(--dark-color);

    margin-bottom: 10px;
}

.empty-state p {

    color: var(--text-muted);

    max-width: 500px;

    margin: 0 auto;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {

    .section-title {

        font-size: 2rem;
    }

    .section-subtitle {

        font-size: .95rem;
    }

    .btn-sonhos,
    .btn-sonhos-outline {

        width: 100%;
    }
}