body{
    margin: 0;
    padding: 0;
    background: #000000;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 960px;
    padding: 0 20px 0 20px;
    margin: 0 auto;
}
        
 /* Container Principal */
        .Grid-Sec4-container {
            max-width: 960px;
            margin: 0 auto;
            overflow: visible;
            padding: 0px 0;
        }

        /* Grid Desktop */
        .Grid-Sec4-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 225px);
            gap: 20px;
            justify-content: center;
            padding: 0px 0;
        }

        /* Cards */
        .Grid-Sec4-card {
            width: 225px;
            height: 228.56px;
            border-radius: 22px;
            background: #1D1D1F;
            display: flex;
            align-items: baseline;
            justify-content: flex-start;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .Grid-Sec4-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(83, 83, 83, 0.2);

        }

        .Grid-Sec4-toggle {
            text-align: center;
            margin-bottom: 30px;
        }

        .Grid-Sec4-toggle-btn {
            padding: 12px 24px;
            font-size: 16px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .Grid-Sec4-toggle-btn:hover {
            background: #5568d3;
        }

        /* Mobile - Carrossel apenas abaixo de 576px */
        @media (max-width: 576px) {
            .Grid-Sec4-container {
                padding: 0;
            }

            /* Modo Carrossel Ativo */
            .Grid-Sec4-wrapper:not(.Grid-Sec4-carousel-disabled) {
                display: flex;
                gap: 20px;
                animation: Grid-Sec4-scroll 30s linear infinite;
                width: max-content;
            }

            .Grid-Sec4-wrapper:not(.Grid-Sec4-carousel-disabled):hover {
                animation-play-state: paused;
            }

            .Grid-Sec4-wrapper:not(.Grid-Sec4-carousel-disabled) .Grid-Sec4-card {
                cursor: grab;
            }

            .Grid-Sec4-wrapper:not(.Grid-Sec4-carousel-disabled) .Grid-Sec4-card:active {
                cursor: grabbing;
            }

            /* Modo Carrossel Desativado */
            .Grid-Sec4-wrapper.Grid-Sec4-carousel-disabled {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;
                padding: 0 20px;
            }

            .Grid-Sec4-wrapper.Grid-Sec4-carousel-disabled .Grid-Sec4-card {
                width: 100%;
                max-width: 400px;
            }

            /* Animação do carrossel */
            @keyframes Grid-Sec4-scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% / 4));
                }
            }
        }

        /* Tablet - 3 colunas */
        @media (max-width: 1024px) and (min-width: 769px) {
            .Grid-Sec4-wrapper {
                grid-template-columns: repeat(3, 225px);
            }
        }

        /* Tablet/Mobile - 2 colunas */
        @media (max-width: 768px) and (min-width: 577px) {
            .Grid-Sec4-container {
                padding: 0;
            }

            .Grid-Sec4-wrapper {
                grid-template-columns: repeat(2, 225px);
                gap: 15px;
            }
        }

        /* Mobile pequeno - ajustes do carrossel */
        @media (max-width: 576px) {
            .Grid-Sec4-wrapper:not(.Grid-Sec4-carousel-disabled) {
                animation-duration: 40s;
            }
        }
