body{
    margin: 0;
    padding: 0;
    background: #000000;
}

/* ============================================= */
/* MAIN NAVIGATION                               */
/* ============================================= */

.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    
    
    transition: background 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* Hamburger Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger animation when open */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }

    .nav-links li a {
        font-size: 22px;
        padding: 18px 30px;
        display: block;
        text-align: center;
    }
}

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%);
        }

        /* setas prev/next — posicionamento via .slider-cards-sec8-nav-buttons */

        /* 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%;
            /* empurra as setas para fora do container de cards */
            left: -80px;
            right: -80px;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
            padding: 0;
        }

        .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 {
                /* no tablet não tem espaço lateral — volta para dentro */
                left: 0;
                right: 0;
                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;
  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 79px;
    text-align: center;
}

section#section8 .Sec8-title h2 {
    background: linear-gradient(to right, #7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    line-height: 56px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin: 0 auto;
    margin-top: 124px;
    width: 85%;
    text-align: center;
}

.Sec9-title h2 {
    color:white;
    font-size: 35px;
    
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    margin: 0px auto;
    margin-top:0px;
    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;
}



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;
        }

/* ==========================================================================
   CSS ADICIONAL - HERO SECTION (MULHER NA ESQUERDA, TEXTO NA DIREITA)
   ========================================================================== */

.hero-section {
    background: #000;
    color: #fff;
    padding-top: 0px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.hero-section * {
    box-sizing: border-box;
}

/* Efeito de brilho radial atrás da mulher */


.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.container-hero {
    max-width: 1300px;
    margin:0 auto;
}

.hero-image-side {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.hero-image-side img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Efeito de fade nas bordas para mesclar com o fundo preto */
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 95%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 95%);
}

.img-hero {
    display: block;
}

.hero-text-side {
    flex: 1;
    padding-bottom: 20px;
    position: relative;
}

.hero-badge {
    position: absolute;
    top: -60px;
    right: 20px;
    background: #1D1D1F;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    box-shadow: 0 0 15px rgba(0, 117, 226, 0.3);
}

.hero-text-side h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #7BBEC1 0%, #0075E2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-side p {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #DADADA;
    font-weight: 200;
    margin-bottom: 40px;
    max-width: 530px;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #7BBEC1 0%, #004D96 50%, #0075E2 100%);
    background-size: 200% auto;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 117, 226, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 117, 226, 0.4);
    background-position: right center;
}

/* Feature Bar na base da Hero */
.hero-features-bar {
    background: #090B18;
    padding: 35px 0;
    margin-top: 0px;
    position: relative;
    z-index: 2;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-feature img {
    width: auto;    
   
    filter: brightness(1.1);
}

.hero-feature p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #DADADA;
    font-weight: 300;
    line-height: 1.3;
}

