/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    width: 100%;
    min-height: 680px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 77% 38%,
            rgba(22, 184, 166, 0.16),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #071a2b 0%,
            #0a2438 48%,
            #0d3047 100%
        );
}


/* ========================================
   SLIDER
======================================== */

.hero__slider {
    position: relative;

    width: 100%;
    min-height: 680px;
}


.hero__slide {
    position: absolute;
    inset: 0;

    width: 100%;
    min-height: 680px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(45px);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 0.8s ease;
}


.hero__slide--active {
    position: relative;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}


/* ========================================
   CONTAINER DO HERO
======================================== */

.hero__container {
    width: 100%;
    max-width: var(--container-width);
    min-height: 680px;

    margin: 0 auto;
    padding: 64px 32px 92px;

    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;

    gap: 34px;
}


/* ========================================
   CONTEÚDO
======================================== */

.hero__content {
    position: relative;

    max-width: 590px;

    z-index: 5;
}


/* ========================================
   EYEBROW
======================================== */

.hero__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;
    padding: 8px 14px;

    border: 1px solid rgba(22, 184, 166, 0.40);
    border-radius: 999px;

    background-color: rgba(22, 184, 166, 0.08);

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
}


.hero__eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    background-color: var(--color-secondary);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(22, 184, 166, 0.12);
}


/* ========================================
   TÍTULO
======================================== */

.hero__title {
    margin-bottom: 24px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -2px;
}


.hero__title span {
    display: block;

    color: var(--color-secondary);
}


/* ========================================
   DESCRIÇÃO
======================================== */

.hero__description {
    max-width: 560px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.74);

    font-family: var(--font-secondary);
    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   BOTÕES
======================================== */

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 16px;
}


.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 15px 25px;

    background-color: var(--color-secondary);
    color: var(--color-white);

    border-radius: 999px;

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.hero__cta:hover {
    background-color: var(--color-secondary-dark);

    transform: translateY(-2px);
}


.hero__cta span {
    font-size: 19px;
    line-height: 1;

    transition: var(--transition);
}


.hero__cta:hover span {
    transform: translateX(4px);
}


.hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 23px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}


.hero__secondary:hover {
    border-color: var(--color-secondary);

    color: var(--color-secondary);
}


/* ========================================
   IMAGEM SOBREPOSTA AO FUNDO
======================================== */

.hero__visual {
    position: relative;

    width: 110%;
    height: 540px;

    margin-right: -70px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
}


/* ILUMINAÇÃO ATRÁS DA IMAGEM */

.hero__visual::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 52%;

    width: 650px;
    height: 480px;

    background:
        radial-gradient(
            circle,
            rgba(22, 184, 166, 0.20) 0%,
            rgba(22, 184, 166, 0.08) 40%,
            transparent 72%
        );

    filter: blur(42px);

    transform: translate(-50%, -50%);

    z-index: -1;
}


/* GRADIENTE SOBRE A LATERAL DA IMAGEM */

.hero__visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #0a2438 0%,
            rgba(10, 36, 56, 0.92) 5%,
            rgba(10, 36, 56, 0.48) 13%,
            transparent 28%,
            transparent 90%,
            rgba(13, 48, 71, 0.18) 100%
        );

    pointer-events: none;

    z-index: 2;
}


/* IMAGEM */

.hero__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 28px;

    -webkit-mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 14%,
            black 95%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 14%,
            black 95%,
            transparent 100%
        );

    filter:
        saturate(0.96)
        contrast(1.03);

    transform: scale(1.05);
}


/* ========================================
   ANIMAÇÃO DA IMAGEM
======================================== */

.hero__slide--active .hero__visual img {
    animation: heroImageReveal 1.2s ease forwards;
}


@keyframes heroImageReveal {

    from {
        opacity: 0;

        transform:
            scale(1.10)
            translateX(40px);
    }

    to {
        opacity: 1;

        transform:
            scale(1.05)
            translateX(0);
    }

}


/* ========================================
   INDICADORES
======================================== */

.hero__indicators {
    position: absolute;

    bottom: 32px;
    left: 50%;

    display: flex;
    align-items: center;

    gap: 8px;

    transform: translateX(-50%);

    z-index: 10;
}


.hero__indicator {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 999px;

    background-color: rgba(255, 255, 255, 0.35);

    cursor: pointer;

    transition: var(--transition);
}


.hero__indicator--active {
    width: 30px;

    background-color: var(--color-secondary);
}

/* ========================================
   CARDS FLUTUANTES DO SEGUNDO SLIDE
======================================== */

.hero__visual--features {
    overflow: visible;
}


/* CARD */

.hero__floating-card {
    position: absolute;

    min-width: 148px;
    padding: 11px 13px;

    display: flex;
    align-items: center;
    gap: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 27, 44, 0.94),
            rgba(16, 42, 67, 0.82)
        );

    border: 1px solid rgba(22, 184, 166, 0.30);
    border-radius: 14px;

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--color-white);

    z-index: 5;

    animation:
        heroFloatingCard 4s ease-in-out infinite;
}


