/* ========================================
   CTA FINAL COM FORMULÁRIO
======================================== */

.final-cta {
    position: relative;

    width: 100%;
    padding: 130px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(22, 184, 166, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #081B2C 0%,
            #0B2235 100%
        );
}


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

    position: absolute;

    right: -280px;
    bottom: -420px;

    width: 820px;
    height: 820px;

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

    pointer-events: none;
}


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

    position: absolute;

    top: 0;
    right: 0;

    width: 34%;
    height: 4px;

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


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

.final-cta__container {
    position: relative;

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

    margin: 0 auto;
    padding: 0 32px;

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

    gap: 82px;

    align-items: center;

    z-index: 2;
}


/* ========================================
   CONTEÚDO DA ESQUERDA
======================================== */

.final-cta__content {
    max-width: 610px;

    text-align: left;
}


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

    gap: 12px;

    margin-bottom: 24px;

    color: var(--color-secondary);

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

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


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

    width: 32px;
    height: 2px;

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


.final-cta__title {
    max-width: 600px;

    margin-bottom: 26px;

    color: var(--color-white);

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

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


.final-cta__title span {
    display: block;

    margin-top: 7px;

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


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

    margin-bottom: 36px;

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

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

    line-height: 1.8;
}


/* ========================================
   BENEFÍCIOS
======================================== */

.final-cta__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    margin: 0;
    padding: 0;

    list-style: none;

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


.final-cta__benefits li {
    min-height: 76px;

    padding: 17px 18px;

    display: flex;
    align-items: center;

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

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

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

    line-height: 1.45;
}


/* ========================================
   CARD DO FORMULÁRIO
======================================== */

.final-cta__form-card {
    width: 100%;

    padding: 42px;

    background-color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 22px;

    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.30);

    position: relative;
}


.final-cta__form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 42px;
    right: 42px;

    height: 3px;

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

    border-radius: 0 0 999px 999px;
}


.final-cta__form-card h3 {
    margin-bottom: 8px;

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

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

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


.final-cta__form-card h3::after {
    content: "Preencha os dados abaixo e nossa equipe entrará em contato.";

    display: block;

    margin-top: 10px;
    margin-bottom: 28px;

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

    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 400;

    line-height: 1.6;
    letter-spacing: 0;
}


/* ========================================
   FORMULÁRIO
======================================== */

#homeWhatsappForm {
    display: flex;
    flex-direction: column;

    gap: 16px;
}


/* ========================================
   GRID DOS CAMPOS
======================================== */

.final-cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* ========================================
   CAMPOS
======================================== */

.final-cta__form-card input,
.final-cta__form-card select,
.final-cta__form-card textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #d8e1e7;
    border-radius: 10px;

    outline: none;

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

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

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


.final-cta__form-card input,
.final-cta__form-card select {
    height: 54px;
}


.final-cta__form-card textarea {
    min-height: 150px;

    resize: vertical;

    line-height: 1.6;
}


.final-cta__form-card input::placeholder,
.final-cta__form-card textarea::placeholder {
    color: #8c98a2;
}


.final-cta__form-card input:hover,
.final-cta__form-card select:hover,
.final-cta__form-card textarea:hover {
    border-color: #b9c7d1;
}