/* ------------------------------------- */
/* ---------------SLIDER---------------- */
/* --------------------------------------*/
       .slider-cards-sec8-outer-container {
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            position: relative;
        }

        .slider-cards-sec8-container {
            width: 100%;
            position: relative;
        }

        .slider-cards-sec8-wrapper {
            position: relative;
            overflow: visible;
            padding: 80px 0;
        }

        .slider-cards-sec8-overflow {
            overflow: hidden;
            padding: 30px 0;
            margin: -30px 0;
            /* Permite que o slider ultrapasse o container para a direita */
            margin-right: calc(-1 * ((100vw - min(100vw, 1920px)) / 2 + (min(100vw, 1920px) - 960px) / 2 - 11px));
              position: relative;
            -webkit-mask-image: linear-gradient(to right,
                rgba(0,0,0,1) 70%,
                transparent 100%);
            mask-image: linear-gradient(to right,
                rgba(0,0,0,1) 30%,
            transparent 100%);
        }

        button#prevBtn {
            position: relative;
            left: -99px;
        }

        button#nextBtn {
            position: relative;
            right: -101px;
        }

        /* Para telas maiores que 1920px (ultra wide) */
        @media (min-width: 1921px) {
            .slider-cards-sec8-overflow {
                margin-right: calc(-1 * ((1920px - 960px) / 2 - 11px));
            }
        }

        .slider-cards-sec8-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: grab;
            user-select: none;
        }

        .slider-cards-sec8-track.slider-cards-sec8-dragging {
            cursor: grabbing;
            transition: none;
        }

        .slider-cards-sec8-slide {
            max-width: 307px;
            width: 100%;
            height: 574.82px;
            border-radius: 20px;
            background: linear-gradient(180deg, #000000 0%, #333F64 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        .slider-cards-sec8-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }


        .slider-cards-sec8-nav-buttons {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
            padding: 0 20px;
        }

        .slider-cards-sec8-nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            background: #323f62;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            pointer-events: auto;
            backdrop-filter: blur(10px);
        }

        .slider-cards-sec8-nav-btn:hover {
            transform: scale(1.15);
            background:  #6776a3;
            box-shadow: 0 6px 30px rgba(0,0,0,0.4);
        }

        .slider-cards-sec8-nav-btn:active {
            transform: scale(0.95);
        }

        .slider-cards-sec8-progress-container {
            width: 100%;
            max-width: 960px;
            margin: 30px auto 0;

        }

        .slider-cards-sec8-progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255,255,255,0.3);
            border-radius: 10px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .slider-cards-sec8-progress-fill {
            height: 100%;
            background: white;
            border-radius: 10px;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        .slider-cards-sec8-progress-handle {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            cursor: grab;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            transition: left 0.3s ease;
        }

        .slider-cards-sec8-progress-handle:active {
            cursor: grabbing;
        }

        .slider-cards-sec8-autoplay-toggle {
            display: none;
        }

        .slider-cards-sec8-toggle-btn {
            padding: 12px 30px;
            border: 2px solid white;
            background: rgba(255,255,255,0.2);
            color: white;
            font-size: 16px;
            font-weight: bold;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .slider-cards-sec8-toggle-btn:hover {
            background: white;
            color: #667eea;
        }

        .slider-cards-sec8-toggle-btn.slider-cards-sec8-active {
            background: white;
            color: #667eea;
        }

        .slider-cards-sec8-clone {
            pointer-events: none;
        }

        /* Responsividade para telas menores que 1000px */
        @media (max-width: 1000px) {
            .slider-cards-sec8-overflow {
                margin-right: -20px;
            }
        }

        /* Para telas grandes entre 1000px e 1920px */
        @media (min-width: 1001px) and (max-width: 1920px) {
            .slider-cards-sec8-overflow {
                margin-right: calc(-1 * ((100vw - 960px) / 2 - 8px));
            }
        }

        @media (max-width: 768px) {
            .slider-cards-sec8-outer-container {
                max-width: 100%;
            }

            .slider-cards-sec8-overflow {
                margin-right: -20px;
                padding: 0 0 0 50px;
            }

            .slider-cards-sec8-slide {
                min-width: 250px;
                height: 467px;
            }

            .slider-cards-sec8-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .slider-cards-sec8-nav-buttons {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .slider-cards-sec8-slide {
                min-width: 200px;
                height: 490px;
                font-size: 36px;
                padding: 20px 0 40px 0px;
            }

            .slider-cards-sec8-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }


        .Grid-Sec10-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
        }

        .Grid-Sec10-card {
            width: 307px;
            height: 347.31px;
            background: #1D1D1F;
            border-radius: 22px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: baseline;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 auto;
            user-select: none;
        }

        .Grid-Sec10-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .Grid-Sec10-card-content {
            text-align: left;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding-top: 85px;
        }

        .Grid-Sec10-card-content .Grid-Sec10-card-img {
            margin-bottom: 16px;
        }

        .Grid-Sec10-card-content h3 {
            color: #DADADA;
            font-size: 17px;
            line-height: 22px;
            font-family: "Roboto", sans-serif;
            font-weight: 700;
        }

        .Grid-Sec10-card-content p {
            color: #DADADA;
            font-size: 17px;
            line-height: 22px;
            font-family: "Roboto", sans-serif;
            font-weight: 300;
            margin-top: 7px;
        }

        .Grid-Sec10-card-number {
            font-size: 48px;
            font-weight: bold;
            color: #4a90e2;
        }

        /* Responsivo para tablets */
        @media (max-width: 1024px) {
            .Grid-Sec10-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Responsivo para tablets pequenos */
        @media (max-width: 768px) {
            .Grid-Sec10-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .Grid-Sec10-card {
                width: 100%;
                max-width: 307px;
            }
        }

        /* Responsivo para mobile - Carousel */
        @media (max-width: 480px) {
            .Grid-Sec10-container {
                overflow: hidden;
                width: 100%;
            }

            .Grid-Sec10-grid {
                display: flex;
                gap: 20px;
                width: max-content;
                cursor: grab;
            }

            .Grid-Sec10-grid:not(.Grid-Sec10-carousel-disabled) {
                animation: Grid-Sec10-scroll 45s linear infinite;
            }

            .Grid-Sec10-grid.Grid-Sec10-dragging {
                cursor: grabbing;
                animation-play-state: paused;
            }

            .Grid-Sec10-grid.Grid-Sec10-paused {
                animation-play-state: paused;
            }

            /* Desativar carousel - grid fica responsivo sem rotação */
            .Grid-Sec10-grid.Grid-Sec10-carousel-disabled {
                display: grid;
                grid-template-columns: 1fr;
                width: 100%;
                animation: none;
                cursor: default;
                overflow: visible;
            }
            
            .Grid-Sec10-card {
                flex-shrink: 0;
                width: 307px;
                margin: 0;
            }

            .Grid-Sec10-grid.Grid-Sec10-carousel-disabled .Grid-Sec10-card {
                width: 100%;
                max-width: 307px;
                margin: 0 auto;
            }

            .Grid-Sec10-card:hover {
                transform: none;
            }

            .Grid-Sec10-grid.Grid-Sec10-carousel-disabled .Grid-Sec10-card:hover {
                transform: translateY(-5px);
            }
        }

        @keyframes Grid-Sec10-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-327px * 9));
            }
        }
        .footer-dv-content {
            text-align: center;
        }

        .footer-dv-content img {
            margin-top: 58px;
        }

        .ft-info-counter-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 53px;
            padding: 120px 0 0px 0;
        }

        .ft-info-counter-column {
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }


        .ft-info-counter-column:hover {
            transform: translateY(-10px);
        }

        .ft-info-counter-number {
            font-size: 39px;
            font-weight: 700;
            color: #DADADA;
            margin-bottom: 1px;
            line-height: 44.2px;
            font-family: "Montserrat", sans-serif;
            display: flex;
        }

        .ft-info-counter-suffix {
            font-size: 39px;
            font-weight: 700;
            color: #DADADA;
            margin-bottom: 1px;
            line-height: 44.2px;
            font-family: "Montserrat", sans-serif;
            margin-left: 10px;
        }

        .ft-info-counter-text {
            font-size: 16px;
            font-family: "Roboto", sans-serif;
            color: #DADADA;
            font-weight: 300;
            line-height: 18px;
            display: flex;
        }

        @media (max-width: 992px) {
            .ft-info-counter-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .ft-info-counter-number {
                font-size: 3rem;
            }
        }

        @media (max-width: 576px) {
            .ft-info-counter-row {
                gap: 20px;
                padding: 10px;
            }

            .ft-info-counter-column {
                padding: 30px 15px;
            }

            .ft-info-counter-number {
                font-size: 2.5rem;
            }

            .ft-info-counter-suffix {
                font-size: 1.5rem;
            }

            .ft-info-counter-text {
                font-size: 0.9rem;
                text-align: left;
            }
        }


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 95px;
    border-bottom: 1px solid #1D1D1F;
    padding: 0;
}

header .container p {
    font-size: 15px;
    color: #DADADA;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

section#section1 .mainSec1 {
    background-image: url('./img/banner-miolink.webp');
    display: flex;
    height: 670px;
    background-position: -81% 20px;
    background-repeat: no-repeat;
    background-size: auto;
    width: 100%;
    padding: 61px 0 0px 0px;
    cursor: text;
    justify-content: space-between;
}

section#section1 .mainSec1 .titleSec1 h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 34.82px;
    line-height: 38.7px;
    font-weight: 300;
    background: -webkit-linear-gradient(#7BBEC1, #0075E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section#section1 .mainSec1 .titleSec1 h2 span {
    font-weight: 800;
}


.FormDv-Sec1 {
    background: #1C1C1C;
    border-radius: 12px;
    width: 100%;
    max-width: 315px;
    height: fit-content;
    padding: 25px 20px 25px 20px;
}

.FormDv-Sec1-container p {
    font-size: 17px;
    line-height: 22px;
    color: #DADADA;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 18px;
    width: 75%;
}

.bricks-form__terms {
    position: relative;
    top: 24%;
    left: 90px;
    max-width: 86%;
}

#rd-form-mh3googz .with-select-flags > .phone-input-group > .phone-country {
    border: 1px solid #4a4a4a;
    height: 36px;
    margin-top: 0px;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-right: -1px;
}

#rd-form-mh3googz .with-select-flags > .phone-input-group > .phone-country a{
    background: none;
    line-height: 31px !important;
}

button#rd-button-mh3gooh4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #DADADA !important;
}

section#section2 .mainSec2 .Video-txt-Sec2 {
    display: flex;
    justify-content: space-between;
}