/* CONTEÚDO */

.hero__floating-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.hero__floating-content strong {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
}


.hero__floating-content small {
    color: rgba(255, 255, 255, 0.62);

    font-family: var(--font-secondary);
    font-size: 10px;
    line-height: 1.3;
}


/* ÍCONE */

.hero__floating-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(22, 184, 166, 0.30);
    border-radius: 10px;

    background-color: rgba(22, 184, 166, 0.12);
    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;

    box-shadow:
        0 0 22px rgba(22, 184, 166, 0.14);
}


/* POSIÇÕES À ESQUERDA */

.hero__floating-card--top-left {
    top: 50px;
    left: -45px;

    animation-delay: 0s;
}


.hero__floating-card--middle-left {
    top: 220px;
    left: -65px;

    animation-delay: 0.8s;
}


.hero__floating-card--bottom-left {
    bottom: 50px;
    left: -48px;

    animation-delay: 1.4s;
}


/* ========================================
   CARDS DO LADO DIREITO
======================================== */

.hero__floating-card--top-right {
    top: 55px;
    right: 20px;

    animation-delay: 0.4s;
}

.hero__floating-card--middle-right {
    top: 225px;
    right: 5px;

    animation-delay: 1.1s;
}

.hero__floating-card--bottom-right {
    right: 20px;
    bottom: 55px;

    animation-delay: 1.8s;
}


/* ANIMAÇÃO */

@keyframes heroFloatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}

/* ========================================
   SOLUÇÕES FINANCEIRAS
======================================== */

.solutions {
    position: relative;

    width: 100%;
    padding: 125px 0 135px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(22, 184, 166, 0.09),
            transparent 25%
        ),
        #071a2a;
}


/* LINHA SUPERIOR */

.solutions::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background-color: rgba(255, 255, 255, 0.08);
}


/* CÍRCULO DECORATIVO */

.solutions::after {
    content: "";

    position: absolute;

    top: -170px;
    right: -110px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(22, 184, 166, 0.10);
    border-radius: 50%;

    pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.solutions__container {
    position: relative;

    width: 100%;
    max-width: 1160px;

    margin: 0 auto;
    padding: 0 32px;

    z-index: 2;
}


/* ========================================
   CABEÇALHO
======================================== */

.solutions__header {

    max-width: 900px;

    margin: 0 0 70px;

    text-align: left;

}


.solutions__eyebrow {

    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

}


.solutions__eyebrow::before {

    content: "";

    width: 32px;
    height: 2px;

    background: var(--color-secondary);

}


.solutions__eyebrow::after{

    display:none;

}


.solutions__title{

    max-width:700px;

    margin-bottom:22px;

    color:#fff;

    font-family:var(--font-primary);

    font-size:clamp(46px,5vw,72px);

    font-weight:600;

    line-height:1.02;

    letter-spacing:-3px;

}


.solutions__title span{

    display:block;

    color:var(--color-secondary);

}


.solutions__description{

    max-width:620px;

    margin:0;

    color:rgba(255,255,255,.63);

    font-size:17px;

    line-height:1.8;

}


/* ========================================
   GRID
======================================== */

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* ========================================
   CARD
======================================== */

.solutions__card {
    position: relative;

    min-height: 315px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;

    background-color: #ffffff;

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}


.solutions__card:hover {
    transform: translateY(-6px);

    border-color: rgba(22, 184, 166, 0.45);

    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.20);
}


/* ========================================
   TOPO DO CARD
======================================== */

.solutions__card-top {
    position: relative;

    height: 230px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    background: #dbe4e8;
}

.solutions__card-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.solutions__card-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .45s ease;

}

.solutions__card-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(8,27,44,.82),
        rgba(8,27,44,.15) 55%,
        transparent
    );

}

.solutions__card-top h3{

    position:relative;

    z-index:2;

    color:#fff;

    margin:24px;

    font-size:24px;
    font-weight:600;

}

.solutions__card:hover
.solutions__card-image img{

    transform:scale(1.06);

}

/* VARIAÇÕES DISCRETAS */

.solutions__card:nth-child(2)
.solutions__card-top {
    background:
        linear-gradient(
            145deg,
            #d2dde2 0%,
            #c3cfd5 100%
        );
}


.solutions__card:nth-child(3)
.solutions__card-top {
    background:
        linear-gradient(
            145deg,
            #d8e0e2 0%,
            #c9d2d5 100%
        );
}


.solutions__card:nth-child(4)
.solutions__card-top {
    background:
        linear-gradient(
            145deg,
            #dedfda 0%,
            #d0d1cc 100%
        );
}


/* ========================================
   ÍCONE
======================================== */

.solutions__icon {
    width: 42px;
    height: 42px;

    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(8, 27, 44, 0.13);
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.35);
}


