/* ===========================
   Soluções page – imports shared modules + page-specific styles
   =========================== */
@import url('base.css');
@import url('components/topbar.css');
@import url('components/footer.css');
@import url('components/cta-community.css');
@import url('sections/linkedin.css');
@import url('sections/why.css');
@import url('responsive.css');

/* Shared label style */
.solucoes-label {
    color: #0067CC;
    font-family: var(--Font-Family-Label);
    font-size: 0.875rem;
    line-height: 1.3125rem;
    letter-spacing: 0.09375rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Tag style */
.solucoes-tag {
    display: inline-block;
    background: rgba(0, 103, 204, 0.08);
    color: #0067CC;
    font-family: var(--Font-Family-Label);
    font-size: 0.8125rem;
    line-height: 1.25rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 6.25rem;
}

/* ===========================
   Hero
   =========================== */
.solucoes-hero {
    background: linear-gradient(180deg, rgba(11, 22, 65, 0) 0%, rgba(11, 22, 65, 1) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../img/hero-solucoes.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 45rem;
}

.solucoes-hero__inner {
    width: 100%;
    max-width: 103.75rem;
}

.solucoes-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 55rem;
}

.solucoes-hero__title {
    color: #FFFFFF;
    font-family: var(--Font-Family-Heading-Heavy);
    font-size: 4.5rem;
    line-height: 5.375rem;
    letter-spacing: -0.09375rem;
    font-weight: 400;
}

.solucoes-hero__subtitle {
    color: #FFFFFF;
    font-family: var(--Font-Family-Label);
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: 500;
}

/* ===========================
   Intro
   =========================== */
.solucoes-intro {
    background: #FFFFFF;
    padding: 5rem 80px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solucoes-intro__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7rem;
}

.solucoes-intro__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 42.5rem;
}

.solucoes-intro__title {
    color: #0B1641;
    font-family: var(--Font-Family-Heading-Heavy);
    font-size: 3rem;
    line-height: 3.625rem;
    letter-spacing: -0.0625rem;
    font-weight: 400;
}

.solucoes-intro__title--blue {
    color: #0067CC;
}

.solucoes-intro__description {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-intro__image {
    flex-shrink: 0;
}

/* ===========================
   Grid de Soluções
   =========================== */
.solucoes-grid {
    background: #FFFFFF;
    padding: 3rem 80px;
    display: flex;
    justify-content: center;
}

.solucoes-grid__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.solucoes-grid__inner > .btn {
    align-self: center;
}

.solucoes-grid__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-self: stretch;
}

.solucoes-grid__card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    box-shadow: 1px 2px 12px 2px rgba(224, 224, 225, 1);
}

.solucoes-grid__card-icon {
    background: #0067CC;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.solucoes-grid__card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solucoes-grid__card-title {
    color: #0B1641;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-grid__card-subtitle {
    color: #0B1641;
    font-family: var(--Font-Family-Label);
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 500;
}

.solucoes-grid__card-detail {
    color: #666666;
    font-family: var(--Font-Family-Label);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    padding-top: 0.5rem;
}

.solucoes-grid__card-detail p {
    margin: 0 0 0.25rem;
}

.solucoes-grid__card-detail ul {
    padding-left: 1.25rem;
    margin: 0;
}

.solucoes-grid__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch;
}

.solucoes-grid__bottom-title {
    color: #0B1641;
    font-family: 'NexaBold', 'Nexa Bold', sans-serif;
    font-size: 2.875rem;
    line-height: 1.08;
    letter-spacing: -0.0625rem;
    font-weight: 400;
}

.solucoes-grid__bottom-subtitle {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-grid__card-detail ul li {
    margin-bottom: 0.125rem;
}

/* ===========================
   Comunidades Online de Insights
   =========================== */
.solucoes-communities {
    background: #FFFFFF;
    padding: 10rem 80px 2.5rem;
    display: flex;
    justify-content: center;
}

.solucoes-communities__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.solucoes-communities__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.75rem;
}

.solucoes-communities__title {
    color: #0B1641;
    font-family: 'NexaXBold', 'Nexa XBold', sans-serif;
    font-size: 2.875rem;
    line-height: 3.105rem;
    letter-spacing: -0.0625rem;
    font-weight: 500;
}

.solucoes-communities__description {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-communities__carousel {
    overflow: hidden;
    padding: 2.75rem;
}

.solucoes-communities__track {
    display: flex;
    flex-direction: row;
    gap: 2.125rem;
    transition: transform 0.4s ease;
}

.solucoes-communities__card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    flex-shrink: 0;
    width: 20.625rem;
    min-height: 14.75rem;
    box-shadow: 1px 2px 12px 2px rgba(224, 224, 225, 1);
}

.solucoes-communities__card-icon {
    background: #DCECFA;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
}

.solucoes-communities__card-title {
    color: #0B1641;
    font-family: 'NexaBold', 'Nexa Bold', sans-serif;
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: -0.03125rem;
    font-weight: 400;
}

.solucoes-communities__card-text {
    color: #4B4C52;
    font-family: var(--Font-Family-Label);
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
}