section#section2 .mainSec2 .Video-txt-Sec2 .video-sec2 {
    width: 50%;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 {
    width: 47%;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 p {
    font-size: 20px;
    line-height: 25px;
    font-weight: 200;
    font-family: "Roboto", sans-serif;
    color: #DADADA;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 span {
    font-weight: 700;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 {
    display: flex;
    background: #1D1D1F;
    border-radius: 22px;
    padding: 67px 92px 64px 72px;
    justify-content: space-between;
    margin-top: 112px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title h2 {
    color: #DADADA;
    font-size: 32px;
    line-height: 35px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-bottom: 9px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title p {
    color: #DADADA;
    font-size: 20px;
    line-height: 25px;
    font-weight: 200;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title {
    width: 60%;
}


.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2-btn a {
    background: #2089FF;
    width: 100%;
    max-width: 238px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 44px;
    margin-bottom: 58px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2-btn a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


section#section3 {
    background: #000000;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#333F64", GradientType=0);
    padding: 65px 0 115px 0;
}


section#section3 .mainSec3 .FormDv-Sec3 h5 {
    color: #DADADA;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin-bottom: 22px;
}

section#section3 .mainSec3 .FormDv-Sec3 h2 {
    color: #DADADA;
    text-align: center;
    font-size: 50px;
    line-height: 56px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    background: -webkit-linear-gradient(#7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto;
    margin-bottom: 22px;
}

section#section3 .mainSec3 .FormDv-Sec3 h2 span {
    font-weight: 700;
}

section#section3 .mainSec3 .FormDv-Sec3 p {
    color: #DADADA;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 60px;
}


section#section3 .mainSec3 .FormDv-Sec3 .video-Sec3 h5 {
    font-size: 20px;
    line-height: 25px;
    color: #DADADA;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    margin: 0 auto;
    margin-top: 60px;
    width: 62%;
}

.sec3-testimonial-slider {
    text-align: center;
}

section#section4 {
    padding-top: 120px;
}
section#section4 .mainSec4 .titleSec4 {
    text-align: center;
}

section#section4 .mainSec4 .titleSec4 h2 {
    font-size: 20px;
    line-height: 24px;
    color: #DADADA;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin-bottom: 70px;
}

.grid-sec4-card-internal-dv img {
    margin-bottom: 9px;
}

.grid-sec4-card-internal-dv h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    margin: 0;
    color: #DADADA;
    margin-bottom: 6px;
}
.grid-sec4-card-internal-dv p {
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    font-size: 17px;
    line-height: 22px;
    margin: 0;
    color: #DADADA;
}

.grid-sec4-card-internal-dv {
    padding-left: 20px;
    padding-top: 38px;
}

.Grid-Sec4-btn-cta {
    display: flex;
    flex-direction: column;
    align-items: anchor-center;
}

.Grid-Sec4-btn-cta p {
    font-size: 12px;
    font-weight: 200;
    line-height: 13px;
    font-family: "Roboto", sans-serif;
    color: #DADADA;
    margin: 0;
    margin-top: 19px;
    margin-bottom: 72px;
}

.Grid-Sec4-btn-cta h5 {
    font-size: 20px;
    font-weight: 200;
    line-height: 25px;
    font-family: "Roboto", sans-serif;
    color: #DADADA;
    margin: 0;
    margin-top: 19px;
    margin-bottom: 72px;
    text-align: center;
    width: 56%
}

section#section4 .mainSec4 .Grid-Sec4-btn-cta {
    width: 100%;
    display: flex;
    justify-content: center;
}

section#section4 .mainSec4 a {
    background: #2089FF;
    width: 100%;
    max-width: 270px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 99px;
}

section#section4 .mainSec4 a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section#section5 {
    background: #000000;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#333F64", GradientType=0);
}

section#section5 .mainSec5 .titleSec5 {
    width: 100%;
    display: flex;
    justify-content: center;
}

section#section5 .mainSec5 .titleSec5 h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 50px;
    line-height: 56px;
    color: #DADADA;
    text-align: center;
    margin-bottom: 112px;
}

section#section5 .mainSec5 .titleSec5 span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 56px;
}

.txt-img-Sec5-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card {
    display: flex;
    align-items: center;
    width: 100%;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 h3 {
    font-size: 24px;
    margin: 0;
    line-height: 32px;
    text-align: left;
    color: #DADADA;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 p {
    font-size: 24px;
    margin: 0;
    line-height: 32px;
    text-align: left;
    margin-bottom: 9px;
    color: #DADADA;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
}

section#section5 .mainSec5 .txt-img-Sec5-card .img-Sec5 {
    width: 50%;
    text-align: right;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 {
    width: 50%;
}

section#section5 .mainSec5 .txt-img-Sec5-card .img-Sec5 img {
    margin-right: 40px;
}

.txt-img-Sec5-card.sec5-card-reverse {
    flex-direction: row-reverse;
    text-align-last: end;
}

.txt-img-Sec5-card.sec5-card-reverse .txt-Sec5 {
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.txt-img-Sec5-card.sec5-card-reverse .img-Sec5 {
    text-align: left;
    display: flex;
}

.txt-img-Sec5-card.sec5-card-reverse .txt-Sec5 p {
    text-align: right;
}

.txt-img-Sec5-card.sec5-card-reverse .img-Sec5 img {
    margin-right: 0px;
    margin-left: 40px;
}

.sec5-divider {
    margin: 10px 0 10px 0px;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta h5 {
    color: #DADADA;
    font-size: 20px;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    width: 80%;
    margin: 86px 0 32px 0px;
}


section#section5 .mainSec5 .Grid-Sec5-btn-cta a {
    background: #2089FF;
    width: 100%;
    max-width: 243px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 116px;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section#section6 {
    background: #ECECEC;
    padding: 103px 0 103px 0px;
}

section#section6 .mainSec6 .titleSec6 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 75px;
}

section#section6 .mainSec6 .titleSec6 h2 {
    font-size: 50px;
    text-align: center;
    line-height: 56px;
    color: #1D1D1F;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    width: 70%;
}

section#section6 .mainSec6 .titleSec6 h2 span {
    font-weight: 700;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card {
    background: #ffffff;
    width: 100%;
    max-width: 283.19px;
    border-radius: 10.17px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 37px 0 45px 0;
}