.solutions__icon img {
    width: 22px;
    height: 22px;

    object-fit: contain;
}


/* ========================================
   NÚMERO
======================================== */

.solutions__number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: rgba(8, 27, 44, 0.18);

    font-family: var(--font-primary);
    font-size: 30px;
    font-weight: 600;

    line-height: 1;
}


/* ========================================
   TÍTULO DO CARD
======================================== */

.solutions__card-top h3 {
    max-width: 210px;

    margin-top: auto;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;

    line-height: 1.25;
    letter-spacing: -0.4px;
}


/* ========================================
   RODAPÉ DO CARD
======================================== */

.solutions__card-bottom {
    min-height: 140px;

    padding: 22px 24px 20px;

    display: flex;
    flex-direction: column;

    background-color: #ffffff;
}


.solutions__card-bottom p {
    margin-bottom: 24px;

    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 12px;

    line-height: 1.65;
}


/* ========================================
   LINK
======================================== */

.solutions__link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    width: fit-content;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.2px;
    text-transform: uppercase;
}


.solutions__link span {
    color: var(--color-secondary-dark);

    font-size: 16px;

    transition: transform 0.25s ease;
}


.solutions__link:hover span {
    transform: translateX(5px);
}


/* ========================================
   CARD DE FLUXO DE CAIXA
======================================== */

.solutions__card--wide {
    grid-column: span 2;
}


.solutions__card--wide
.solutions__card-top h3 {
    max-width: 330px;
}


/* ========================================
   AÇÕES INFERIORES
======================================== */

.solutions__footer {
    margin-top: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.solutions__footer-text {
    max-width: 590px;

    color: rgba(255, 255, 255, 0.48);

    font-family: var(--font-secondary);
    font-size: 12px;

    line-height: 1.65;
}


.solutions__cta {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.3px;
    text-transform: uppercase;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease;
}


.solutions__cta:hover {
    border-color: var(--color-secondary);

    background-color: rgba(22, 184, 166, 0.07);
    color: var(--color-secondary);
}


/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 1050px) {

    .solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .solutions__card--wide {
        grid-column: span 1;
    }

}


@media (max-width: 650px) {

    .solutions {
        padding: 90px 0 100px;
    }


    .solutions__container {
        padding: 0 20px;
    }


    .solutions__header {
        margin-bottom: 45px;

        text-align: left;
    }


    .solutions__eyebrow {
        justify-content: flex-start;
    }


    .solutions__eyebrow::after {
        display: none;
    }


    .solutions__title {
        font-size: 43px;
    }


    .solutions__description {
        font-size: 13px;
    }


    .solutions__grid {
        grid-template-columns: 1fr;
    }


    .solutions__footer {
        align-items: flex-start;
        flex-direction: column;
    }


    .solutions__cta {
        width: 100%;
    }

}

/* ========================================
   BENEFÍCIOS DA PLATAFORMA
======================================== */

.benefits {
    position: relative;

    width: 100%;

    padding: 60px 0 210px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 60%,
            rgba(22, 184, 166, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #081b2c 0%,
            #071a2b 100%
        );
}


/* ========================================
   DETALHES DECORATIVOS DE FUNDO
======================================== */

.benefits::before {
    content: "";

    position: absolute;

    top: 80px;
    left: -180px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(22, 184, 166, 0.10);
    border-radius: 50%;

    pointer-events: none;
}


.benefits::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -180px;

    width: 480px;
    height: 480px;

    background:
        radial-gradient(
            circle,
            rgba(22, 184, 166, 0.08) 0%,
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.benefits__container {
    position: relative;

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;

    z-index: 1;
}


/* ========================================
   INTRODUÇÃO
======================================== */

.benefits__intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.9fr);

    column-gap: 90px;
    row-gap: 20px;

    align-items: end;

    margin-bottom: 64px;
}


/* ========================================
   PEQUENO TÍTULO
======================================== */

.benefits__eyebrow {
    grid-column: 1 / -1;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    gap: 10px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}


.benefits__eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background-color: var(--color-secondary);

    border-radius: 999px;
}


/* ========================================
   TÍTULO
======================================== */

.benefits__title {
    color: var(--color-white);

    font-family: var(--font-primary);

    font-size: clamp(38px, 3.6vw, 54px);
    font-weight: 600;

    line-height: 1.12;
    letter-spacing: -1.7px;
}


.benefits__title span {
    display: block;

    color: var(--color-secondary-dark);
}


/* ========================================
   DESCRIÇÃO
======================================== */

