.OurValues .values{
    background-color: #451B17;
    min-height: 100dvh;
    padding:  0 0 300px 0;
}
.OurValues .values .container{
    padding-top: 200px;
}

.OurValues .container{ flex-direction: column!important; }

.OurValues .title{
    padding-top: 40px;
    color: #F30;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Manrope';
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-top: 2px solid white;
    padding-bottom: 280px;
}
.OurValues .values .elipse {
    width: clamp(430px, 27vw, 530px);
    height: clamp(430px, 27vw, 530px);
    border: 2px solid #F30;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.OurValues .values .elipse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(30% 30% at 50% 50%, #F30 0%, rgba(255, 51, 0, 0.00) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: expandirLatencia 2s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes expandirLatencia {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5); /* Se expande */
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.valuesWrapper{
    width: 100%;
    height: 100%;
}

.OurValues .values .dot{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    cursor: pointer;
}

.OurValues .values .dot .dataInside { pointer-events: none; }

.OurValues .circleData{
    position: relative;
    width: fit-content;
}

.OurValues .dot .dataInside{
    opacity: 0;
    position: absolute;
    width: 0;
    transition: all .5s linear;
}

.OurValues .dot.active .thisLine{ stroke: #F30; }
.OurValues .dot.active circle{ fill: #F30; }

.OurValues .dot.active .dataInside{
    opacity: 1;
    transition: all .5s linear;
}

/* General Styles */
.OurValues .dot .dataInside { width: fit-content; }
.OurValues .dot.dot-3 .dataInside,
.OurValues .dot.dot-6 .dataInside { width: 320px; }

.OurValues .dot.dot-4 .valuesItemText{ text-align: left; left: 75px; top: 120px;}
.OurValues .dot .valuesItemText { width: clamp(200px, 28vw,400px); }
.OurValues .dot.dot-5 .valuesItemText { width: clamp(200px, 27vw,400px); top: 120px; right: 80px;}
.OurValues .dot.dot-6 .valuesItemText,
.OurValues .dot.dot-3 .valuesItemText { text-align: left; width: clamp(200px, 25vw,255px); }
.OurValues .dot.dot-6 .valuesItemText{ top: 10px; text-align: right; }

/* Specific Dot Styles */
.OurValues .dot.dot-1 .valuesItemSubtitle,
.OurValues .dot.dot-5 .valuesItemSubtitle,
.OurValues .dot.dot-6 .valuesItemSubtitle {
    text-align: left;
}

.OurValues .dot.dot-2 .valuesItemSubtitle,
.OurValues .dot.dot-3 .valuesItemSubtitle,
.OurValues .dot.dot-4 .valuesItemSubtitle {
    text-align: right;
}

.OurValues .dot.dot-4 .valuesItemSubtitle{ width: 120px; right: 10px; top: 120px; clamp(300px, 30vw,450px)}

.OurValues .dot.dot-1 .valuesItemText { right: 80px; }

.OurValues .dot.dot-1 .valuesItemSubtitle {
    width: 150px;
    left: 15px;
}

.OurValues .dot.dot-2 .valuesItemText { text-align: left; left: 75px; }
.OurValues .dot.dot-2 .valuesItemSubtitle {
    width: 120px;
    right: 15px;
    text-align: right;
}

/* Separator Styles */
.OurValues .dot.dot-1 .separator,
.OurValues .dot.dot-2 .separator,
.OurValues .dot.dot-4 .separator,
.OurValues .dot.dot-5 .separator {
    width: 65px;
    height: 243.5px;
}

.OurValues .dot.dot-3 .separator,
.OurValues .dot.dot-6 .separator {
    width: 254px;
    height: 1px;
    background-size: cover;
}

.OurValues .dot .separator { background-repeat: no-repeat; background-size: contain; }

.OurValues .dot.dot-1 .separator { background-image: url(../../assets/images/line-down.svg); }
.OurValues .dot.dot-2 .separator { background-image: url(../../assets/images/line-to-left.svg); }
.OurValues .dot.dot-3 .separator { background-image: url(../../assets/images/line-svg.svg); }
.OurValues .dot.dot-4 .separator { background-image: url(../../assets/images/line-right-down.svg); }
.OurValues .dot.dot-5 .separator { background-image: url(../../assets/images/line-right-svg.svg); background-size: cover;}
.OurValues .dot.dot-6 .separator { background-image: url(../../assets/images/line-svg.svg); margin-left: auto; }

/* Data Inside Positioning */
.OurValues .dot.dot-1 .dataInside { top: -304%; left: -71%; }
.OurValues .dot.dot-2 .dataInside { top: -304%; right: -71%; }
.OurValues .dot.dot-3 .dataInside { right: -431%; top: 48%; }
.OurValues .dot.dot-4 .dataInside { bottom: -300%; right: -79%; }
.OurValues .dot.dot-5 .dataInside { bottom: -302%; left: -82%; }
.OurValues .dot.dot-6 .dataInside { left: -432%; top: 43%; }

.OurValues .dot .dataInside .valuesData { display: flex; gap: 10px; }

.OurValues .dot.dot-1 .dataInside .valuesData { flex-direction: row-reverse; }
.OurValues .dot.dot-2 .dataInside .valuesData { flex-direction: row; }
.OurValues .dot.dot-3 .dataInside .valuesData { flex-direction: column; align-items: flex-end;}
.OurValues .dot.dot-4 .dataInside .valuesData { align-items: flex-end;}
.OurValues .dot.dot-5 .dataInside .valuesData { flex-direction: row-reverse; align-items: flex-end;}
.OurValues .dot.dot-6 .dataInside .valuesData { flex-direction: column; align-items: flex-start;}

/* Typography */
.OurValues .dot .valuesItemSubtitle {
    color: #FFFFF9;
    font-family: 'Manrope';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    position: absolute;
    width: 200px;
}

.OurValues .dot .valuesItemText {
    color: #FFFFF9;
    text-align: right;
    font-family: 'Manrope';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    position: absolute;
}

.OurValues .values .valuesItemTitle {
    color: #FFFFF9;
    text-align: center;
    font-family: 'Manrope';
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    background-color: #451B17;
    z-index: 1;
    position: absolute;
    bottom: -47%;
    height: 35px;
}

.OurValues .contElipseMobile{ display: none; }
/*Mor Configs Paddings lines*/
.OurValues .dot.dot-3 .separator{ margin-right: auto; }

.OurValues .dot.dot-3 .valuesItemText{ top: 10px; }
.OurValues .dot.dot-3 .valuesItemSubtitle{ left: 65px; text-align: left; bottom:12px; padding-right: 50px;}
.OurValues .dot.dot-6 .valuesItemSubtitle{
    text-align: right;
    width: 200px;
    margin-left: 100px;
    margin-bottom: 5px;
    right: 63px;
    bottom: 6px;
}
.OurValues .dot.dot-5 .valuesItemSubtitle{ top: 120px; left: 17px; }

/* Dot Positioning */
.OurValues .dot:nth-of-type(1) .valuesItemTitle{
    left: -15px;
    background-color: transparent;
}

.OurValues .dot:nth-of-type(1) {
    top: 0;
    left: 25%;
    transform: translateX(-50%);
}

.OurValues .dot:nth-of-type(2) .valuesItemTitle{
    right: -12px;
    background-color: transparent;
}

.OurValues .dot:nth-of-type(2) {
    top: 0%;
    right: 15%;
}

.OurValues .dot:nth-of-type(3) {
    bottom: 38%;
    right: -7%;
}

.OurValues .dot:nth-of-type(4) {
    bottom: 0%;
    left: 75%;
    transform: translateX(-50%);
}

.OurValues .dot:nth-of-type(5) {
    bottom: 0%;
    left: 17%;
}

.OurValues .dot:nth-of-type(6) {
    bottom: 38%;
    left: -7%;
}

/*Mobile*/
.OurValues .containerData{
    height: 250px;
    width: clamp(293px, 80vw, 800px);
    margin: 50px auto 0 auto;
    position: relative;
}

.OurValues .containerData .separator {
    width: clamp(141.5px, 40vw, 400px);
    height: 80px;
    background-image: url(../../assets/images/line-up-svg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.OurValues .infoData{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    transition: .5s all ;
}

@media screen and (max-width: 1550px){
    .OurValues .dot:nth-of-type(1) .valuesItemTitle{
        left: -10px;
    }

    .OurValues .dot:nth-of-type(2) .valuesItemTitle{
        right: -17px;
    }
}

@media screen and (max-width: 1250px){
    .OurValues .dot:nth-of-type(1) .valuesItemTitle{ left: unset; }
    .OurValues .dot:nth-of-type(2) .valuesItemTitle{ right: unset;}
    .OurValues .dot.dot-6 .dataInside{ left: -310%;  }
    .OurValues .dot.dot-6 .valuesItemSubtitle{ right: 21%; }
    .OurValues .dot.dot-3 .dataInside, .OurValues .dot.dot-6 .dataInside{ width: 230px; }
    .OurValues .dot.dot-3 .valuesItemSubtitle{ margin-right: 0; }
    .OurValues .dot.dot-3 .separator, .OurValues .dot.dot-6 .separator{ width: 200px; }
    .OurValues .dot.dot-3 .dataInside { right: -337%; }
    .OurValues .dot.dot-6 .valuesItemText,
    .OurValues .dot.dot-3 .valuesItemText{ width: 180px; }
    .OurValues .dot.dot-3 .dataInside{ right: -310%; }
    .OurValues .values .valuesItemTitle { transform: scale(0.7);}
}

@media screen and (max-width: 1000px){
    .OurValues .dot:nth-of-type(1) .valuesItemTitle{
        left: -10px;
    }

    .OurValues .dot:nth-of-type(2) .valuesItemTitle{
        right: -5px;
    }
    .OurValues  .title{
        padding-top: 20px;
        padding-bottom: 80px;
    }

    .OurValues .values .elipse{ width: clamp(290px, 60vw, 430px); height: clamp(290px, 60vw, 430px); transition: .5s all ; background-color: #451B17; z-index:3;}
    .OurValues .dot{ width: 56px; height: 56px; }

    .OurValues .elipse.desktop{ display: none; }
    .OurValues .contElipseMobile{ display: block; }

    .OurValues .values .valuesItemTitle{
        transform: unset;
        color: #FFFFF9;
        leading-trim: both;
        text-edge: cap;
        font-family: 'Manrope';
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 34px;
        background-color: unset;
        text-align: left;
        width: 50%;
        border-bottom:1px solid #F30;
        padding-bottom: 10px;
        margin-bottom: 13px;
        position: relative;
    }

    .OurValues .values .valuesItemSubtitle{
        color: #FFFFF9;
        leading-trim: both;
        text-edge: cap;
        font-family: 'Manrope';
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%; /* 17.6px */
        margin-bottom: 13px;
    }

    .OurValues .values .valuesItemText *{
        color: #FFFFF9;
        leading-trim: both;
        text-edge: cap;
        font-family: 'Manrope';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 16.8px */
    }

    .OurValues .circleCont{ height: 100%; transform: scale(0.93); }
    .OurValues .dot:nth-of-type(1){bottom: -10%; left: 49%; transform: translateX(-50%); top: unset;}
    .OurValues .dot:nth-of-type(2){bottom: 16%;right: -3%; top: unset;}
    .OurValues .dot:nth-of-type(3){top: 17%; right: -4%;}
    .OurValues .dot:nth-of-type(4){top: -11%; left: 51%; transform: translateX(-50%);}
    .OurValues .dot:nth-of-type(5){top: 15%; left: -3%;}
    .OurValues .dot:nth-of-type(6){bottom: 17%;left: -4%;}

    .OurValues .line{
        position: absolute;
        top: -117%;
        left: 100%;
        transform: translate(-50%, -50%);
        width: 1px;
        background-color: #F30;
        height: 150px;
    }

    .OurValues .values{
        background-color: #451B17;
        min-height: 100dvh;
        padding: 0;
    }

    .OurValues .values .container{
        background-color: #451B17;
        min-height: 100dvh;
        padding-top: 100px;
    }
}
@media screen and (max-width: 600px) {
    .OurValues .circleCont{
        transform: scale(1);
    }
}

@media screen and (max-width: 650px){
    .OurValues .dot:nth-of-type(1){bottom: -10%; left: 50%; transform: translateX(-50%); top: unset;}
    .OurValues .dot:nth-of-type(2){bottom: 14%;right: -4%; top: unset;}
    .OurValues .dot:nth-of-type(3){top: 15%; right: -4%;}
    .OurValues .dot:nth-of-type(4){top: -10%; left: 50%; transform: translateX(-50%);}
    .OurValues .dot:nth-of-type(5){top: 15%; left: -4%;}
    .OurValues .dot:nth-of-type(6){bottom: 15%;left: -4%;}
}

@media screen and (max-width: 442px){
    .OurValues .values .valuesItemText *{
        font-size: 12px;
    }

    .OurValues .values{
        background-color: #451B17;
        min-height: 100dvh;
    }
}