.divider-sec6-card {
    background: #1D1D1F;
    height: 1px;
    min-height: 0.5px;
    max-height: 0;
    width: 100%;
    max-width: 170.69px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-description {
    display: flex;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-description p {
    font-size: 15px;
    color: #1D1D1F;
    line-height: 19px;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    margin: 0;
    margin-bottom: 10px;
}

span.Grid-Sec6-card-description-check {
    font-size: 18px;
    color: #1D1D1F;
    line-height: 19px;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    margin: 0;
    margin-left: -10px;
    margin-right: 10px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content {
    width: 100%;
    max-width: 188.05px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h3 {
    font-size: 22.23px;
    line-height: 24.9px;
    letter-spacing: 0px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h3 span {
    font-weight: 800;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h4 {
    color: #1D1D1F;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 12px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content img {
    margin: 37px 0 45px 0px;
}

section#section6 .mainSec6 .divider-sec6-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 73px;
}


section#section6 .mainSec6 .divider-sec6-btn a {
    background: #2089FF;
    width: 100%;
    max-width: 194px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 21px;
}

section#section6 .mainSec6 .divider-sec6-btn a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section#section6 .mainSec6 .divider-sec6-btn p {
    font-size: 14px;
    font-weight: 200;
    line-height: 19px;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

section#section7 {
    background: #ffffff;
    padding: 86px 0 120px 0;
}

section#section7 .container {
    width: 100%;
    max-width: 1062.17px;
}

section#section7 .mainSec7 .Sec7-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#section7 .mainSec7 .Sec7-title h2 {
    font-size: 50px;
    line-height: 56px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    background: -webkit-linear-gradient(#7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section#section7 .mainSec7 .Sec7-title h2 span {
    font-weight: 700;
}

section#section7 .mainSec7 .Sec7-title p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #1D1D1F;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    margin-top: 24px;
    margin-bottom: 69px;
}

.section7-para-profi-main {
    width: 100%;
    border-radius: 30px;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(180deg, #77BCC2, #0377E1) border-box;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section7-para-profi-main .section7-para-profi-txt h3 {
    font-size: 28px;
    color: #1D1D1F;
    line-height: 32px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-bottom: 42px;
}

.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr {
    display: flex;
    align-items: center;
}

.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr p {
    margin: 0;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 25px;
    margin-left: 26px;
    color: #1D1D1F;
}

.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr span {
    font-weight:700;
}

.divider-sec7-descr {
    height: 1px;
    width: 100%;
    max-width: 447.02px;
    margin-bottom: 15px;
    margin-top: 15px;
    background: #73B9C3;
    background: -webkit-linear-gradient(90deg, rgba(115, 185, 195, 1) 0%, rgba(3, 119, 225, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(115, 185, 195, 1) 0%, rgba(3, 119, 225, 1) 100%);
    background: linear-gradient(90deg, rgba(115, 185, 195, 1) 0%, rgba(3, 119, 225, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#73B9C3", endColorstr="#0377E1", GradientType=1);
}

.section7-para-profi-main .section7-para-profi-txt {
    padding: 85px 0px 0 50px;
}

.section7-para-profi-main .section7-para-profi-img {
    padding: 36px 0 0px 0px;
    margin-bottom: -4px;
    margin-right: -1px;
}


.section7-para-paci-main {
    width: 100%;
    border-radius: 30px;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(180deg, #77BCC2, #0377E1) border-box;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section7-para-paci-main .section7-para-paci-txt h3 {
    font-size: 28px;
    color: #1D1D1F;
    line-height: 32px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-bottom: 42px;
}

.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr {
    display: flex;
    align-items: center;
}

.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr p {
    margin: 0;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 25px;
    margin-left: 26px;
    color: #1D1D1F;
}

.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr span {
    font-weight:700;
}

.divider-sec7-descr {
    height: 1px;
    width: 100%;
    max-width: 447.02px;
    margin-bottom: 15px;
    margin-top: 15px;
    background: #73B9C3;
    background: -webkit-linear-gradient(90deg, rgba(115, 185, 195, 1) 0%, rgba(3, 119, 225, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(115, 185, 195, 1) 0%, rgba(3, 119, 225, 1) 100%);
    background: linear-gradient(90deg, rgba(115, 185, 195, 1) 0%, rgba(3, 119, 225, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#73B9C3", endColorstr="#0377E1", GradientType=1);
}

.section7-para-paci-main .section7-para-paci-txt {
    padding: 85px 45px 0 0px;
}

.section7-para-paci-main .section7-para-paci-img {
    padding: 36px 0 0px 0px;
    margin-bottom: -5px;
    margin-left: -1px;
}

.divider-sec7-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divider-sec7-btn p {
    font-size: 20px;
    color: #1D1D1F;
    font-weight: 300;
    line-height: 25px;
    font-family: "Roboto", sans-serif;
    width: 38%;
    text-align: center;
    margin: 37px 0 20px 0;
}

.divider-sec7-btn a {
    background: #2089FF;
    width: 100%;
    max-width: 256px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 21px;
}

.divider-sec7-btn a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section#section8 .Sec8-title {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

section#section8 .Sec8-title h2 {
    color: #DADADA;
    font-size: 50px;
    line-height: 56px;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    margin: 0 auto;
    margin-top: 124px;
    width: 85%;
    text-align: center;
}

section#section8 .Sec8-title h2 span {
    font-weight: 700;
}

.slider-cards-sec8-slide-content {
    width: 100%;
    max-width: 237.89px;
}

.slider-cards-sec8-slide-content h3 {
    color: #DADADA;
    font-size: 24px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin: 30px 0 23px 0;
}

.slider-cards-sec8-slide-content p {
    color: #DADADA;
    font-size: 17px;
    line-height: 22px;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    margin: 0;
}

.slider-cards-sec8-slide-content span {
    font-weight: 700;
}

.sec8-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sec8-btn h4 {
    font-size: 20px;
    line-height: 24px;
    color: #DADADA;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin: 72px 0 23px 0;
}

.sec8-btn p {
    font-size: 20px;
    line-height: 25px;
    color: #DADADA;
    font-family: "Roboto", sans-serif;
    font-weight: 200;
    margin: 0px 0 34px 0;
    width: 43%;
    text-align: center;
    display: flex;
    align-self: center;
}

.sec8-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 276px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 103px;
}

.sec8-btn a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section#section9 .mainSec9 .sec9-content {
    display: flex;
}

section#section9 .container {
    max-width: 960px;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left {
    width: 37%;
    z-index: 11;
}

.sec9-img-right {
    position: absolute;
    z-index: 1;
    width: -webkit-fill-available;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left h2 {
    font-size: 53.86px;
    line-height: 60.3px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    background: -webkit-linear-gradient(#7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    left: 38px;
    margin-bottom: 22px;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left p {
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    position: relative;
    left: 38px;
    margin-top: 0;
    margin-bottom: 57px;
    color: #DADADA;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left h4 {
    font-size: 13.45px;
    line-height: 16.8px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    position: relative;
    left: 38px;
    margin-top: 40px;
    color: #DADADA;
    width: 80%;

}

section#section9 .mainSec9 .sec9-content .sec9-texts-left .sec9-for-dv {
    display: flex;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left .sec9-for-dv h3 {
    margin-left: 13px;
    display: flex;
    color: #DADADA;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.sec9-for-dv-img {
    margin-bottom: 17px;
    margin-right: 2px;
    width: 100%;
    max-width: 24px;
}

section#section9 .mainSec9 .sec9-content .sec9-img-right::after {
    content: '';
    position: absolute;
    top: -66px;
    left: 240px;
    right: 0px;
    bottom: -919px;
    background-image: url(./img/mulher2-right.webp);
    background-size: inherit;
    z-index: -1;
    background-repeat: no-repeat;
}

.sec9-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 85px 0 103px 0;
}

.sec9-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 276px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.sec9-btn a:hover {
    transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.sec9-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 85px 0 103px 0;
}

section#section10 .mainSec10 .sec10-title h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 50px;
    line-height: 56px;
    text-align: center;
    color: #DADADA;
}

section#section10 .mainSec10 .sec10-title p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #DADADA;
    margin: 30px 0 85px 0;
}

.sec10-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 73px;
}

.sec10-btn h4 {
    font-family: "Roboto", sans-serif;
    color: #DADADA;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 37px;
    width: 58.2%;
}

.sec10-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 208px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.sec10-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.sec11-title {
    margin-top: 60px;
    margin-bottom: 76px;
}

.mainSec11 .sec11-title h2 {
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    line-height: 56px;
    background: -webkit-linear-gradient(#7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 68%;
    margin: 0 auto;
}

.mainSec11 .sec11-title h2 span {
    font-weight: 700;
}



        .carousel-container {
            width: 100%;
        }

        .carousel-wrapper {
            width: 100%;
        }

        .carousel-track {
            width: 100%;
        }

        .sec11-content-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
            border-radius: 99.42px;
            height: 307px;
            width: 100%;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, filter, opacity;
            margin-bottom: 24px;
        }

        /* Posição superior (item anterior) */
        .sec11-content-item[data-position="-1"] {
            transform: translate(-50%, -380px) scale(0.85) rotateX(8deg) translateZ(-100px);
            filter: blur(5px);
            opacity: 0.4;
            z-index: 2;
        }

        /* Posição central (item ativo) */
        .sec11-content-item[data-position="0"] {
            transform: translate(-50%, -50%) scale(1) rotateX(0deg) translateZ(0px);
            filter: blur(0);
            opacity: 1;
            z-index: 20;
        }

        /* Posição inferior (próximo item) */
        .sec11-content-item[data-position="1"] {
            transform: translate(-50%, 280px) scale(0.85) rotateX(-8deg) translateZ(-1660px);
            filter: blur(5px);
            opacity: 0.4;
            z-index: 2;
        }

        /* Itens muito distantes ficam invisíveis */
        .sec11-content-item[data-position="-2"],
        .sec11-content-item[data-position="2"] {
            transform: translate(-50%, -50%) scale(0.6);
            opacity: 0;
            pointer-events: none;
            z-index: 0;
        }

        .sec11-content-item-title {
            width: 45%;
        }

        .sec11-content-item-desc {
            width: 55%;
        }

        .sec11-content-item-title h3 {
            font-size: 35.83px;
            line-height: 35.8px;
            color: #DADADA;
            font-weight: 700;
            padding-left: 88px;
        }

        .sec11-padding {
            padding-left: 73px;
            position: relative;
            left: 15px;
        }

        .sec11-content-item-desc p {
            font-size: 17px;
            line-height: 22px;
            color: #DADADA;
            font-weight: 200;
            margin: 0 0 12px 0;
        }

        .sec11-content-item-desc p span {
            margin-right: 9px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #DADADA;
            font-size: 14px;
            opacity: 0.6;
            z-index: 100;
            text-align: center;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .scroll-indicator.hidden {
            opacity: 0;
        }

        .scroll-indicator::after {
            content: '↕';
            display: block;
            font-size: 24px;
            margin-top: 5px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .sec11-content-item {
                height: auto;
                min-height: 250px;
                width: 95%;
                padding: 30px 20px 30px 40px;
                border-radius: 60px;
                flex-direction: column;
                justify-content: center;
                gap: 20px;
            }

            .sec11-content-item[data-position="-1"] {
                transform: translate(-50%, -300px) scale(0.85) rotateX(6deg) translateZ(-80px);
            }

            .sec11-content-item[data-position="1"] {
                transform: translate(-50%, 230px) scale(0.85) rotateX(-6deg) translateZ(-80px);
            }

            .sec11-content-item-title,
            .sec11-content-item-desc {
                width: 100%;
                margin-left: 70px;
            }

            .sec11-content-item-title h3 {
                font-size: 24px;
                line-height: 28px;
            }

            .sec11-content-item-desc p {
                font-size: 14px;
                line-height: 18px;
                margin-bottom: 8px;
            }

            .sec11-padding {
                padding-left: 0;
                left: 0;
            }

            .scroll-indicator {
                bottom: 20px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .sec11-content-item {
                min-height: 280px;
                padding: 0px;
                border-radius: 40px;
            }

            .sec11-content-item[data-position="-1"] {
                transform: translate(-50%, -260px) scale(0.85) rotateX(5deg) translateZ(-60px);
            }

            .sec11-content-item[data-position="1"] {
                transform: translate(-50%, 200px) scale(0.85) rotateX(-5deg) translateZ(-2640px);
            }

            .sec11-content-item-title h3 {
                font-size: 25px;
                line-height: 24px;
                padding-left: 0px;
            }

            .sec11-content-item-desc p {
                font-size: 13px;
                line-height: 17px;
            }
        }




.sec11-btn {
    width: 100%;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 90px;
}

.sec11-btn p {
    color: #DADADA;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    width: 70%;
    margin: 0 auto;
}

.sec11-btn h4 {
    color: #DADADA;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 30px;
}

.sec11-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 208px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.sec11-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

section#section12 {
    background: #000000;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#333F64", GradientType=0);
    padding-bottom: 120px;
}

.sec12-title h2 {
    font-size: 50px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    line-height: 56px;
    background: -webkit-linear-gradient(#7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 68%;
    margin: 0 auto;
}

.sec12-title p {
    color: #DADADA;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    width: 54%;
    margin: 0 auto;
    text-align: center;
    margin-top: 59px;
    margin-bottom: 59px;
}


        .sec12-countdown-container {
            width: 628.9px;
            max-width: 100%;
            display: flex;
            gap: 13px;
            justify-content: center;
            margin: 0 auto;
        }

        .sec12-countdown-item {
            width: 147.4px;
            height: 120.33px;
            background-color: #333F63;
            border-radius: 7.86px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sec12-countdown-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .sec12-countdown-number {
            font-size: 48px;
            font-weight: bold;
            color: #ffffff;
            text-align: center;
            line-height: 1;
            margin-bottom: 8px;
            font-family: "Roboto", sans-serif;
        }

        .sec12-countdown-label {
            font-size: 12px;
            color: #DADADA;
            text-align: center;
            letter-spacing: 1px;
            font-weight: 300;
            font-family: "Roboto", sans-serif;
        }

        /* Responsividade */
        @media (max-width: 650px) {
            .sec12-countdown-container {
                width: 100%;
                gap: 10px;
            }

            .sec12-countdown-item {
                width: calc(25% - 7.5px);
                height: auto;
                min-height: 100px;
                padding: 15px 5px;
            }

            .sec12-countdown-number {
                font-size: 36px;
            }

            .sec12-countdown-label {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .sec12-countdown-container {
                gap: 8px;
            }

            .sec12-countdown-item {
                width: calc(25% - 6px);
                min-height: 90px;
                padding: 12px 3px;
                border-radius: 6px;
            }

            .sec12-countdown-number {
                font-size: 28px;
                margin-bottom: 5px;
            }

            .sec12-countdown-label {
                font-size: 9px;
                letter-spacing: 0.5px;
            }
        }

        @media (max-width: 360px) {
            .sec12-countdown-number {
                font-size: 24px;
            }

            .sec12-countdown-label {
                font-size: 8px;
            }

            .sec12-countdown-item {
                min-height: 80px;
            }
        }

        /* Animação de atualização */
        @keyframes sec12-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .sec12-countdown-number.sec12-updating {
            animation: sec12-pulse 0.3s ease;
        }



    .sec12-content-btn {
        width: 100%;
        text-align: center;
        margin-top: 80px;
    }

.sec12-content-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 324px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #DADADA;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 27px;
}

.sec12-content-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


.sec12-content-btn p {
    color: #DADADA;
    font-size: 12px;
    line-height: 13px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    margin: 0 auto;
    text-align: center;

    margin-bottom: 59px;
}


section#section13 {
    background-color: #ffffff;
    padding: 84px 0 120px 0;
}

section#section13 .container {
    max-width: 1700px;
}

.sec13-title {
    width: 100%;
    text-align: center;
}

.sec13-title h3 {
    color: #1D1D1F;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-bottom: 21px;
}

.sec13-title h2 {
    font-size: 50px;
    line-height: 56px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    margin: 0 auto;
    margin-bottom: 21px;
    background: -webkit-linear-gradient(
3deg, #7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 50%;
}

.sec13-btn {
    width: 100%;
}

.sec13-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 324px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.sec13-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


.sec14-faq-title h2 {
    color: #DADADA;
    font-size: 50px;
    line-height: 56px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    margin-bottom: 11px;
}

.sec14-faq-title h2 span{
    font-weight: 700;
}

section#section14 {
    padding: 120px 0 150px 0;
}

.sec14-faq-btn {
    width: 100%;
}


.sec13-btn {
    width: 100%;
}

.sec14-faq-btn a {
    background: #2089FF;
    width: 100%;
    margin: 0 auto;
    max-width: 324px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 110px;
}

.sec14-faq-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


footer {
    background: #000000;
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 63, 100, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#333F64", GradientType=0);
    padding: 0 0 93px 0;
}

/* Checkbox redondo */
input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    border: 2px solid #4A4A4A !important;
    border-radius: 50% !important;
    outline: none !important;
    cursor: pointer !important;
    position: relative !important;
    background-color: #1c1c1c !important;
    transition: all 0.3s ease !important;
    margin-right: 5px !important;
    flex-shrink: 0 !important;
    top: -1px;
    vertical-align: middle !important;
}

/* Hover */
input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"]:hover {
    border-color: #9ca3af !important;
}

/* Checkbox marcado */
input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"]:checked {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

/* Marcação interna (bolinha branca) */
input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"]:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #ff000000 !important;
    border-radius: 50% !important;
    display: block !important;
}

/* Focus */
input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0%) !important;
    border-color: #3b82f6 !important;
}