.benefits__description {
    max-width: 500px;

    padding-bottom: 6px;

    color: rgba(255, 255, 255, 0.68);

    font-family: var(--font-secondary);
    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   GRID DE BENEFÍCIOS
======================================== */

.benefits__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* ========================================
   CARD
======================================== */

.benefit-card {
    position: relative;

    min-height: 280px;

    padding: 34px 30px 38px;

    overflow: hidden;

    background-color: transparent;

    border-right: 1px solid rgba(255, 255, 255, 0.10);

    transition:
        background-color 0.35s ease,
        transform 0.35s ease;
}


/* REMOVE A BORDA DO ÚLTIMO */

.benefit-card:last-child {
    border-right: none;
}


/* FUNDO NO HOVER */

.benefit-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(22, 184, 166, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    opacity: 0;

    transition: opacity 0.35s ease;

    z-index: -1;
}


/* LINHA TURQUESA SUPERIOR */

.benefit-card::after {
    content: "";

    position: absolute;

    top: -1px;
    left: 30px;

    width: 0;
    height: 3px;

    background-color: var(--color-secondary);

    border-radius: 999px;

    transition: width 0.4s ease;
}


.benefit-card:hover::before {
    opacity: 1;
}


.benefit-card:hover::after {
    width: 58px;
}


/* ========================================
   NÚMERO
======================================== */

.benefit-card__number {
    display: block;

    margin-bottom: 70px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* ========================================
   TÍTULO DO BENEFÍCIO
======================================== */

.benefit-card h3 {
    margin-bottom: 14px;

    color: var(--color-white);

    font-family: var(--font-primary);

    font-size: 20px;
    font-weight: 600;

    line-height: 1.3;

    transition: color var(--transition);
}


/* ========================================
   DESCRIÇÃO DO BENEFÍCIO
======================================== */

.benefit-card p {
    color: rgba(255, 255, 255, 0.60);

    font-family: var(--font-secondary);
    font-size: 14px;

    line-height: 1.7;
}

/* ========================================
   TRANSIÇÃO DO BLOCO ESCURO PARA O CLARO
======================================== */

.benefits__transition {
    position: absolute;

    left: -5%;
    bottom: -75px;

    width: 110%;
    height: 150px;

    background-color: #ffffff;

    border-radius:
        55% 45% 0 0 /
        70% 55% 0 0;

    transform: rotate(-1.2deg);

    transform-origin: center;

    z-index: 2;

    pointer-events: none;
}

/* ========================================
   GESTÃO CONECTADA À OPERAÇÃO
======================================== */

.operations {
    position: relative;
    width: 100%;
    padding: 100px 0 115px;
    overflow: hidden;
    background-color: #ffffff;
}

/* CONTAINER */

.operations__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

/* CONTEÚDO */

.operations__content {
    max-width: 520px;
}

.operations__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.operations__eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background-color: var(--color-secondary);
    border-radius: 999px;
}

.operations__title {
    margin-bottom: 24px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -1.8px;
}

.operations__title span {
    display: block;
    color: var(--color-secondary-dark);
}

.operations__description {
    margin-bottom: 34px;

    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.75;
}

/* LISTA */

.operations__list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin-bottom: 36px;
}

.operations__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.operations__check {
    width: 28px;
    height: 28px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    background-color: rgba(22, 184, 166, 0.12);
    color: var(--color-secondary-dark);

    font-size: 13px;
    font-weight: 700;
}

.operations__list div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.operations__list strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
}

.operations__list small {
    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 13px;
    line-height: 1.55;
}

/* BOTÃO */

.operations__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 15px 24px;

    border-radius: 999px;

    background-color: var(--color-primary-dark);
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.operations__cta:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
}

.operations__cta span {
    font-size: 18px;
    line-height: 1;
    transition: var(--transition);
}

.operations__cta:hover span {
    transform: translateX(4px);
}

/* ÁREA VISUAL */

.connected-operation__visual {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin-left: auto;
    padding-bottom: 64px;
}

/* NAVEGADOR */

.connected-operation__browser {
    position: relative;

    width: 100%;
    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid #dce4ea;
    border-radius: 22px;

    box-shadow: 0 26px 60px rgba(8, 27, 44, 0.13);
}

.connected-operation__browser-top {
    height: 56px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 18px;

    background-color: #f4f7f9;
    border-bottom: 1px solid #dce4ea;
}

.connected-operation__browser-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.connected-operation__browser-dots span {
    width: 9px;
    height: 9px;

    border-radius: 50%;
    background-color: #cbd5dc;
}

.connected-operation__browser-url {
    min-width: 210px;
    padding: 8px 15px;

    background-color: #ffffff;

    border: 1px solid #dce4ea;
    border-radius: 999px;

    color: #5f6b7a;
    font-size: 11px;
}

/* SLIDER */

.connected-operation__slider {
    position: relative;

    width: 100%;
    height: 350px;

    overflow: hidden;

    background-color: #f4f7f9;
}

.connected-operation__track {
    display: flex;

    width: 100%;
    height: 100%;

    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.connected-operation__slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.connected-operation__slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: top center;
}

/* CARD FLUTUANTE */