.final-cta__form-card input:focus,
.final-cta__form-card select:focus,
.final-cta__form-card textarea:focus {
    border-color: var(--color-secondary);

    background-color: #ffffff;

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


/* ========================================
   PRIVACIDADE
======================================== */

.final-cta__privacy {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding-top: 2px;

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

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

    line-height: 1.55;

    cursor: pointer;
}


.final-cta__privacy input {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-top: 1px;

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


.final-cta__privacy a {
    color: var(--color-secondary-dark);

    font-weight: 600;
}


.final-cta__privacy a:hover {
    text-decoration: underline;
}


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

.final-cta__button {
    width: 100%;
    min-height: 58px;

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

    gap: 14px;

    padding: 0 24px;

    border: none;
    border-radius: 12px;

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

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

    cursor: pointer;

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


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

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(8, 27, 44, 0.18);
}


.final-cta__button span {
    font-size: 18px;

    transition: transform 0.25s ease;
}


.final-cta__button:hover span {
    transform: translateX(5px);
}

.final-cta__form-header {
    margin-bottom: 28px;
}


.final-cta__form-header > span {
    display: block;

    margin-bottom: 10px;

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

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

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


.final-cta__form-header h3 {
    margin: 0;

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

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

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


.final-cta__form-header h3::after {
    content: "Preencha os dados abaixo e nossa equipe entrará em contato.";

    display: block;

    margin-top: 10px;

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

    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 400;

    line-height: 1.6;
    letter-spacing: 0;
}

/* ========================================
   RESPONSIVIDADE DA HOME
======================================== */


/* ========================================
   ATÉ 1200PX
======================================== */

@media (max-width: 1200px) {

    .hero__container {
        max-width: 1080px;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 24px;
    }


    .hero__visual {
        width: 105%;
        margin-right: -35px;
    }


    .solutions__container,
    .benefits__container,
    .operations__container,
    .segments__container,
    .product-overview__container,
    .onboarding__container,
    .relationship__container,
    .final-cta__container {
        max-width: 1080px;
    }


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


    .operations__container,
    .relationship__container {
        gap: 50px;
    }


    .segments__container {
        gap: 70px;
    }

}


/* ========================================
   ATÉ 992PX
======================================== */

@media (max-width: 992px) {

    /* HERO */

    .hero,
    .hero__slider,
    .hero__slide {
        min-height: auto;
    }


    .hero__container {
        min-height: auto;

        padding-top: 80px;
        padding-bottom: 100px;

        grid-template-columns: 1fr;
        gap: 55px;
    }


    .hero__content {
        max-width: 720px;
    }


    .hero__visual {
        width: 100%;
        height: 500px;

        margin-right: 0;
    }


    .hero__floating-card--top-left {
        left: 15px;
    }


    .hero__floating-card--middle-left {
        left: 0;
    }


    .hero__floating-card--bottom-left {
        left: 20px;
    }


    /* SOLUÇÕES */

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


    .solutions__header {
        max-width: 760px;
    }


    /* BENEFÍCIOS */

    .benefits__intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }


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


    .benefit-card:nth-child(2) {
        border-right: none;
    }


    .benefit-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }


    /* OPERAÇÕES */

    .operations__container {
        grid-template-columns: 1fr;
        gap: 65px;
    }


    .operations__content {
        max-width: 700px;
    }


    .connected-operation__visual {
        max-width: 760px;
        margin: 0 auto;
    }


    /* SEGMENTOS */

    .segments__container {
        grid-template-columns: 1fr;
        gap: 65px;
    }


    .segments__gallery {
        max-width: 620px;
        width: 100%;

        margin: 0 auto;
    }


    .segments__content {
        max-width: 760px;
    }


    /* VISÃO GERAL */

    .product-overview__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }


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


    .product-overview__screen {
        max-width: 850px;
    }


    /* IMPLANTAÇÃO */

    .onboarding__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .onboarding__intro {
        position: static;
        max-width: 720px;
    }


    /* RELACIONAMENTO */

    .relationship__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .relationship__visual {
        max-width: 780px;
    }


    .relationship__content {
        max-width: 760px;
    }


    /* CTA FINAL */

    .final-cta__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .final-cta__content {
        max-width: 760px;
    }


    .final-cta__form-card {
        max-width: 720px;
    }

}


/* ========================================
   ATÉ 768PX
======================================== */

@media (max-width: 768px) {

    /* ESPAÇAMENTOS GERAIS */

    .solutions,
    .operations,
    .segments,
    .product-overview,
    .relationship {
        padding-top: 90px;
        padding-bottom: 100px;
    }


    .benefits {
        padding-top: 70px;
        padding-bottom: 150px;
    }


    .onboarding {
        padding-top: 160px;
    }


    .final-cta {
        padding: 100px 0;
    }


    /* HERO */

    .hero__container {
        padding:
            70px
            20px
            95px;
    }


    .hero__title {
        font-size: clamp(40px, 10vw, 56px);
        letter-spacing: -1.5px;
    }


    .hero__description {
        font-size: 15px;
    }


    .hero__visual {
        height: 420px;
    }


    .hero__floating-card {
        min-width: 132px;
        padding: 9px 10px;
    }


    .hero__floating-card--middle-left,
    .hero__floating-card--middle-right {
        display: none;
    }


    /* SOLUÇÕES */

    .solutions__container,
    .benefits__container,
    .operations__container,
    .segments__container,
    .product-overview__container,
    .onboarding__container,
    .relationship__container,
    .final-cta__container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .solutions__title,
    .benefits__title,
    .operations__title,
    .segments__title,
    .product-overview__title,
    .onboarding__title,
    .relationship__title,
    .final-cta__title {
        font-size: clamp(38px, 9vw, 50px);
        letter-spacing: -1.5px;
    }


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


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


    .solutions__cta {
        width: 100%;
    }


    /* BENEFÍCIOS */

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


    .benefit-card {
        min-height: auto;

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


    /* OPERAÇÕES */

    .connected-operation__slider {
        height: 290px;
    }


    .connected-operation__floating-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: 18px;
    }


    .connected-operation__visual {
        padding-bottom: 0;
    }


    .connected-operation__controls {
        position: static;

        margin-top: 18px;
    }


    /* SEGMENTOS */


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


    /* VISÃO GERAL */

    .product-overview__tabs {
        justify-content: flex-start;

        overflow-x: auto;
        scrollbar-width: none;
    }


    .product-overview__tabs::-webkit-scrollbar {
        display: none;
    }


    .product-overview__tab {
        flex: 0 0 auto;
    }


    .product-overview__screen {
        border-radius: 14px;
    }


    /* IMPLANTAÇÃO */

    .onboarding__item {
        grid-template-columns: 64px 1fr;
        gap: 18px;
    }


    .onboarding__process::before {
        left: 28px;
    }


    .onboarding__item-number {
        width: 52px;
        height: 52px;
    }


    /* RELACIONAMENTO */

    .relationship__visual img {
        height: 430px;
    }


    .relationship__visual-caption {
        width: 100%;
    }


    /* FORMULÁRIO */

    .final-cta__grid {
        grid-template-columns: 1fr;
    }


    .final-cta__form-card {
        padding: 30px 24px;
    }

}


/* ========================================
   ATÉ 576PX
======================================== */

@media (max-width: 576px) {

    /* HERO */

    .hero__eyebrow {
        font-size: 11px;
    }


    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }


    .hero__cta,
    .hero__secondary {
        width: 100%;
    }


    .hero__visual {
        height: 330px;
    }


    .hero__floating-card {
        display: none;
    }


    .hero__indicators {
        bottom: 20px;
    }


    /* SOLUÇÕES */

    .solutions__header {
        margin-bottom: 45px;
    }


    .solutions__title {
        font-size: 40px;
    }


    .solutions__card-top {
        min-height: 155px;
    }


    .solutions__card-bottom {
        min-height: 130px;
    }


    /* OPERAÇÕES */

    .connected-operation__browser-top {
        height: 48px;
    }


    .connected-operation__browser-url {
        min-width: 150px;
    }


    .connected-operation__slider {
        height: 235px;
    }


    /* SEGMENTOS */


    /* VISÃO GERAL */

    .product-overview__header {
        text-align: left;
    }


    .product-overview__copy h3 {
        font-size: 28px;
    }


    /* IMPLANTAÇÃO */

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


    .onboarding__process::before {
        display: none;
    }


    .onboarding__item-number {
        width: 48px;
        height: 48px;
    }


    /* RELACIONAMENTO */

    .relationship__visual img {
        height: 340px;
    }


    .relationship__visual-caption {
        padding: 18px;
    }


    /* FORMULÁRIO */

    .final-cta__form-card {
        padding: 26px 18px;
    }


    .final-cta__form-header h3 {
        font-size: 24px;
    }

}