/* Checkbox redondo */
input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    border: 2px solid #4A4A4A !important;
    border-radius: 50% !important;
    outline: none !important;
    cursor: pointer !important;
    position: relative !important;
    background-color: #1c1c1c !important;
    transition: all 0.3s ease !important;
    margin-right: 5px !important;
    flex-shrink: 0 !important;
    top: -1px;
    vertical-align: middle !important;
}
/* Hover */
input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"]:hover {
    border-color: #9ca3af !important;
}
/* Checkbox marcado */
input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"]:checked {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}
/* Marcação interna (bolinha branca) */
input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"]:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #ff000000 !important;
    border-radius: 50% !important;
    display: block !important;
}
/* Focus */
input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgb(59 130 246 / 0%) !important;
    border-color: #3b82f6 !important;
}




/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media (max-width: 375px) {
  /* estilos aplicados a telas de 375px ou menores */
      section#section9 .mainSec9 .sec9-content .sec9-img-right::after {
        top: 850px !important;
    }

    section#section4 .mainSec4 a {
        margin: 0 auto;
        margin-bottom: 99px;
    }

    .Grid-Sec4-btn-cta h5 {
        width: 80%;
        margin: 0 auto;
        margin-top: 19px;
        margin-bottom: 72px;
    }
}


/* For Mobile devices */
@media only screen and (min-width:320px) and (max-width: 480px) {

    section#section4 .mainSec4 a {
        margin: 0 auto;
        margin-bottom: 99px;
    }