.connected-operation__floating-card {
    position: absolute;

    right: -14px;
    bottom: 22px;

    width: 285px;
    padding: 21px;

    background-color: #081f32;

    border-radius: 18px;

    box-shadow: 0 20px 42px rgba(8, 27, 44, 0.22);

    z-index: 5;
}

.connected-operation__floating-label {
    display: block;

    margin-bottom: 10px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.connected-operation__floating-card h3 {
    margin-bottom: 9px;

    color: #ffffff;

    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;

    line-height: 1.35;
}

.connected-operation__floating-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.66);

    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 1.5;
}

.connected-operation__floating-card.is-changing {
    animation: connectedCardChange 0.45s ease;
}

@keyframes connectedCardChange {
    0% {
        opacity: 0.35;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTROLES */

.connected-operation__controls {
    position: absolute;

    left: 16px;
    bottom: 13px;

    display: flex;
    align-items: center;
    gap: 11px;

    z-index: 6;
}

.connected-operation__arrow {
    width: 36px;
    height: 36px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;

    border: 1px solid #dce4ea;
    border-radius: 50%;

    color: var(--color-primary-dark);

    font-size: 15px;
    cursor: pointer;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.connected-operation__arrow:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #ffffff;

    transform: translateY(-2px);
}

.connected-operation__indicators {
    display: flex;
    align-items: center;
    gap: 6px;
}

.connected-operation__indicator {
    width: 7px;
    height: 7px;
    padding: 0;

    background-color: #b8c4cc;

    border: none;
    border-radius: 999px;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background-color 0.3s ease;
}

.connected-operation__indicator--active {
    width: 24px;
    background-color: var(--color-secondary);
}

/* ========================================
   RELATÓRIOS E VISÃO GERENCIAL
======================================== */

.reports {
    position: relative;

    width: 100%;
    padding: 120px 0 140px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );
}


/* LINHA EDITORIAL DE FUNDO */

.reports::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background-color: rgba(16, 42, 67, 0.05);

    pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.reports__container {
    position: relative;

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;

    gap: 90px;

    z-index: 1;
}


/* ========================================
   VISUAL
======================================== */

.reports__visual {
    position: relative;

    padding: 30px 30px 60px 0;
}


/* TELA */

.reports__screen {
    overflow: hidden;

    background-color: var(--color-white);

    border: 1px solid rgba(16, 42, 67, 0.10);
    border-radius: 22px;

    box-shadow:
        0 30px 75px rgba(16, 42, 67, 0.14);
}


/* CABEÇALHO DA TELA */

.reports__screen-header {
    min-height: 58px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #f4f7f9;

    border-bottom: 1px solid var(--color-border);
}


.reports__screen-label {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
}


.reports__screen-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--color-secondary-dark);

    font-size: 11px;
    font-weight: 600;
}


.reports__screen-status::before {
    content: "";

    width: 7px;
    height: 7px;

    background-color: var(--color-secondary);

    border-radius: 50%;
}


/* IMAGEM */

.reports__screen img {
    width: 100%;
    height: auto;

    object-fit: cover;
}


/* DETALHE INFERIOR */

.reports__detail {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 300px;
    padding: 22px 24px;

    background-color: var(--color-white);

    border: 1px solid rgba(16, 42, 67, 0.10);
    border-radius: 16px;

    box-shadow:
        0 20px 45px rgba(16, 42, 67, 0.14);
}


.reports__detail strong {
    display: block;

    margin-bottom: 7px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}


.reports__detail span {
    color: var(--color-text-secondary);

    font-size: 12px;
    line-height: 1.5;
}


/* ========================================
   CONTEÚDO
======================================== */

.reports__content {
    max-width: 540px;
}


/* EYEBROW */

.reports__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}


.reports__eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background-color: var(--color-secondary);

    border-radius: 999px;
}


/* TÍTULO */

.reports__title {
    margin-bottom: 24px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(40px, 3.8vw, 56px);
    font-weight: 600;

    line-height: 1.12;
    letter-spacing: -1.7px;
}


.reports__title span {
    display: block;

    color: var(--color-secondary-dark);
}


/* DESCRIÇÃO */

.reports__description {
    margin-bottom: 38px;

    color: var(--color-text-secondary);

    font-size: 17px;
    line-height: 1.75;
}


/* ========================================
   RECURSOS
======================================== */

.reports__features {
    margin-bottom: 38px;

    border-top: 1px solid var(--color-border);
}


.reports__feature {
    display: grid;
    grid-template-columns: 42px 1fr;

    gap: 16px;

    padding: 22px 0;

    border-bottom: 1px solid var(--color-border);
}


.reports__feature-number {
    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
}


.reports__feature strong {
    display: block;

    margin-bottom: 6px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
}


.reports__feature p {
    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.6;
}


/* ========================================
   BOTÃO
======================================== */