/* Responsividade Full */
@media (max-width: 1100px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text-side h1 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image-side {
        width: 80%;
        margin: 0 auto;
    }
    
    .hero-text-side p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badge {
        position: static;
        margin: 0 auto 30px;
    }
    
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-top: 40px;
    }
    
    .hero-image-side {
        width: 100%;
    }
    
    .hero-text-side h1 {
        font-size: 26px;
    }
    
    .hero-text-side p {
        font-size: 17px;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-feature {
        justify-content: flex-start;
    }

    .hero-features-bar {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   FIM CSS ADICIONAL - HERO SECTION

/* ==========================================================================
   CSS ADICIONAL - MENU NAV (ABSOLUTE SOBRE HERO)
   ========================================================================== */

.nav-hero-parent {
    position: relative;
    width: 100%;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
    padding-bottom: 15px;
}

.container-menu {
    max-width: 1200px;
    margin:0 auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 13px; /* Diminuído de 14px */
    font-weight: 400;
    padding: 10px 15px; /* Adicionado padding */
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7BBEC1;
}

.mobile-menu-header {
    display: none;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Responsividade do Menu */
@media (max-width: 960px) {
    .main-header {
        padding: 20px 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 50px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-close {
        width: 32px;
        height: 32px;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-close span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
    }

    .mobile-close span:nth-child(1) { transform: rotate(45deg); }
    .mobile-close span:nth-child(2) { transform: rotate(-45deg); }

    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Ocupa tela toda */
        height: 100vh;
        background: rgba(0, 0, 0, 0.85); /* Fundo escuro semi-transparente */
        backdrop-filter: blur(15px); /* Efeito GLASS */
        -webkit-backdrop-filter: blur(15px);
        padding: 40px 30px;
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 2000;
        visibility: hidden;
    }
    
    .nav-menu.active {
        right: 0;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 18px; /* Diminuído de 24px */
        font-family: "Montserrat", sans-serif;
        font-weight: 300;
        padding: 20px 0; /* Aumentado padding para melhor toque */
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
        transition-delay: calc(var(--i) * 0.1s);
    }

    .nav-menu.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ==========================================================================
   FIM CSS ADICIONAL - MENU NAV
   ========================================================================== */


#section8 .slider-cards-sec8-slide {
    max-width: 307px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #1D1D1F;
    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;
    padding:40px
}

.plus-btn {
    margin-top: 20px;
    display: block;
    z-index: 9999;
}

.plus-btn img {
   width:100%;
}


#section8 .slider-cards-sec8-slide-content {
    width: 100%;
    max-width: 100%;
}


#section8 #prevBtn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #1d1d1d;
    color: #ffffff;
}

#section8 #nextBtn {
    background: white!important;
}

#section-sliders {
    background-color: #323E62;
    padding: 60px 0;
}

#section-sliders .slider-cards-sec8-slide {
    max-width: 307px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #3A4668;
    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;
    padding:20px 20px 40px 20px;
}

#section-sliders .slider-cards-sec8-slide-content {
 max-width: 100%!important;;
}

.nao-indicado {
  background: #000;
  color: #ccc;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.nao-indicado .container {
  max-width: 900px;
  margin: 0 auto;
}

.nao-indicado .header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.nao-indicado .icon {
  font-size: 22px;
  color: #aaa;
}

.nao-indicado h2 {
  font-size: 18px;
  font-weight: 400;
  color: #ddd;
}

.nao-indicado h2 strong {
  font-weight: 600;
  color: #fff;
}

.nao-indicado ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nao-indicado li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #aaa;
}

.nao-indicado li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
}

.nao-indicado li strong {
  color: #fff;
  font-weight: 600;
}

.nao-indicado .divider {
  margin-top: 40px;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    #2a2a2a,
    transparent
  );
}

/* ============================================= */
/* PRO SELECTION SECTION (#pro-duo)            */
/* ============================================= */

.pro-selection-section {
    background-color: #fcfcfc;
    padding: 100px 0;
    color: #1d1d1f;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.pro-selection-header {
    text-align: center;
    margin-bottom: 60px;
}

.pro-selection-header h2 {
    font-size: 35px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
}

.pro-selection-header h2 span {
    font-weight: 800;
}