.FormDv-Sec1 {
    width: -webkit-fill-available;
}

      button#prevBtn {
            position: relative;
            left: 0;
        }

        button#nextBtn {
            position: relative;
            right: 0;
        }

section#section1 .mainSec1 .titleSec1 h2 br {
    display: none;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 img {
    width: -webkit-fill-available;
}

section#section6 .mainSec6 .divider-sec6-btn p {
    text-align: center;
}

section#section7 .mainSec7 .Sec7-title p {
    text-align: center;
}
section#section1 .mainSec1 {
  flex-direction: column;
  margin-bottom: 45px;
  height: 962px;
  margin-bottom: 45px;
  background-position: center 19%;
  background-size: 170%;
}

section#section2 .mainSec2 .Video-txt-Sec2 {
  flex-direction: column;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 {
  flex-direction: column;
  padding: 47px 42px 47px 42px;
  margin-top: 60px;
}

section#section5 .mainSec5 .txt-img-Sec5-card {
  flex-direction: column;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.section7-para-profi-main {
  flex-direction: column;
}

.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr {
  flex-direction: column;
}

.section7-para-paci-main {
  flex-direction: column-reverse;
}

.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr {
  flex-direction: column;
}

section#section9 .mainSec9 .sec9-content {
  flex-direction: column;
}

header .container {
  flex-direction: column;
  padding: 20px 40px 20px 40px;
  text-align: center;
}

section#section1 .mainSec1 .titleSec1 h2 {
    font-size: 22.82px;
    line-height: 30.7px;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 {
    width: 100%;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 p {
    font-size: 17px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title {
    width: 100%;
    margin-bottom: 40px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title p {
    font-size: 18px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title h2 {
    font-size: 28px;
    line-height: 33px;
}

section#section3 .mainSec3 .FormDv-Sec3 p {
    width: 70%;
}

section#section3 .mainSec3 .FormDv-Sec3 .video-Sec3 h5 {
    width: 90%;
}

section#section4 .mainSec4 .titleSec4 h2 {
    font-size: 25px;
    line-height: 34px;
}

.Grid-Sec4-btn-cta p {
    text-align: center;
    margin-bottom: 52px;
}

.Grid-Sec4-btn-cta h5 {
    width: 80%;
    margin: 0 auto;
    margin-top: 19px;
    margin-bottom: 72px;
}

section#section5 .mainSec5 .titleSec5 h2 {
    font-size: 19px;
    line-height: 31px;
    width: 61%;
    scale: 1.4;
}