/* ======================================================
   CORREÇÃO RESPONSIVA:
   RELATÓRIOS, SEGMENTOS E VISÃO DA PLATAFORMA
====================================================== */


/* ======================================================
   AJUSTES DE SEGURANÇA CONTRA OVERFLOW
====================================================== */

.reports__container,
.reports__visual,
.reports__content,
.segments__container,
.segments__gallery,
.segments__content,
.product-overview__container,
.product-overview__content,
.product-overview__copy,
.product-overview__screen {
    min-width: 0;
}


/* ======================================================
   ATÉ 1100PX
====================================================== */

@media (max-width: 1100px) {

    /* RELATÓRIOS */

    .reports__container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, 0.85fr);

        gap: 55px;
    }


    .reports__visual {
        padding-right: 15px;
    }


    .reports__detail {
        width: 270px;
    }


    /* SEGMENTOS */

    .segments__container {
        gap: 60px;
    }


    /* PLATAFORMA */

    .product-overview__content {
        gap: 55px;
    }

}


/* ======================================================
   ATÉ 992PX
====================================================== */

@media (max-width: 992px) {

    /* ========================================
       RELATÓRIOS
    ======================================== */

    .reports {
        padding: 105px 0 115px;
    }


    .reports__container {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .reports__visual {
        width: 100%;
        max-width: 780px;

        margin: 0 auto;

        padding:
            0
            30px
            55px
            0;
    }


    .reports__content {
        width: 100%;
        max-width: 720px;
    }


    .reports__screen {
        width: 100%;
    }


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

        object-fit: contain;
    }


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

    .segments {
        padding: 110px 0 120px;
    }


    .segments__container {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .segments__gallery {
        width: 100%;
        max-width: 620px;
        min-height: 590px;

        margin: 0 auto;

        transform: none;
    }


    .segments__content {
        width: 100%;
        max-width: 760px;
    }


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

    .product-overview {
        padding: 110px 0 120px;
    }


    .product-overview__content {
        grid-template-columns: 1fr;

        gap: 48px;
    }


    .product-overview__copy {
        width: 100%;
        max-width: 700px;
    }


    .product-overview__screen {
        width: 100%;
        max-width: 850px;

        margin: 0 auto;
    }


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

        object-fit: contain;
    }

}