.pro-selection-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.pro-selection-display {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    background: radial-gradient(circle, rgba(0,117,226,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.main-product-image img {
    width: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.product-tabs {
    display: flex;
    gap: 20px;
}

.product-tab {
   /*width: 110px;
    height: 140px;*/
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
}

/*.product-tab:hover {
    transform: translateY(-5px);
    border-color: #ddd;
}*/

.product-tab img {
    width: 80px;
    height: auto;
    margin-bottom: 8px;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.product-tab p {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    text-align: center;
    line-height: 1.2;
}

.product-tab span {
    display: block;
    font-weight: 700;
}

/*.product-tab.active {
    border-color: #0075E2;
    background: #0075E2;
    box-shadow: 0 12px 30px rgba(0,117,226,0.4);
}*/

.product-tab.active img {
    opacity: 1;
    filter: brightness(1.2);
    transform: scale(1.1);
}

.product-tab.active p {
    color: #fff;
}

.pro-selection-content {
    width: 45%;
}

.version-content {
    display: none;
    animation: slideUpFade 0.6s forwards;
}

.version-content.active {
    display: block;
}

@keyframes slideUpFade {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.version-header h3 {
    font-size: 30px;
    font-weight: 300;
    color: #1d1d1f;
    margin-bottom: 25px;
}

.version-header h3 span {
    font-weight: 800;
}

/* PRO DUO dynamic color matching image */
#pro-duo-content .version-header h3 {
    color: #000;
}

.version-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.version-features li {
    font-size: 14px;
    font-weight: 300;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.version-features li span {
    color: #000;
    font-weight: 900;
    font-size: 20px;
}

.version-dimensions {
    padding: 0px 0 20px;
    border-bottom: 1px solid #bbb;
    margin-bottom: 20px;
    height:25px
}

.version-dimensions p {
    font-size: 15px;
    color: #000;
}

.needs-section h4 {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.need-item {
    text-align: left;
}

.need-icon {
    width: auto;
    height: auto;
    margin: 0 0 12px -5px; /* Slight negative margin if the image has internal whitespace padding */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.need-icon img {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.need-item p {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    font-weight: 400;
}

.pro-selection-cta {
    text-align: center;
    margin-top: 40px;
}

.master-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0075E2 0%, #00bcff 100%);
    color: #fff;
    padding: 20px 55px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 12px 30px rgba(0,117,226,0.3);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.master-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,117,226,0.5);
    filter: brightness(1.1);
}

/* Responseiveness */
@media (max-width: 992px) {
    .pro-selection-section {
        padding: 60px 0;
    }
    .pro-selection-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .pro-selection-display, .pro-selection-content {
        width: 100%;
        max-width: 650px;
    }
    .pro-selection-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .main-product-image {
        height: 250px;
    }
    .pro-selection-header h2 {
        font-size: 26px;
    }
    .version-header h3 {
        font-size: 28px;
    }
    .needs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .need-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        background: #fff;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .need-icon {
       margin: 0;
       width: 48px;
       height: 48px;
       flex-shrink: 0;
    }
    .need-icon img {
        width: 24px;
        height: 24px;
    }
    .master-btn {
        width: 80%;
        padding: 18px 20px;
        box-sizing: border-box;
    }
}

/* ============================================= */
/* SHORTS SECTION (#shorts)                     */
/* ============================================= */

.shorts-section {
    background: #000;
    padding: 80px 0 60px;
    overflow: hidden;
}

.shorts-header {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.shorts-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}

.shorts-header h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.3;
    background: linear-gradient(to right, #7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    
}

/* Override slide styles for shorts */
.shorts-section .slider-cards-sec8-track {
    display: flex;
    align-items: flex-start;
}

.shorts-section .slider-cards-sec8-slide {
    background: none;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    overflow: visible;
    vertical-align: top;
}

.shorts-section .slider-cards-sec8-wrapper {
    padding: 40px 0;
}

.shorts-section .shorts-overflow {
    -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) 70%,
        transparent 100%);
}

.shorts-video-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    background: #1d1d1f;
    cursor: pointer;
}

.shorts-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    border-radius: 20px;
}


.shorts-video-link {
    display: block;
    width: 100%;
    position: relative;
    text-decoration: none;
}

.shorts-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
    object-fit: cover;
    aspect-ratio: 9/16;
}

.shorts-video-link:hover .shorts-thumbnail {
    transform: scale(1.03);
    filter: brightness(0.85);
}

.shorts-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.shorts-video-link:hover .shorts-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

.shorts-info {
    text-align: center;
    padding: 20px 10px 0;
    width: 100%;
    min-height: 80px; /* Alinha o rodapé dos cards independentemente do texto */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.shorts-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #DADADA;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 5px;
    line-height: 1.3;
}

.shorts-info p {
    font-size: 14px;
    font-weight: 300;
    color: #999;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

/* Nav buttons style for shorts dark bg */
.shorts-section .slider-cards-sec8-nav-btn {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.shorts-section .slider-cards-sec8-nav-btn:hover {
    background: rgba(255,255,255,0.2);
}

.btn-contact-2 {
    
    width: 100%;
    margin: 40px auto!important;
    max-width: 324px!important;
    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;

}

@media (max-width: 768px) {
    .shorts-header h2 {
        font-size: 26px;
    }
    .shorts-section .slider-cards-sec8-slide {
        max-width: 230px;
    }
}

@media (max-width: 480px) {
    .shorts-section {
        padding: 50px 0 40px;
    }
    .shorts-header h2 {
        font-size: 22px;
    }
    .shorts-section .slider-cards-sec8-slide {
        max-width: 200px;
    }
    .shorts-info h4 {
        font-size: 14px;
    }
    .shorts-info p {
        font-size: 12px;
    }
}

/* ============================================= */
/* CLINICAL PRACTICE SECTION (#pratica-clinica) */
/* ============================================= */

#pratica-clinica {
    width: 100%;
    background-color: white;
}
.clinical-practice-container {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
}

.clinical-title {
    font-size: 38px;
    font-weight: 300;
    background: linear-gradient(to right, #7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}

.clinical-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.clinical-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profession-col {
    align-items: flex-end;
}

.patient-col {
    align-items: flex-start;
}

.clinical-img-wrapper {
    width: 361px;
    height: 375px;
    margin-bottom: -1px; /* Align with text better */
    display: flex;
    align-items: flex-end;
}

.profession-col .clinical-img-wrapper {
    justify-content: flex-end;
}

.patient-col .clinical-img-wrapper {
    justify-content: flex-start;
}

.clinical-img-wrapper img {
    width: 100%;
    object-fit: contain;
    
}

.mulher-left {
    max-width: 261px;
}

.clinical-col h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 30px 0;
    font-family: 'Roboto', sans-serif;
}

.clinical-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.clinical-list li {
    padding: 0px 0;
    position: relative;
    font-size: 17px;
    color: #1D1D1F;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    min-height: 54px;
}

.clinical-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #73B9C3, #0377E1);
}

.clinical-list li:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #73B9C3, #0377E1);
}
/* Professional Col: Text Left, Icon Right */
.list-right li {
    justify-content: flex-end;
    text-align: right;
}

.list-right .clinical-icon {
    margin-left: 15px;
    order: 2;
}

/* Patient Col: Icon Left, Text Right */
.list-left li {
    justify-content: flex-start;
    text-align: left;
}

.list-left .clinical-icon {
    margin-right: 15px;
    order: -1;
}

.clinical-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clinical-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clinical-footer {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 60px auto 30px;
    font-weight: 400;
    line-height: 1.5;
}

.clinical-btn {
    display: inline-block;
    padding: 16px 45px;
    background-color: #2b8df1;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 141, 241, 0.4);
}

.clinical-btn:hover {
    background-color: #1a76d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 141, 241, 0.5);
}

@media (max-width: 991px) {
    .clinical-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
    .clinical-title {
        font-size: 30px;
    }
    .clinical-col {
        width: 100%;
        max-width: 500px;
    }

    .patient-col img {
     width:80%;
}
}

@media (max-width: 576px) {
    .clinical-img-wrapper {
        width: 100%;
        height: 300px;
    }
    .clinical-col h3 {
        font-size: 22px;
    }
    .clinical-list li {
        font-size: 15px;
    }

    .patient-col img {
     width:100%;
   }

    .clinical-grid {
        flex-direction: column;
        gap: 120px;
        align-items: center;
    }

    #section8 p {
        max-width: 200px;
    }
}