section#section5 .mainSec5 .titleSec5 h2 br {
    /* display: none; */
    /* margin: 31px; */
}

section#section5 .mainSec5 .titleSec5 span {
    font-size: 30px;
    line-height: 31px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card .img-Sec5 {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 {
    width: 100%;
    text-align: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 h3 {
    text-align: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 p {
    text-align: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card {
}

.txt-img-Sec5-card.sec5-card-reverse .txt-Sec5 {
    justify-content: center;
    align-items: center;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta h5 {
    width: 100%;
    margin: 46px 0 52px 0px;
}

section#section6 .mainSec6 .titleSec6 h2 {
    width: 100%;
    font-size: 45px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card {
    max-width: 343.19px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h4 {
    font-size: 17px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-description p {
    font-size: 17px;
    font-weight: 300;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h3 {
    font-size: 33px;
    line-height: 33px;
}

section#section7 .mainSec7 .Sec7-title h2 {
    font-size: 40px;
    line-height: 52px;
}

.sec10-btn h4 {
    width: 90%;
}

section#section7 .container {
    width: auto;
}

.section7-para-profi-main .section7-para-profi-img img {
    width: -webkit-fill-available;
    border-radius: 31px;
}

.section7-para-profi-main .section7-para-profi-txt {
    padding: 55px 30px 30px 30px;
}

.section7-para-paci-main .section7-para-paci-txt {
    padding: 55px 30px 30px 30px;
}

.section7-para-paci-main .section7-para-paci-txt h3 {
    text-align: center;
}

.section7-para-profi-main .section7-para-profi-txt h3 {
    text-align: center;
}


.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr p {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    margin-top: 16px;
    text-align: center;
    scale: 1.2;
}


.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr p {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    margin-top: 16px;
    text-align: center;
    scale: 1.2;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2-btn a {
    margin: 60px 0 0px 0;
}

section#section3 {
    padding: 65px 0 65px 0;
}

section#section4 {
    padding-top: 65px;
}

section#section5 .mainSec5 .txt-img-Sec5-card .img-Sec5 img {
    margin-right: 0px;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta a {
    margin-bottom: 70px;
}

section#section6 {
    padding: 65px 0 75px 0px;
}

section#section7 {
    padding: 75px 0 65px 0;
}

.section7-para-paci-main .section7-para-paci-img img {
    width: -webkit-fill-available;
}

.divider-sec7-btn p {
    width: 80%;
    margin: 32px 0 32px 0;
}

section#section8 .Sec8-title h2 {
    margin-top: 65px;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 26px;
}

.slider-cards-sec8-progress-bar {
    width: 80%;
    margin: 0 auto;
}

.sec8-btn p {
    width: 90%;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left {
    width: 100%;
}

section#section9 .mainSec9 .sec9-content .sec9-img-right::after {
    left: 0;
    right: 0px;
    bottom: 0;
    top: 760px;
    display: block;
    height: 100vh;
    background-size: 90%;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left h4 {
    margin-top: 420px;
    text-align: center;
}

.sec9-btn {
    z-index: 999;
    position: relative;
    margin: 65px 0 65px 0;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left .sec9-for-dv h3 {
    color: #fff;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left .sec9-for-dv {
    justify-content: center;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left h2 {
    left: 0;
    text-align: center;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left p {
    left: 0;
    text-align: center;
    margin-bottom: 40px;
}

.sec8-btn a {
    margin-bottom: 80px;
}

section#section9 .container {
    max-width: 100%;
}

.slider-cards-sec8-wrapper {
    overflow: hidden;
}

.mainSec4 {
    overflow: hidden;
}

.mainSec10 {
    overflow: hidden;
}

.mainSec11 .sec11-title h2 {
    width: 100%;
    font-size: 38px;
    line-height: 49px;
    margin-bottom: 50px;
}

.sec11-title {
    margin: 0 0 0 0px;
}


.sec12-title h2 {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
}

.sec12-title p {
    width: 84%;
}

section#section12 {
    padding-bottom: 45px;
}

.sec13-title h2 {
    width: 89%;
    font-size: 31px;
    line-height: 38px;
}

.sec11-btn {
    margin: 10px 0 60px 0px;
}

.sec11-btn p {
    width: 90%;
    font-size: 16px;
}

section#section14 {
    padding: 90px 0 80px 0;
}

.sec14-faq-title h2 {
    text-align: center;
    font-size: 30px;
    line-height: 42px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 21px;
}

section#section13 {
    padding: 84px 0 90px 0;
}

section#section2 .mainSec2 .Video-txt-Sec2 .video-sec2 {
    width: 100%;
}
  

 
}


/* Tablets or iPad */
@media only screen and (min-width:480px) and (max-width: 768px) {
section#section1 .mainSec1 {
  flex-direction: column;
  margin-bottom: 45px;
  height: 962px;
  margin-bottom: 45px;
  background-position: center 19%;
  background-size: 170%;
}

section#section2 .mainSec2 .Video-txt-Sec2 {
  flex-direction: column;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 {
  flex-direction: column;
  padding: 47px 42px 47px 42px;
  margin-top: 60px;
}

section#section5 .mainSec5 .txt-img-Sec5-card {
  flex-direction: column;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.section7-para-profi-main {
  flex-direction: column;
}

.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr {
  flex-direction: column;
}

.section7-para-paci-main {
  flex-direction: column-reverse;
}

.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr {
  flex-direction: column;
}

section#section9 .mainSec9 .sec9-content {
  flex-direction: column;
}

header .container {
  flex-direction: column;
  padding: 20px 40px 20px 40px;
  text-align: center;
}

section#section1 .mainSec1 .titleSec1 h2 {
    font-size: 22.82px;
    line-height: 30.7px;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 {
    width: 100%;
}

section#section2 .mainSec2 .Video-txt-Sec2 .desc-miolink-content-Sec2 p {
    font-size: 17px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title {
    width: 100%;
    margin-bottom: 40px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title p {
    font-size: 18px;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2 .cta-miolink-main-content-sec2-title h2 {
    font-size: 28px;
    line-height: 33px;
}

section#section3 .mainSec3 .FormDv-Sec3 p {
    width: 70%;
}

section#section3 .mainSec3 .FormDv-Sec3 .video-Sec3 h5 {
    width: 90%;
}

section#section4 .mainSec4 .titleSec4 h2 {
    font-size: 25px;
    line-height: 34px;
}

.Grid-Sec4-btn-cta p {
    text-align: center;
    margin-bottom: 52px;
}

.Grid-Sec4-btn-cta h5 {
    width: 80%;
}

section#section5 .mainSec5 .titleSec5 h2 {
    font-size: 19px;
    line-height: 31px;
    width: 61%;
    scale: 1.4;
}

section#section5 .mainSec5 .titleSec5 h2 br {
    /* display: none; */
    /* margin: 31px; */
}