/* ======================================================
   ATÉ 768PX
====================================================== */

@media (max-width: 768px) {

    /* CONTAINERS */

    .reports__container,
    .segments__container,
    .product-overview__container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* ========================================
       RELATÓRIOS
    ======================================== */

    .reports {
        padding: 85px 0 95px;
    }


    .reports::before {
        display: none;
    }


    .reports__container {
        gap: 48px;
    }


    .reports__visual {
        padding:
            0
            0
            0;
    }


    .reports__screen {
        border-radius: 15px;
    }


    .reports__screen-header {
        min-height: 50px;

        padding: 0 14px;
    }


    .reports__screen-label {
        font-size: 11px;
    }


    .reports__screen-status {
        font-size: 10px;
    }


    .reports__detail {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: 14px;
        padding: 18px;

        border-radius: 12px;

        box-shadow:
            0 14px 32px rgba(16, 42, 67, 0.10);
    }


    .reports__title {
        font-size: clamp(36px, 9vw, 48px);

        letter-spacing: -1.4px;
    }


    .reports__description {
        margin-bottom: 30px;

        font-size: 15px;
    }


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

        gap: 12px;

        padding: 18px 0;
    }


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

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


    .segments__gallery {
        position: relative;

        width: 100%;
        max-width: 540px;
        min-height: 500px;

        margin: 0 auto;

        transform: none;
    }


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

        width: 44%;
        height: 390px;
    }


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

        width: 48%;
        height: 245px;
    }


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

        width: 48%;
        height: 230px;
    }


    .segments__title {
        font-size: clamp(36px, 9vw, 48px);
    }


    .segments__description {
        font-size: 15px;
    }


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


    /* ========================================
       PLATAFORMA
    ======================================== */

    .product-overview {
        padding: 90px 0 100px;
    }


    .product-overview__header {
        margin-bottom: 38px;
    }


    .product-overview__title {
        font-size: clamp(36px, 9vw, 48px);
    }


    .product-overview__description {
        font-size: 15px;
    }


    .product-overview__tabs {
        width: 100%;

        margin-bottom: 48px;

        justify-content: flex-start;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }


    .product-overview__tabs::-webkit-scrollbar {
        display: none;
    }


    .product-overview__tab {
        flex: 0 0 auto;

        padding: 14px 15px;

        white-space: nowrap;
    }


    .product-overview__content {
        width: 100%;

        gap: 38px;
    }


    .product-overview__copy h3 {
        font-size: 30px;
    }


    .product-overview__screen {
        width: 100%;

        overflow: hidden;

        border-radius: 13px;
    }

}


/* ======================================================
   ATÉ 576PX
====================================================== */

@media (max-width: 576px) {

    /* ========================================
       RELATÓRIOS
    ======================================== */

    .reports__screen-header {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;

        gap: 4px;

        padding: 10px 13px;
    }


    .reports__title {
        font-size: 36px;
    }


    .reports__cta {
        width: 100%;
    }


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

    .segments__gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 190px;

        gap: 10px;

        min-height: 0;

        transform: none;
    }


    .segments__image {
        position: relative;

        inset: auto;

        width: 100%;
        height: 100%;

        border-radius: 18px;
    }


    .segments__image--large {
        grid-row: 1 / 3;

        border-radius: 80px 18px 18px 80px;
    }


    .segments__image--top {
        grid-column: 2;
        grid-row: 1;

        border-radius: 18px 70px 18px 18px;
    }


    .segments__image--bottom {
        grid-column: 2;
        grid-row: 2;

        border-radius: 18px 18px 70px 18px;
    }


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


    .segments__highlight {
        min-height: 95px;
    }


    .segments__cta {
        width: 100%;

        justify-content: center;
    }


    /* ========================================
       PLATAFORMA
    ======================================== */

    .product-overview__header {
        text-align: left;
    }


    .product-overview__title {
        font-size: 36px;
    }


    .product-overview__copy h3 {
        font-size: 27px;
    }


    .product-overview__copy > p {
        font-size: 14px;
    }


    .product-overview__list li {
        align-items: flex-start;

        font-size: 13px;
    }


    .product-overview__screen {
        border-radius: 10px;

        box-shadow:
            0 16px 38px rgba(16, 42, 67, 0.11);
    }

}