/* ============================================= */
/* RESEARCH & INNOVATION SECTION (#research)     */
/* ============================================= */

.research-section {
    background: linear-gradient(to top, #333F64, #000);
    padding: 100px 20px;
    color: #fff;
    overflow: hidden;
}

.research-container {
    max-width: 1200px;
    margin: 0 auto;
}

.research-main-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #7BBEC1, #0075E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.bold {
    font-weight: 600;
}

.footer-title {
    margin: 110px auto 35px;
    display: block;
    font-size: 35px;
    max-width: 634px;
    
    width: 100%;
    padding: 0 10px;
}

.research-content-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.research-text-col {
    flex: 1;
    max-width: 480px;
}

.research-text-col h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.research-text-col p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.research-video-col {
    flex: 1.5;
    max-width: 650px;
}

.research-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.research-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.research-video-wrapper:hover img {
    transform: scale(1.05);
}

.research-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.research-video-wrapper:hover .research-play-btn {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.research-play-btn img {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

@media (max-width: 991px) {
    .research-content-grid {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .research-text-col {
        max-width: 100%;
    }
    .research-main-title {
        font-size: 34px;
        margin-bottom: 60px;
    }
    .research-video-col {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .research-main-title {
        font-size: 28px;
    }
    .research-text-col h3 {
        font-size: 21px;
    }
    .research-text-col p {
        font-size: 16px;
    }
    .research-play-btn {
        width: 60px;
        height: 60px;
    }
    .research-play-btn img {
        width: 18px;
        height: 18px;
    }
}


#section8 .slider-next-btn {
 background:white;
}

#section8 .slider-prev-btn {
 background:#1d1d1d;
}

#shorts .slider-next-btn {
    background-color: #000;
    border: 1px solid black;
}

#shorts .slider-prev-btn {
    background-color: #b2b2b2;
}