.reports__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 15px 24px;

    background-color: var(--color-primary-dark);
    color: var(--color-white);

    border-radius: 999px;

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.reports__cta:hover {
    background-color: var(--color-secondary-dark);

    transform: translateY(-2px);
}


.reports__cta span {
    font-size: 18px;
    line-height: 1;

    transition: var(--transition);
}


.reports__cta:hover span {
    transform: translateX(4px);
}

/* ========================================
   SEGMENTOS
======================================== */

.segments {
    width: 100%;
    padding: 130px 0 150px;

    background-color: #f5f2eb;
}


/* ========================================
   CONTAINER
======================================== */

.segments__container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 110px;
}


/* ========================================
   GALERIA
======================================== */

.segments__gallery {
    position: relative;

    min-height: 620px;
}


.segments__image {
    position: absolute;

    overflow: hidden;

    background-color: #dfe5e8;
}


.segments__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.segments__image:hover img {
    transform: scale(1.04);
}


/* IMAGEM GRANDE */

.segments__image--large {
    left: 0;
    top: 80px;

    width: 260px;
    height: 470px;

    border-radius: 140px;
}


/* IMAGEM SUPERIOR */

.segments__image--top {
    top: 0;
    right: 20px;

    width: 270px;
    height: 330px;

    border-radius: 150px 150px 40px 40px;
}


/* IMAGEM INFERIOR */

.segments__image--bottom {
    right: 20px;
    bottom: 0;

    width: 270px;
    height: 280px;

    border-radius: 40px 40px 150px 150px;
}


/* ========================================
   CONTEÚDO
======================================== */

.segments__content {
    max-width: 590px;
}


.segments__eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.segments__title {
    margin-bottom: 24px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -1.8px;
}


.segments__title span {
    display: block;

    color: var(--color-secondary-dark);
}


.segments__description {
    max-width: 540px;

    margin-bottom: 42px;

    color: var(--color-text-secondary);

    font-size: 17px;
    line-height: 1.75;
}


/* ========================================
   DESTAQUES
======================================== */

.segments__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    margin-bottom: 38px;

    border-top: 1px solid rgba(16, 42, 67, 0.14);
    border-left: 1px solid rgba(16, 42, 67, 0.14);
}


.segments__highlight {
    min-height: 115px;
    padding: 22px 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid rgba(16, 42, 67, 0.14);
    border-bottom: 1px solid rgba(16, 42, 67, 0.14);
}


.segments__highlight strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
}


.segments__highlight span {
    margin-top: 4px;

    color: var(--color-secondary-dark);

    font-size: 14px;
}


/* ========================================
   CTA
======================================== */

.segments__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border-radius: 999px;

    background-color: var(--color-primary-dark);
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.segments__cta:hover {
    background-color: var(--color-secondary-dark);

    transform: translateY(-2px);
}


.segments__cta span {
    font-size: 18px;

    transition: var(--transition);
}


.segments__cta:hover span {
    transform: translateX(4px);
}

/* ========================================
   VISÃO GERAL DA PLATAFORMA
======================================== */

.product-overview {
    width: 100%;
    padding: 140px 0;

    background-color: #ffffff;
}


/* ========================================
   CONTAINER
======================================== */

.product-overview__container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;
}


/* ========================================
   CABEÇALHO
======================================== */

.product-overview__header {
    max-width: 860px;

    margin: 0 auto 58px;

    text-align: center;
}


.product-overview__eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.product-overview__title {
    margin-bottom: 22px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -1.8px;
}


.product-overview__title span {
    display: block;

    color: var(--color-secondary-dark);
}


.product-overview__description {
    max-width: 690px;

    margin: 0 auto;

    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   ABAS
======================================== */

.product-overview__tabs {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-bottom: 72px;

    border-bottom: 1px solid var(--color-border);
}


.product-overview__tab {
    position: relative;

    padding: 16px 18px;

    border: none;

    background-color: transparent;
    color: var(--color-text-secondary);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}


.product-overview__tab::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: -1px;

    height: 2px;

    background-color: var(--color-secondary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}


.product-overview__tab:hover {
    color: var(--color-primary-dark);
}


.product-overview__tab--active {
    color: var(--color-primary-dark);
}


.product-overview__tab--active::after {
    transform: scaleX(1);
}


/* ========================================
   CONTEÚDOS
======================================== */

.product-overview__content {
    display: none;

    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;

    gap: 90px;

    animation: productContentFade 0.45s ease;
}


.product-overview__content--active {
    display: grid;
}


/* ========================================
   TEXTO
======================================== */

.product-overview__copy {
    max-width: 470px;
}


.product-overview__number {
    display: block;

    margin-bottom: 18px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


.product-overview__copy h3 {
    margin-bottom: 18px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: 600;

    line-height: 1.22;
    letter-spacing: -0.8px;
}


.product-overview__copy > p {
    margin-bottom: 30px;

    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 16px;

    line-height: 1.75;
}


/* ========================================
   LISTA
======================================== */

.product-overview__list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.product-overview__list li {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--color-primary-dark);

    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
}


.product-overview__list li span {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: rgba(22, 184, 166, 0.12);
    color: var(--color-secondary-dark);

    font-size: 11px;
    font-weight: 700;
}


/* ========================================
   TELA DO SISTEMA
======================================== */

.product-overview__screen {
    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid rgba(16, 42, 67, 0.10);
    border-radius: 20px;

    box-shadow:
        0 28px 70px rgba(16, 42, 67, 0.14);
}


.product-overview__screen img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;
}