.solucoes-communities__nav {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    padding-top: 1.875rem;
}

.solucoes-communities__nav-btn {
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #E0E0E1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.solucoes-communities__nav-line {
    background: #E0E0E1;
    flex: 1;
    height: 1px;
}

.solucoes-communities__nav-counter {
    color: #7A8194;
    font-family: var(--Font-Family-Label);
    font-size: 0.875rem;
    line-height: 1.3125rem;
    font-weight: 500;
    flex-shrink: 0;
}

/* Scope CTA community to solucoes page layout */
.solucoes-results + .cta-community {
    padding: 0 80px;
    display: flex;
    justify-content: center;
}

.solucoes-results + .cta-community .cta-community__card {
    max-width: 80rem;
    width: 100%;
}

/* ===========================
   Resultados
   =========================== */
.solucoes-results {
    background: #FFFFFF;
    padding: 2.5rem 80px 7.5rem;
    display: flex;
    justify-content: center;
}

.solucoes-results__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.solucoes-results__title {
    color: #0B1641;
    font-family: 'NexaXBold', 'Nexa XBold', sans-serif;
    font-size: 2.875rem;
    line-height: 3.105rem;
    letter-spacing: -0.0625rem;
    font-weight: 400;
    text-align: center;
}

.solucoes-results__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 73rem;
    width: 100%;
}

.solucoes-results__stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.solucoes-results__stat-number {
    color: #0067CC;
    font-family: var(--Font-Family-Heading-Heavy);
    font-size: 4.5rem;
    line-height: 5.375rem;
    letter-spacing: -0.09375rem;
    font-weight: 400;
}

.solucoes-results__stat-label {
    color: #0B1641;
    font-family: var(--Font-Family-Heading-Heavy);
    font-size: 2rem;
    line-height: 2.375rem;
    letter-spacing: -0.03125rem;
    font-weight: 400;
}

/* ===========================
   Painel Latam
   =========================== */