#section-sliders .slider-next-btn {
    background-color: white;
}


button.slider-cards-sec8-nav-btn.slider-next-btn {
    background: #000!important;
}

.contact {
    width: 100%;
    background:#2089FF;
    padding:76px 0 97px;
}

.contact h1 {
    font-size: 35px;
    font-weight: 300;
    color:white;
    text-align: center;
}

.contact h1 strong {
    font-weight: 800;
}

.contact p {
    color:white;
    margin: 25px auto 0;
    text-align: center;
}


.FormDv-Sec1 {
    background: #2089ff;
    border-radius: 12px;
    width: 100%;
    max-width: 315px;
    height: fit-content;
    padding: 25px 20px 25px 20px;
    margin:0 auto;

}

#rd-button-mh3gooh4.bricks--component-button {
    background-color: #ffffff!important;
    color: #2089ff!important;
}

#rd-form-mh3googz .bricks-form__input {
    color: #dadada;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    background-color: #2089ff!important;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-style: solid;
    border-color: #fff!important;
    border-radius: 6px;
    border-width: 1px;
}

#rd-form-mh3googz .with-select-flags > .phone-input-group > .phone-country {
    border: 1px solid #fff!important;
}

input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"] {
    border: 2px solid #ffffff !important;

    background-color: #2089ff !important;
}

input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"]:focus {
    box-shadow: none!important;
    border-color: #ffffff !important;
}
input.js-field-cf_concordo_em_receber_contato_e_comunicacoes_da_miotec[type="checkbox"]:checked {
    background-color: #161616 !important;
    border-color: #ffffff !important;
}

input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"] {
    box-shadow: none!important;
    border-color: #ffffff !important;
    background-color: #2089ff!important;
}

input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"]:focus {

    border: 2px solid white !important;
    background-color: #2089ff !important;
}

input.js-field-cf_concordo_com_politica_e_termos[type="checkbox"]:checked {

    border: 2px solid white !important;
    background-color: #0e0e0e !important;
}

input::placeholder {
  color: white;
  opacity: 1; 
}


input:-ms-input-placeholder {
  color: white;
}