/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 31 de jul. de 2026, 02:40:22
    Author     : glaub
*/

/* =========================================================
   PARCERIAS E PUBLICIDADE
========================================================= */

.home-business-section {
    padding-top: 80px;
}

.home-business-card {
    position: relative;
    display: flex;
    gap: 20px;
    height: 100%;
    overflow: hidden;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    background:
        radial-gradient(
            circle at top right,
            rgba(124, 58, 237, 0.14),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(30, 41, 59, 0.88),
            rgba(15, 23, 42, 0.98)
        );
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.home-business-card:hover {
    border-color: rgba(167, 139, 250, 0.28);
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(124, 58, 237, 0.16);
}

.home-business-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.1);
    pointer-events: none;
}

.home-business-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    min-width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            var(--site-primary),
            var(--site-secondary)
        );
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 15px 32px rgba(124, 58, 237, 0.3);
}

.home-business-content {
    position: relative;
    z-index: 2;
}

.home-business-category {
    display: block;
    margin-bottom: 8px;
    color: #c4b5fd;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-business-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.home-business-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.93rem;
    line-height: 1.75;
}

.home-business-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #c4b5fd;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.home-business-link i {
    transition: transform 0.2s ease;
}

.home-business-link:hover {
    color: #f0abfc;
}

.home-business-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 575.98px) {

    .home-business-section {
        padding-top: 55px;
    }

    .home-business-card {
        flex-direction: column;
        padding: 23px;
        border-radius: 21px;
    }

    .home-business-icon {
        width: 55px;
        min-width: 55px;
        height: 55px;
        border-radius: 17px;
    }
}