.solucoes-panel {
    padding: 7.5rem 80px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solucoes-panel__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.solucoes-panel__title {
    color: #0B1641;
    font-family: var(--Font-Family-Heading-Heavy);
    font-size: 3rem;
    line-height: 3.625rem;
    letter-spacing: -0.0625rem;
    font-weight: 400;
}

.solucoes-panel__description {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

/* ===========================
   App Comunidade
   =========================== */
.solucoes-app {
    padding: 6rem 2.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solucoes-app__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7.5rem;
    position: relative;
}

.solucoes-app__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 40.4375rem;
}

.solucoes-app__title {
    color: #0B1641;
    font-family: 'NexaXBold', 'Nexa XBold', sans-serif;
    font-size: 2.875rem;
    line-height: 3.105rem;
    letter-spacing: -0.0625rem;
    font-weight: 400;
}

.solucoes-app__description {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-app__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.solucoes-app__card {
    background: #FFFFFF;
    border-radius: 0.875rem;
    border: 1px solid var(--border-neutral-primary, #F5F5F5);
    padding: 1.25rem 1.375rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.solucoes-app__card-header {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}

.solucoes-app__card-check {
    background: #0067CC;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.solucoes-app__card-label {
    color: #0B1641;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-app__card-text {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
}

.solucoes-app__image {
    position: absolute;
    right: 2rem;
    top: -2rem;
    width: 22.375rem;
    height: 20.5rem;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 1px 2px 24px 2px rgba(205, 214, 228, 1);
}

/* ===========================
   Diferenciais
   =========================== */
.solucoes-diff {
    background: #FFFFFF;
    padding: 6rem 2.5rem;
    display: flex;
    justify-content: center;
}

.solucoes-diff__inner {
    max-width: 80rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.solucoes-diff__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solucoes-diff__title {
    color: #0B1641;
    font-family: 'NexaXBold', 'Nexa XBold', sans-serif;
    font-size: 2.875rem;
    line-height: 3.105rem;
    letter-spacing: -0.0625rem;
    font-weight: 400;
}

.solucoes-diff__description {
    color: #3D3D3D;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

.solucoes-diff__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.solucoes-diff__card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    width: calc((100% - 2rem) / 3);
    min-height: 14.375rem;
    box-shadow: 1px 2px 12px 2px rgba(224, 224, 225, 1);
}

.solucoes-diff__card-icon {
    background: #0067CC;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.solucoes-diff__card-title {
    color: #0B1641;
    font-family: 'NexaBold', 'Nexa Bold', sans-serif;
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: -0.03125rem;
    font-weight: 700;
}

.solucoes-diff__card-text {
    color: #4B4C52;
    font-family: var(--Font-Family-Label);
    font-size: 0.9375rem;
    line-height: 1.40625rem;
    font-weight: 400;
}

.solucoes-diff__btn {
    align-self: center;
}

/* ===========================
   CTA Final
   =========================== */
.solucoes-cta {
    background: #FFFFFF;
    padding: 6rem 2.5rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 37.8125rem;
}

.solucoes-cta__inner {
    max-width: 80rem;
    width: 100%;
    position: relative;
}

.solucoes-cta__wave {
    position: absolute;
    right: -2rem;
    top: 2.375rem;
    width: 48rem;
    height: auto;
}

.solucoes-cta__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 40.4375rem;
}

.solucoes-cta__title {
    color: #0B1641;
    font-family: 'NexaXBold', 'Nexa XBold', sans-serif;
    font-size: 2.875rem;
    line-height: 3.105rem;
    letter-spacing: -0.0625rem;
    font-weight: 400;
}

.solucoes-cta__subtitle {
    color: #4B4C52;
    font-family: var(--Font-Family-Label);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
}

/* Footer rounded variant */
.footer--rounded {
    border-radius: 1.5rem;
    margin: 1rem;
}

/* ===========================
   Conteúdos relacionados (reuse sobre-content styles)
   =========================== */
/* v2 */
.sobre-content {
    display: none;
}

.sobre-content__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 91.5rem;
}

.sobre-content__title {
    color: #0B1641;
    font-family: var(--Font-Family-Heading-Heavy);
    font-size: 3rem;
    line-height: 120%;
    letter-spacing: -0.02em;
    font-weight: 400;
    padding: 0 5rem;
}

.sobre-content__title-highlight {
    color: #0067CC;
}

.sobre-content .linkedin__card-text {
    color: #141415;
}

.sobre-content .linkedin__card-meta {
    color: #8D8E91;
}

.sobre-content .linkedin__feed::before {
    background: linear-gradient(90deg, #FFFFFF 0%, transparent 100%);
}

.sobre-content .linkedin__feed::after {
    background: linear-gradient(270deg, #FFFFFF 0%, transparent 100%);
}

/* ===========================
   Soluções – Page-specific responsive overrides
   =========================== */
@media (max-width: 1200px) {
    .solucoes-intro__inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .solucoes-diff__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solucoes-app__image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 22.375rem;
        height: auto;
    }

    .solucoes-cta {
        height: auto;
        min-height: 28rem;
    }
}

@media (max-width: 767px) {
    /* -- Hero -- */
    .solucoes-hero {
        justify-content: flex-end;
        height: auto;
        min-height: 24rem;
        padding: 2rem 16px;
    }

    .solucoes-hero__title {
        font-size: 1.75rem;
        line-height: 2.125rem;
    }

    .solucoes-hero__copy {
        max-width: 100%;
    }

    /* -- Intro -- */
    .solucoes-intro {
        padding: 3rem 16px;
    }

    .solucoes-intro__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .solucoes-intro__text {
        max-width: 100%;
    }

    .solucoes-intro__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-intro__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .solucoes-intro__image {
        width: 100%;
        height: auto;
    }

    /* Remove forced <br> on mobile */
    .solucoes-intro__description br,
    .solucoes-communities__description br {
        display: none;
    }

    /* -- Grid de Soluções -- */
    .solucoes-grid {
        padding: 3rem 16px;
    }

    .solucoes-grid__cards {
        grid-template-columns: 1fr;
    }

    .solucoes-grid__bottom-title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-grid__bottom-subtitle {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    /* -- Comunidades -- */
    .solucoes-communities {
        padding: 3rem 16px;
    }

    .solucoes-communities__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-communities__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .solucoes-communities__carousel {
        padding: 1.5rem 0;
    }

    .solucoes-communities__card {
        width: 16rem;
        min-height: auto;
    }

    /* -- Resultados -- */
    .solucoes-results {
        padding: 2.5rem 16px 3rem;
    }

    .solucoes-results__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-results__stats {
        grid-template-columns: 1fr;
    }

    .solucoes-results__stat-number {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .solucoes-results__stat-label {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    /* -- CTA Community scoped -- */
    .solucoes-results + .cta-community {
        padding: 0 16px;
    }

    /* -- Painel Latam -- */
    .solucoes-panel {
        padding: 3rem 16px;
    }

    .solucoes-panel__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-panel__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    /* -- App Comunidade -- */
    .solucoes-app {
        padding: 3rem 16px;
    }

    .solucoes-app__inner {
        gap: 2rem;
    }

    .solucoes-app__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-app__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .solucoes-app__grid {
        grid-template-columns: 1fr;
    }

    .solucoes-app__image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* -- Diferenciais -- */
    .solucoes-diff {
        padding: 3rem 16px;
    }

    .solucoes-diff__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-diff__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .solucoes-diff__grid {
        flex-direction: column;
    }

    .solucoes-diff__card {
        width: 100%;
        min-height: auto;
    }

    /* -- CTA Final -- */
    .solucoes-cta {
        padding: 2.5rem 16px 0;
        height: auto;
        min-height: auto;
    }

    .solucoes-cta__title {
        font-size: 1.625rem;
        line-height: 2rem;
    }

    .solucoes-cta__subtitle {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .solucoes-cta__wave {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 2rem;
    }

    /* -- Footer rounded -- */
    .footer--rounded {
        border-radius: 1rem;
        margin: 0.5rem;
    }
}