section#section5 .mainSec5 .titleSec5 span {
    font-size: 30px;
    line-height: 31px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card .img-Sec5 {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 {
    width: 100%;
    text-align: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 h3 {
    text-align: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card .txt-Sec5 p {
    text-align: center;
}

section#section5 .mainSec5 .txt-img-Sec5-card {
}

.txt-img-Sec5-card.sec5-card-reverse .txt-Sec5 {
    justify-content: center;
    align-items: center;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta h5 {
    width: 100%;
    margin: 46px 0 52px 0px;
}

section#section6 .mainSec6 .titleSec6 h2 {
    width: 100%;
    font-size: 45px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card {
    max-width: 343.19px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h4 {
    font-size: 17px;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-description p {
    font-size: 17px;
    font-weight: 300;
}

section#section6 .mainSec6 .Grid-Sec6 .Grid-Sec6-cards-main .Grid-Sec6-card .Grid-Sec6-card-content h3 {
    font-size: 33px;
    line-height: 33px;
}

section#section7 .mainSec7 .Sec7-title h2 {
    font-size: 40px;
    line-height: 52px;
}

.sec10-btn h4 {
    width: 90%;
}

section#section7 .container {
    width: auto;
}

.section7-para-profi-main .section7-para-profi-img img {
    width: -webkit-fill-available;
    border-radius: 31px;
}

.section7-para-profi-main .section7-para-profi-txt {
    padding: 55px 30px 30px 30px;
}

.section7-para-paci-main .section7-para-paci-txt {
    padding: 55px 30px 30px 30px;
}

.section7-para-paci-main .section7-para-paci-txt h3 {
    text-align: center;
}

.section7-para-profi-main .section7-para-profi-txt h3 {
    text-align: center;
}


.section7-para-paci-main .section7-para-paci-txt .section7-para-paci-descr p {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    margin-top: 16px;
    text-align: center;
    scale: 1.2;
}


.section7-para-profi-main .section7-para-profi-txt .section7-para-profi-descr p {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    margin-top: 16px;
    text-align: center;
    scale: 1.2;
}

.cta-miolink-content-Sec2 .cta-miolink-main-content-sec2-btn a {
    margin: 60px 0 0px 0;
}

section#section3 {
    padding: 65px 0 65px 0;
}

section#section4 {
    padding-top: 65px;
}

section#section5 .mainSec5 .txt-img-Sec5-card .img-Sec5 img {
    margin-right: 0px;
}

section#section5 .mainSec5 .Grid-Sec5-btn-cta a {
    margin-bottom: 70px;
}

section#section6 {
    padding: 65px 0 75px 0px;
}

section#section7 {
    padding: 75px 0 65px 0;
}

.section7-para-paci-main .section7-para-paci-img img {
    width: -webkit-fill-available;
}

.divider-sec7-btn p {
    width: 80%;
    margin: 32px 0 32px 0;
}

section#section8 .Sec8-title h2 {
    margin-top: 65px;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 26px;
}

.slider-cards-sec8-progress-bar {
    width: 80%;
    margin: 0 auto;
}

.sec8-btn p {
    width: 90%;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left {
    width: 100%;
}

section#section9 .mainSec9 .sec9-content .sec9-img-right::after {
    left: 0;
    right: 0px;
    bottom: 0;
    top: 760px;
    display: block;
    height: 100vh;
    background-size: 90%;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left h4 {
    margin-top: 420px;
    text-align: center;
}

.sec9-btn {
    z-index: 999;
    position: relative;
    margin: 65px 0 65px 0;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left .sec9-for-dv h3 {
    color: #fff;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left .sec9-for-dv {
    justify-content: center;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left h2 {
    left: 0;
    text-align: center;
}

section#section9 .mainSec9 .sec9-content .sec9-texts-left p {
    left: 0;
    text-align: center;
    margin-bottom: 40px;
}

.sec8-btn a {
    margin-bottom: 80px;
}

section#section9 .container {
    max-width: 100%;
}

.slider-cards-sec8-wrapper {
    overflow: hidden;
}

.mainSec4 {
    overflow: hidden;
}

.mainSec10 {
    overflow: hidden;
}

.mainSec11 .sec11-title h2 {
    width: 100%;
    font-size: 38px;
    line-height: 49px;
}

.sec11-title {
    margin: 0 0 0 0px;
}


.sec12-title h2 {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
}

.sec12-title p {
    width: 84%;
}

section#section12 {
    padding-bottom: 45px;
}

.sec13-title h2 {
    width: 89%;
    font-size: 31px;
    line-height: 38px;
}

.sec11-btn {
    margin: 10px 0 60px 0px;
}

.sec11-btn p {
    width: 90%;
    font-size: 16px;
}

section#section14 {
    padding: 90px 0 80px 0;
}

.sec14-faq-title h2 {
    text-align: center;
    font-size: 30px;
    line-height: 42px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 21px;
}

section#section13 {
    padding: 84px 0 90px 0;
}

section#section2 .mainSec2 .Video-txt-Sec2 .video-sec2 {
    width: 100%;
}
   


}


/* For Laptop or small-size screen */
@media only screen and (min-width:768px) and (max-width: 1024px) {

  

}


/* For Desktop or large-size screen */
@media only screen and (min-width:1024px) and (max-width: 1200px) {

   
  
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/


 .sec2video-container {
            width: 100%;
            max-width: 586px;
            height: 329.62px;
            border-radius: 22px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            background: #1D1D1F;
            cursor: pointer;
        }

        .sec2video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 22px;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .sec2video-container:hover .sec2video-thumbnail {
            transform: scale(1.05);
            filter: brightness(0.7);
        }

        .sec2video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .sec2video-play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #1D1D1F;
            margin-left: 5px;
        }

        .sec2video-container:hover .sec2video-play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: #fff;
        }

        .sec2video-container.sec2video-playing .sec2video-thumbnail,
        .sec2video-container.sec2video-playing .sec2video-play-button {
            display: none;
        }

        .sec2video-container iframe {
            display: none;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 22px;
        }

        .sec2video-container.sec2video-playing iframe {
            display: block;
        }

        /* ========== OVERLAYS PARA ESCONDER BRANDING ========== */
        
        /* Overlay para esconder "Assistir no YouTube" (canto superior direito) */
        .sec2video-overlay-top {
            display: none;
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 60px;
            background: transparent;
            z-index: 10;
            pointer-events: auto;
            border-radius: 0 22px 0 0;
        }

        /* Overlay para esconder logo YouTube (canto inferior direito) */
        .sec2video-overlay-bottom {
            display: none;
            position: absolute;
            bottom: 40px;
            right: 10px;
            width: 120px;
            height: 30px;
            background: transparent;
            z-index: 10;
            pointer-events: auto;
        }

        /* Mostra overlays quando vídeo está ativo */
        .sec2video-container.sec2video-playing .sec2video-overlay-top,
        .sec2video-container.sec2video-playing .sec2video-overlay-bottom {
            display: block;
        }