/* ========================================
   ANIMAÇÃO
======================================== */

@keyframes productContentFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ========================================
   PROCESSO DE IMPLANTAÇÃO
======================================== */

.onboarding {
    position: relative;

    width: 100%;
    margin-top: -1px;
    padding: 210px 0 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #071a2b 0%,
            #0a2438 55%,
            #0d3047 100%
        );
}


/* ========================================
   TRANSIÇÃO COM A SEÇÃO ANTERIOR
======================================== */

.onboarding::before {
    content: "";

    position: absolute;

    top: -100px;
    left: -5%;

    width: 110%;
    height: 190px;

    background-color: var(--color-background);

    transform: rotate(-2.5deg);

    transform-origin: center;

    z-index: 1;
}


/* LINHA TURQUESA NA TRANSIÇÃO */

.onboarding::after {
    content: "";

    position: absolute;

    top: 83px;
    right: 7%;

    width: 180px;
    height: 3px;

    background-color: var(--color-secondary);

    border-radius: 999px;

    z-index: 2;
}


/* ========================================
   CONTAINER
======================================== */

.onboarding__container {
    position: relative;

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px 130px;

    display: grid;
    grid-template-columns: 0.78fr 1.22fr;

    gap: 110px;

    align-items: start;

    z-index: 3;
}


/* ========================================
   INTRODUÇÃO
======================================== */

.onboarding__intro {
    position: sticky;

    top: 120px;

    max-width: 500px;
}


.onboarding__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.onboarding__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background-color: var(--color-secondary);

    border-radius: 999px;
}


/* ========================================
   TÍTULO
======================================== */

.onboarding__title {
    margin-bottom: 26px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -1.8px;
}


.onboarding__title span {
    display: block;

    color: var(--color-secondary);
}


/* ========================================
   DESCRIÇÃO
======================================== */

.onboarding__description {
    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.62);

    font-family: var(--font-secondary);
    font-size: 16px;

    line-height: 1.75;
}


/* ========================================
   BOTÃO
======================================== */

.onboarding__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 15px 24px;

    border-radius: 999px;

    background-color: var(--color-secondary);
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.onboarding__cta:hover {
    background-color: var(--color-secondary-dark);

    transform: translateY(-2px);
}


.onboarding__cta span {
    font-size: 18px;

    transition: var(--transition);
}


.onboarding__cta:hover span {
    transform: translateX(4px);
}


/* ========================================
   PROCESSO
======================================== */

.onboarding__process {
    position: relative;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* LINHA VERTICAL */

.onboarding__process::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 46px;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            var(--color-secondary),
            rgba(22, 184, 166, 0.10)
        );
}


/* ========================================
   ETAPA
======================================== */

.onboarding__item {
    position: relative;

    display: grid;
    grid-template-columns: 92px 1fr;

    gap: 28px;

    padding: 40px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* ========================================
   NÚMERO
======================================== */

.onboarding__item-number {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0a2438;

    border: 1px solid rgba(22, 184, 166, 0.38);
    border-radius: 50%;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;

    z-index: 2;
}


/* ========================================
   CONTEÚDO DA ETAPA
======================================== */

.onboarding__item-content {
    padding-top: 4px;
}


.onboarding__item-content > span {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.40);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.onboarding__item-content h3 {
    max-width: 530px;

    margin-bottom: 14px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;

    line-height: 1.35;
}


.onboarding__item-content p {
    max-width: 550px;

    color: rgba(255, 255, 255, 0.56);

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   FECHAMENTO DA SEÇÃO
======================================== */

.onboarding__statement {
    position: relative;

    padding: 70px 0;

    background-color: rgba(255, 255, 255, 0.035);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.onboarding__statement-container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;
}


.onboarding__statement p {
    max-width: 1050px;

    color: rgba(255, 255, 255, 0.35);

    font-family: var(--font-primary);
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 500;

    line-height: 1.3;
    letter-spacing: -1px;
}


.onboarding__statement strong {
    color: var(--color-white);

    font-weight: 500;
}

/* ========================================
   CONFIANÇA E RELACIONAMENTO
======================================== */

.relationship {
    position: relative;

    width: 100%;

    padding: 150px 0;

    background-color: #f7f6f2;

    overflow: hidden;
}


/* DETALHE DECORATIVO DE FUNDO */

.relationship::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 32%;
    height: 100%;

    background-color: #eef3f3;

    z-index: 0;
}


/* ========================================
   CONTAINER
======================================== */

.relationship__container {
    position: relative;

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 80px;

    align-items: center;

    z-index: 2;
}


/* ========================================
   IMAGEM
======================================== */

.relationship__visual {
    position: relative;

    width: 100%;

    background-color: #0b2233;

    border-radius: 6px;

    overflow: hidden;
}


/* IMAGEM PRINCIPAL */

.relationship__visual img {
    display: block;

    width: 100%;
    height: 560px;

    object-fit: contain;
    object-position: center;

    border-radius: 6px;
}


/* ========================================
   LEGENDA DA IMAGEM
======================================== */

.relationship__visual-caption {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 72%;

    padding: 24px 30px;

    display: flex;
    align-items: center;

    gap: 16px;

    background-color: var(--color-primary-dark);

    color: var(--color-white);
}


.relationship__caption-line {
    width: 34px;
    height: 2px;

    flex-shrink: 0;

    background-color: var(--color-secondary);
}


.relationship__visual-caption p {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;
}


/* ========================================
   CONTEÚDO
======================================== */

.relationship__content {
    position: relative;
}


/* EYEBROW */

.relationship__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.relationship__eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background-color: var(--color-secondary);
}


/* ========================================
   TÍTULO
======================================== */

.relationship__title {
    max-width: 620px;

    margin-bottom: 26px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(42px, 4vw, 60px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -2px;
}


.relationship__title span {
    display: block;

    color: var(--color-secondary-dark);
}


/* ========================================
   DESCRIÇÃO
======================================== */

.relationship__description {
    max-width: 590px;

    margin-bottom: 50px;

    color: var(--color-text-secondary);

    font-family: var(--font-secondary);
    font-size: 16px;

    line-height: 1.8;
}


/* ========================================
   LISTA DE DIFERENCIAIS
======================================== */

.relationship__list {
    width: 100%;

    border-top: 1px solid var(--color-border);
}


/* ITEM */

.relationship__item {
    display: grid;
    grid-template-columns: 54px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid var(--color-border);

    transition: var(--transition);
}


/* NÚMERO */

.relationship__number {
    padding-top: 4px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
}


/* TÍTULO DO ITEM */

.relationship__item-content h3 {
    margin-bottom: 7px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
}


/* TEXTO DO ITEM */

.relationship__item-content p {
    max-width: 480px;

    color: var(--color-text-secondary);

    font-size: 14px;

    line-height: 1.7;
}


/* HOVER MUITO SUTIL */

.relationship__item:hover {
    padding-left: 10px;
}

/* ========================================
   CTA FINAL
======================================== */

.final-cta {
    position: relative;

    width: 100%;
    padding: 140px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(22, 184, 166, 0.14),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #071a2b 0%,
            #0a2438 55%,
            #0d3047 100%
        );
}


/* DETALHE DE FUNDO */

.final-cta::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -320px;

    width: 760px;
    height: 760px;

    border: 1px solid rgba(22, 184, 166, 0.10);
    border-radius: 50%;

    transform: translateX(-50%);

    pointer-events: none;
}


/* ========================================
   CONTAINER
======================================== */

.final-cta__container {
    position: relative;

    width: 100%;
    max-width: 980px;

    margin: 0 auto;
    padding: 0 32px;

    text-align: center;

    z-index: 1;
}


/* ========================================
   EYEBROW
======================================== */

.final-cta__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.final-cta__eyebrow::before,
.final-cta__eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background-color: rgba(22, 184, 166, 0.55);
}


/* ========================================
   TÍTULO
======================================== */

.final-cta__title {
    margin-bottom: 26px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 600;

    line-height: 1.06;
    letter-spacing: -2.2px;
}


.final-cta__title span {
    display: block;

    color: var(--color-secondary);
}


/* ========================================
   DESCRIÇÃO
======================================== */

.final-cta__description {
    max-width: 760px;

    margin: 0 auto 38px;

    color: rgba(255, 255, 255, 0.66);

    font-family: var(--font-secondary);
    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   AÇÕES
======================================== */

.final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-bottom: 24px;
}


/* BOTÃO PRINCIPAL */

.final-cta__primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 16px 26px;

    border-radius: 999px;

    background-color: var(--color-secondary);
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}


.final-cta__primary:hover {
    background-color: var(--color-secondary-dark);

    transform: translateY(-2px);
}


.final-cta__primary span {
    font-size: 19px;

    transition: var(--transition);
}


.final-cta__primary:hover span {
    transform: translateX(4px);
}


/* BOTÃO SECUNDÁRIO */

.final-cta__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 24px;

    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}


.final-cta__secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}


/* ========================================
   OBSERVAÇÃO
======================================== */

.final-cta__note {
    color: rgba(255, 255, 255, 0.42);

    font-size: 12px;
    line-height: 1.5;
}