﻿:root {
    --color-y-Primary: #FFAF1F;
    --font-system: Open Sans, sans-serif;
    --max-width-page: 1200px;
}

body {
    font-family: var(--font-system) !important;
    color: #fff;
    line-height: normal !important;
}

.blur {
    filter: blur(1.5rem);
}

.banner {
    background-image: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, black 50%), url(../images/back_banner.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 80px 20px 40px 20px; /* espaçamento interno adaptável */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.banner-img {
    width: 100%;
    max-width: 710px;
    height: auto;
    position: relative;
    z-index: 2;
    transform: translateY(-50px); /* "salta" para fora levemente */
}

/* Responsivo para tablets e celulares */
@media (max-width: 1024px) {
    .banner-img {
        max-width: 600px;
        transform: translateY(-30px);
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 60px 16px 30px;
    }

    .banner-img {
        max-width: 90%;
        transform: translateY(-20px);
    }    
}

@media (max-width: 480px) {
    .banner {
        padding: 40px 12px 20px;
    }

    .banner-img {
        max-width: 95%;
        transform: translateY(-10px);
    }
}


.img-feature {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.second-section {
    background: #161617;
    padding: 120px 20px;
    text-align: center;
}

.plans-section {
    background-image: linear-gradient(90deg, #152D47 0%, rgba(21, 45, 71, 0.00) 95.67%), url(../images/back_plans.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding: 100px 0;
}


.footer-id {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: #161617;
    width: 100%;
    text-align: center;
}

.text-container-footer {
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
}

.text-footer {
    color: #FFAF1E;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtext-footer {
    color: #D1D5DB;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-buttons {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 600px;
    width: 100%;
    /* align-content: center; */
    align-items: center;
}

/* Responsivo para tablets */
@media (max-width: 768px) {
    .text-footer {
        font-size: 32px;
    }

    .subtext-footer {
        font-size: 16px;
    }
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    .text-footer {
        font-size: 26px;
    }

    .subtext-footer {
        font-size: 15px;
    }

    .footer-buttons {
        flex-direction: column;
        gap: 20px;
    }
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tab-button {
    background-color: transparent;
    border: none;
    color: #ccc;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

    .tab-button.active {
        color: #FFD700;
        border-color: #FFD700;
        font-weight: bold;
    }

.tab-content {
    /*display: none;*/
    animation: fadeIn 0.3s ease-in-out;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
}

    .feature h4 {
        margin-top: 0;
        color: #fff;
    }

    .feature p {
        color: #ccc;
        font-size: 14px;
    }

.feature-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFA500;
}

@media (max-width: 600px) {
    .tab-button {
        flex: 1 1 100%;
        text-align: center;
    }
}

.title-version {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.subtitle-version {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    max-width: 900px;
}

.text-versions {
    color: #FFAF1F;
    text-align: center;
    font-size: 36.044px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 0 50px 0;
}

.flex-button {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    width: 50%;
    flex-direction: row;
    align-items: center;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .title-version {
        font-size: 32px;
    }

    .subtitle-version {
        font-size: 18px;
        padding: 0 10px;
    }

    .flex-button {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .button {
        width: 100%;
        max-width: 280px;
    }

    .text-versions {
        font-size: 28px;
    }

  
}

.bold {
    font-weight: 700;
}

.text-orange {
    color: #FFAF1F;
}

.section-system {
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 20px;
}

.text-align {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.abas-versions {
    display: flex;
    justify-content: center;
}

.nav-site {
    display: flex;
    border-radius: 5px 5px 0px 0px;
    border-bottom: 4px solid #D6D6D6;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    flex-wrap: nowrap;
    width: 814px;
}

    .nav-site > li {
        flex: 1;
        min-width: 120px;
        max-width: 100%;
        width: auto;
        text-align: center;
        top: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

        .nav-site > li > a:hover {
            border-radius: 5px 5px 0px 0px;
            background: transparent;
            color: #fff !important;
        }

        .nav-site > li.active > a, .nav-site > li.active > a:focus, .nav-site > li.active > a:hover {
            color: var(--color-y-Primary) !important;
            font-weight: 600;
            border-bottom: 4px solid var(--color-y-Primary);
            background: transparent; 
        }

        .nav-site > li > a {
            color: #6B7280;
            font-size: 16px;
            font-weight: 400;
            line-height: normal;
            letter-spacing: -0.048px;
        }



.grid-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-placeholder {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #222;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.10), 0px 2px 4px -2px rgba(0, 0, 0, 0.10);
    display: flex;
    padding: 9px;
    flex-direction: column;
    align-items: flex-start;
    color: #FFAF1F;
}

.feature-text h4 {
    margin: 0 0 8px;
    color: #FFF;
    text-align: start;
    font-style: normal;
    font-weight: 700;
    line-height: 33.792px;
    letter-spacing: -0.563px;
}

.feature-text p {
    color: #D9D9D9;
    font-style: normal;
    font-weight: 400;
    line-height: 27.033px; /* 135.167% */
    letter-spacing: -0.6px;
    text-align: start;
}

@media (max-width: 480px) {
    .feature-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-placeholder {
        margin-bottom: 10px;
    }
}

.section-download {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #161617;
    padding: 0 0 120px 0;
    overflow: hidden;
}

.download-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
}


.button-flex-video {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    width: 30%;
    flex-direction: row;
    align-items: center;
}

/* Container principal */
.job-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
    border-radius: 25px;
    background: #fff;
    margin-top: 25px;
    max-width: var(--max-width-page);
}

/* Imagem do produto */
.job-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

    .job-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px; /* Opcional: bordas arredondadas */
    }

/* Conteúdo do produto */
.job-content {
    flex: 1;
    padding: 10px;
    text-align: center;
}

/* Título e subtítulo */
.job-title {
    font-size: 2.5em;
    margin: 0;
    color: #3A3A3A;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3px;
}

.job-subtitle {
    font-size: 1.2em;
    color: #3A3A3A;
    margin: 15px 0 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Preços */
.job-price {
    font-size: 1.3em;
    margin: 25px 0;
}

.old-price {
    color: #0B0B0B;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 0.72px;
    text-decoration: line-through;
}

.new-price {
    color: #FFAF1F;
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 1.95px;
}

/* Botão de compra */
.buy-button {
    transition: background-color 0.3s ease;
    width: 244px;
    height: 50px;
    border-radius: 100px;
    border: 1.629px solid var(--White, #FFF);
    background: #FFAF1F;
    box-shadow: 0px 0px 4.343px 0px #FFAF1F;
    font-size: 1.2em;
}

    .buy-button:hover {
        background-color: #E69400;
    }


.fundo {
    height: fit-content;
    /*padding-bottom: 5%;*/
}



.logoBlack {
    padding-top: 7%;
    max-width: 100%;
}

/* Estilos do contador */
.countdown-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: #333;
}

.countdown-header {
    margin-top: 50px;
    margin-bottom: 32px;
    text-align: center;
    font-family: var(--font-system);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
}

.countdown-box {
    background-color: #333;
    color: #fff;
    padding: 15px 5px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

    .countdown-box span {
        display: block;
        font-size: 42px;
        font-weight: bold;
    }

.label {
    font-size: 16px;
    font-weight: normal;
    color: #ccc;
}


.card-video {
    position: relative;
    width: auto;
    /*height: 100%;*/
    height: 275px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border-radius: 15px;
}

    .card-video.graniteslab {
        background-image: url('../images/graniteslabs.png');
    }

    .card-video.infinitystone {
        background-image: url('../images/infinitystone.png');
    }

    .card-video.tenesse {
        background-image: url('../images/tenesse.png');
    }

/* Estilos da barra inferior */
.bottom-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor preta com opacidade de 0.5 */
    display: flex;
    align-items: center;
    padding: 15px;
}

/* Estilos da logo */
.logo {
    width: 50px; /* Ajuste o tamanho conforme necessário */
    height: 50px;
    background-color: #fff; /* Exemplo de cor de fundo para a logo */
    margin-right: 15px;
    border-radius: 5px; /* Tornando a logo quadrada */
    background-size: cover;
    background-position: center;
}

    .logo.graniteslab {
        background-image: url('../images/logograniteslabs.png');
    }

    .logo.infinitystone {
        background-image: url('../images/logoinfinity.png');
    }

    .logo.tenesse {
        background-image: url('../images/logotenesse.png');
    }

/* Imagem centralizada e animada */
.play-button {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; /* Tamanho do ícone de play, ajuste conforme necessário */
    height: 60px;
    cursor: pointer;
    font-size: 60px;
    color: gray;
    background-color: #fff;
    border-radius: 100%;
}

    /* Efeito hover para mudar a cor do botão para branco */
    .play-button:hover {
        color: #fff;
        background-color: gray;
    }

/* Estilos do título e subtítulo */
.title-card-video {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-align: start;
}

.subtitle-card-video {
    color: #fff;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}


.areaBlack01 {
    /*background-image: url(../images/bk01.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: 70rem;
}

.areaBlack02 {
    padding-left: 5%;
    padding-top: 2%;
}

.areaBlack03 {
    padding-left: 5%;
    padding-top: 1%;
}

.areaBlack04 {
    padding-top: 8%;
    text-align: center;
}




.subTitles {
    font-size: 21px;
    font-family: var(--font-system);
    margin-top: 2%;
}

.areaCinza01 {
    background-image: url(../images/bk02.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: 900px;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
}

.areaCinza02 {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}

.linha {
    width: 95%;
    background: -webkit-gradient(linear,0 0,100% 0,from(#FFB226),to(#FFB226),color-stop(100%,#000));
    height: 1px;
    color: #FFB226;
    display: flex;
    gap: 12%;
    font-size: 21px;
    font-family: var(--font-system);
    padding-left: 16%;
}

.cardCar {
    width: 100%;
    height: 560px;
    border-radius: 15px;
    text-align: center;
    padding: 10%;
    color: white;
}

    .cardCar.back01 {
        background-image: url(../images/01.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .cardCar.back02 {
        background-image: url(../images/02.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .cardCar.back03 {
        background-image: url(../images/03.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

.areaCardsApp {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 12%;
    text-align: center;
}




/* Container principal */
.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: var(--max-width-page);
    margin: auto;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 25px;
}

/* Lado esquerdo */
.promo-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    justify-content: center;
    flex-direction: column;
}

/* Logo */
.promo-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

/* Título e subtítulo */
.promo-title {
    font-size: 1.8em;
    margin: 0;
    margin-bottom: 10px;
    color: #3A3A3A;
}

.promo-subtitle {
    font-size: 1.2em;
    color: #777;
    margin: 0;
    margin-bottom: 15px;
}

/* Imagem principal */
.promo-main-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Botões de download */
.download-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.download-button {
    max-width: 130px;
    height: auto;
}

/* Lado direito */
.promo-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    margin-bottom: -20px;
}

.side-image {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .promo-left,
    .promo-right {
        flex: none;
        width: 100%;
    }

    .side-image {
        max-width: 80%;
    }
}





.card {
}

.areaMap {
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 10%;
    text-align: center;
}

.title-card {
    font-size: 31px;
    font-family: var(--font-system);
}

.txt-card {
    font-size: 21px;
    font-family: var(--font-system);
}

.ImgCard01 {
    position: absolute;
    bottom: 0px;
    right: 50px;
    width: 80%;
}

.ImgCard02 {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0px);
    height: 70%;
}

.ImgCard03 {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0px);
    height: 68%;
}

.ImgCard04 {
    position: absolute;
    bottom: 20px;
    left: 50px;
    height: 90%;
}

#carouselCliente {
    margin-top: 6%;
}

.header {
    height: 60px;
}




.cardsBuy {
    background-color: #000000;
    height: 390px;
    text-align: center;
    border-radius: 15px;
}

.areaCardsBuy {
    margin-top: 5%;
}

.priceCard {
    font-family: var(--font-system);
    font-size: 40px;
    color: var(--color-y-Primary);
}

.btnBlack {
    border: 1px solid var(--color-y-Primary);
    color: var(--color-y-Primary);
    display: inline-grid;
    padding: 10px;
    width: 40%;
    border-radius: 40px;
    cursor: pointer;
}

    .btnBlack:hover {
        opacity: 0.7;
    }


.titleCard {
    font-family: var(--font-system);
    font-size: 31px;
    color: var(--color-y-Primary);
}



.ajusteTamanho {
    height: 70px;
}

.ajusteTamanho2 {
    height: 40px;
}

.txtPopular {
    font-family: var(--font-system);
    font-size: 31px;
    color: white;
    padding-top: 15px;
}

.areaMap {
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.colorWorld {
    font-size: 72px;
    background: -webkit-linear-gradient(#f5c34d, #e9921b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.formulario {
    display: inline-grid;
    gap: 13%;
}

.camposForm {
    font-family: var(--font-system);
    width: 800px;
    height: 45px;
    background-color: #FCFCFC;
    border: 1px solid #E9E9E9;
    border-radius: 5px;
    font-size: 17px;
    padding-left: 8px;
    color: #3A3A3A;
}

.btnBlack {
    font-family: var(--font-system);
    background-color: #000000;
    border: 1px solid #3A3A3A;
    color: white;
    padding: 10px;
    width: 40%;
    border-radius: 40px;
    cursor: pointer;
}

.areaChoose {
    margin-top: 5%;
}


.choosePanel {
    width: 700px;
    height: 100px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
    box-shadow: 3px 0px 12px 12px #151515;
    border-radius: 30px;
}

.chooseIcon {
    width: 32%;
    cursor: pointer;
}

.txtIcon {
    color: #939393;
    font-size: 17px;
}

.chooseCard {
    height: 100%;
    padding-top: 3%;
    text-align: center;
}

    .chooseCard img {
        max-width: 100%;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .chooseCard:hover img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        /*filter: invert(39%) sepia(32%) saturate(3283%) brightness(150%) contrast(85%);*/
    }

    .chooseCard:hover .txtChoose {
        /*filter: invert(39%) sepia(32%) saturate(3283%) brightness(150%) contrast(85%);*/
    }

.mb01 {
    margin-bottom: 3%;
}

.pos1 {
    top: 30%;
    position: absolute;
}

.txtChoose {
    font-family: var(--font-system);
    font-size: 18px;
    padding-left: 5px;
    padding-top: 5px;
    color: #86868B
}

.versaoPanel {
    width: 960px;
    height: fit-content;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
}

.imgPanel {
    width: 100%;
    border-radius: 10px;
}

.iconActive {
    /*filter: invert(39%) sepia(32%) saturate(3283%) brightness(150%) contrast(85%);*/
    filter: invert(50%) sepia(100%) saturate(400%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.txtActive {
    /*color: #FFB226 !important;*/
    /*filter: grayscale(100%) brightness(70%) contrast(100%);*/
    filter: invert(50%) sepia(100%) saturate(400%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/*.txtActive {
    color: #939393 !important;
}*/

.chooseImg {
    position: absolute;
    left: -120px;
    left: -120px;
    top: 4%;
    line-height: 1.8;
    background-color: #242424;
    width: 120px;
    border-radius: 25px 0px 0px 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

/*.liImg:hover {
    filter: invert(39%) sepia(32%) saturate(3283%) brightness(150%) contrast(85%);
}*/

.liImg {
    cursor: pointer
}

    .liImg:hover img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.areaPanels {
    margin-top: 3%;
}

.pos2 {
    margin-top: 1.1vw;
}

.link {
    color: white;
}

    .link:hover {
        color: #b3afaf !important;
    }

.estrelas-amarelas {
    margin-top: 1em;
    margin-bottom: 1em;
}

.msg-erro {
    color: red !important;
}
/*CSS ALEF BLACK 2024*/
.footer-card {
    max-width: var(--max-width-page);
    border-radius: 24.15px;
    background: #DBDBDB;
    box-shadow: 0px 0px 3.864px 0px rgba(0, 0, 0, 0.25);
}

.icon-ecommerce {
    width: 24px; /* Define o tamanho */
    height: 24px;
    color: #FFAF1F; /* Define a cor */
}


.footer-card {
    display: flex;
    align-items: center; /* Centraliza verticalmente o conteúdo */
    padding: 20px 20px 0 20px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
}

.text-content-footer {
    flex: 1; /* Garante que o texto ocupe metade do espaço */
    text-align: left;
}

.image-content-footer {
    flex: 1;
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: flex-end;
}

.ImgCard04-footer {
    max-width: 100%;
    height: 95%; /* Garante que a imagem é responsiva */
}

.title-footer {
    margin-bottom: 29px;
    font-family: var(--font-system);
    color: #424242;
    font-size: 40.572px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.623px;
}

.div-footer {
    width: 55%;
}

.button-footer {
    color: #181818;
    /* font-family: &quot;Open Sans&quot;; */
    font-size: 19.32px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.184px; /* 120% */
    letter-spacing: -0.193px;
    width: 180px;
    height: 43px;
    /* color: #fff; */
    display: flex;
    padding: 11.592px 19.32px;
    justify-content: center;
    align-items: center;
    gap: 7.728px;
    border-radius: 7.728px;
    border: 0.966px solid #5CC7FF;
    background: #5CC7FF;
    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}


.message-header {
    color: #D9D9D9;
    text-align: center;
    font-family: var(--font-system);
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

    .message-header > span {
        font-weight: 600;
    }

.section-rem {
    height: 100rem;
}



.padding-top {
    margin-top: 168px;
}

.background-header {
    /*background-image: linear-gradient(to bottom, transparent 50%, #000 100%), url('../images/backgroundimage.jpg');*/
    background-image: url('../images/backgroundimage .jpg');
}



.text-2 {
    color: #FFF8EC;
    text-align: center;
    font-size: 76px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-shadow: 0 0 0.2em var(--color-y-Primary), 0 0 0.2em var(--color-y-Primary), 0 0 0.2em var(--color-y-Primary);
}

.text-3 {
    color: #D9D9D9;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 25px;
}

    .text-3 > span {
        font-weight: 600;
    }

.features-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.5px;
}

.features-subtitle {
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.48px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px;
}



.card-BuyNow {
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    border: 2px solid var(--color-y-Primary);
    background: #181818;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.card-image {
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: 1;
    animation: pulse 1s infinite ease-in-out;
}

.cardbuy {
    position: relative;
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid #555;
    background: #181818;
    box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

    .cardbuy.active {
        border: 2px solid var(--color-y-Primary);
    }

.rodape {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #212121;
    border-radius: 0 0 16px 16px;
}

.button-buy {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    width: 100%;
    border-radius: 8px;
    background-color: var(--color-y-Primary);
    height: auto;
    color: #181818;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .button-buy:hover {
        background-color: #FFA500;
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

.txt-header {
    color: var(--color-y-Primary);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.txt-oldprice {
    color: #D9D9D9;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: line-through;
}

.txt-while {
    color: #D9D9D9;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.subtxt-while {
    font-size: 14px;
    color: #D9D9D9;
}

.txt-price {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.28px;
}

.caption {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    align-self: stretch;
}

.body {
    display: flex;
    padding: 32px 32px 0 32px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    min-height: 230px;
}

.background-buynow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}


.text-header-buynow {
    color: #FFAF1F;
    text-align: center;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.165px;
}

    .text-header-buynow.medium {
        font-size: 52px;
        font-weight: 700;
    }

.section-buynow-title {
    display: flex;
    text-align: center;
    margin-bottom: 78px;
    justify-content: center;
}


.img-available {
    position: relative;
    width: 800px;
    z-index: 1;
}

.img-bottom {
    position: absolute;
    bottom: -39px;
    right: -68px;
}

.footer-beneficios {
    margin-top: 60px;
    display: flex;
    padding: 24px;
    gap: 32px;
    justify-content: center;
}

.card-beneficios {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 32px;
    border-radius: 12px;
    background: #181818;
}

    .card-beneficios > span {
        vertical-align: top;
        line-height: 1.2;
        color: var(--color-y-Primary);
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.92px;
    }

.container-panels {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 35px;
    padding-top: 40px;
}

.btn-outline-panels {
    background-color: transparent;
    color: var(--color-y-Primary);
    display: flex;
    width: 236px;
    height: 48px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 2px solid var(--color-y-Primary);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.btn-panels {
    display: flex;
    width: 236px;
    height: 48px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--color-y-Primary);
    background: var(--color-y-Primary);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}


.button {
    text-align: center;
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 1.25rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    width: 100%;
    height: auto;
}

    .button:after,
    .button:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 100%;
        border-radius: 8px;
        transition: all 0.3s;
        z-index: -1;
    }

.button-buynow {
    background: transparent;
    border: none;
    color: #181818;
}

    .button-buynow:after {
        width: 100%;
        background-color: var(--color-y-Primary);
        z-index: -2;
    }



    .button-buynow:hover {
        color: #fff;
    }

        .button-buynow:hover:before {
            width: 100%;
        }

.button-outline-buynow {
    background: transparent;
    border: 2px solid var(--color-y-Primary);
    color: var(--color-y-Primary);
}


    .button-outline-buynow:hover:before {
        width: 100%;
    }



.titles {
    color: #F4F4F4;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
}

    .titles > span {
        font-size: 52px;
        font-weight: 700;
    }

.title-video {
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
}

    .title-video > span {
        font-weight: 700;
    }

.subtitle-video {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
    margin-top: 25px;
    margin-bottom: 25px;
}


.title-app {
    text-align: center;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1px;
}

    .title-app > span {
        font-weight: 600;
    }

.subtitle-app {
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
}

/* Estilos dos botões */
.btn-smartlabel, .btn-outline-smartlabel {
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    color: white;
    border-radius: 98.644px;
    box-shadow: 0px 0px 4.535px 0px var(--color-y-Primary);
    min-width: 190px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-smartlabel {
    background-color: var(--color-y-Primary);
    border: 1.701px solid #FFF;
}

.btn-outline-smartlabel {
    background-color: transparent;
    border-radius: 98.644px;
    border: 1.701px solid var(--color-y-Primary);
    color: var(--color-y-Primary);
    box-shadow: 0px 0px 4.535px 0px var(--color-y-Primary);
}



    .btn-outline-smartlabel:hover {
        color: #fff;
        border: 1.701px solid #FFF;
        background-color: var(--color-y-Primary);
    }

.btn-buynow {
    border: transparent;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #5CC7FF;
    color: #2E2E2E;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1px;
    margin-top: 20px;
    width: 167px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

    .btn-buynow:hover {
        background-color: #5CC7FF;
    }

.card1 {
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7em;
    padding: 35px;
}

.card1-title {
    color: #3A3A3A;
    font-size: 2.2vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.8px;
}

.card1-subtitle {
    color: #3A3A3A;
    font-size: 1.5vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card-img-1 {
    width: 15vw;
}

.card-img-2 {
    width: 12vw;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 10px;
    margin-top: 75px;
    max-width: var( --max-width-page);
}

.img-video {
    width: 100%;
}


.video-container {
    position: relative;
    overflow: hidden;
}

.video {
    width: 100%;
    height: 150px;
}

/* Modal estilos */
.modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fundo escurecido */
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: transparent;
}

    .modal-content iframe {
        width: 100%;
        height: 450px;
    }

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.month-jobtracker {
    color: #0B0B0B;
    text-align: center;
    font-family: var(--font-system);
    font-size: 1.2em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
}

.smartlabel-content {
    flex: 1;
    padding: 10px;
    text-align: left;
}

.smartlabel-title {
    font-size: 2.2em;
    margin: 0;
    color: #3A3A3A;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3px;
}

.smartlabel-subtitle {
    font-size: 1.5em;
    color: #3A3A3A;
    margin: 35px 0 35px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Estilos para o container dos botões */
.button-container {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}

.title-mapa {
    text-align: center;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1px;
}

.subtitle-mapa {
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
}

.imgMapa {
    margin: 120px 0;
}

@media (max-width: 1600px) {
    .linha {
        width: 97%;
        background: -webkit-gradient(linear,0 0,100% 0,from(#FFB226),to(#FFB226),color-stop(100%,#000));
        height: 1px;
        color: #FFB226;
        display: flex;
        gap: 13%;
        font-size: 21px;
        font-family: var(--font-system);
        padding-left: 11%;
    }

    .ImgCard03 {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
        height: 60%;
    }

    .areaCinza01 {
        background-image: url(../images/bk02.png);
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        height: 740px;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 5%;
    }

    .formulario {
        display: inline-grid;
        gap: 13%;
        height: 301px;
    }

    .body {
        height: 170px;
    }

    .versaoPanel {
        transform: translate(-46%, 0px);
    }

    .chooseImg {
        top: 5%;
        line-height: 1.4;
    }
}

@media (max-width: 1500px) {
    .card {
        width: 100%;
        height: 35vw;
        border-radius: 15px;
        border: 1px solid #3A3A3A;
        margin-top: 3%;
        padding: 15px 15px 0px 20px;
    }

    .ImgCard01 {
        position: absolute;
        bottom: 0px;
        right: 50px;
        width: 88%;
    }



    .pos1 {
        top: 20%;
        position: absolute;
    }
}

@media (max-width: 1440px) {

    .title-footer {
        font-size: 40px;
    }

    .div-footer {
        width: 65%;
    }

    .logoBlack {
        padding-top: 5%;
    }

    .titleCard {
        font-family: var(--font-system);
        font-size: 27px;
        color: var(--color-y-Primary);
    }

    .priceCard {
        font-family: var(--font-system);
        font-size: 38px;
        color: var(--color-y-Primary);
    }

    .txtPopular {
        font-family: var(--font-system);
        font-size: 28px;
        color: white;
        padding-top: 15px;
    }

    .titles {
        font-size: 41px;
        font-family: var(--font-system);
    }

    .title-video {
        font-size: 48px;
    }

    .subtitle-video {
        font-size: 24px;
        margin-top: 25px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(393px, 0fr));
    }

    .img-video {
        width: 100%;
    }

    .pos2 {
        margin-top: 5vw;
    }



    .text-smartlabel {
        width: 90%;
    }

    .smartlabel {
        padding: 40px 0px 0px 40px;
    }

        .smartlabel img {
            width: 85%;
        }

    .smartlabel-title {
        font-size: 36px;
    }

    .smartlabel-subtitle {
        font-size: 23px;
    }

    /*    .btn-smartlabel {
        width: 190px;
        height: 45px;
    }

    .btn-outline-smartlabel {
        width: 190px;
        height: 45px;
    }*/
}

@media (max-width: 1200px) {

    .div-footer {
        width: 100%;
    }

    .ImgCard04-footer {
        height: 85%;
    }

    .message-header {
        font-size: 30px;
    }

    .areaBlack01 {
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
    }

    .logoBlack {
        padding-top: 7vh;
    }

    .text-1 {
        font-size: 54px;
    }

    .text-2 {
        font-size: 69px;
        text-shadow: 0 0 0.2em var(--color-y-Primary), 0 0 0.2em var(--color-y-Primary), 0 0 0.2em var(--color-y-Primary);
    }

    .text-3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 45px;
    }

    .linha {
        width: 97%;
        background: -webkit-gradient(linear,0 0,100% 0,from(#fce700),to(#FFB226),color-stop(100%,#000));
        height: 1px;
        color: #FFB226;
        display: flex;
        gap: 10%;
        font-size: 18px;
        font-family: var(--font-system);
        padding-left: 10%;
    }

    .versaoPanel {
        width: 800px;
        height: fit-content;
        position: relative;
        left: 50%;
    }

    .chooseImg {
        line-height: 1.4;
    }

    .btnBlack {
        width: 80%;
    }

    .txtPopular {
        font-size: 23px;
    }

    .ajusteTamanho {
        height: 59px;
    }

    .priceCard {
        font-family: var(--font-system);
        font-size: 33px;
        color: var(--color-y-Primary);
    }

    .cardCar {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        text-align: center;
        padding: 9%;
        color: white;
    }

    .titles {
        font-size: 34px;
        font-family: var(--font-system);
    }

    .subTitles {
        font-size: 18px;
        font-family: var(--font-system);
        margin-top: 2%;
    }

    .areaBlack04 {
        padding-top: 10%;
        text-align: center;
    }

    .chooseIcon {
        width: 29%;
        cursor: pointer;
    }

    .title-video {
        font-size: 48px;
    }

    .subtitle-video {
        font-size: 24px;
        margin-top: 25px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .img-video {
        width: 100%;
    }

    .ImgCard03 {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
        height: 50%;
    }

    .ImgCard02 {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
        height: 53%;
    }

    .title-card {
        font-size: 26px;
        font-family: var(--font-system);
    }

    .card1 {
        height: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7em;
        padding: 25px;
    }

    .card1-title {
        color: #3A3A3A;
        font-size: 2vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 1.8px;
    }

    .card1-subtitle {
        color: #3A3A3A;
        font-size: 1.3vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .card {
        width: 100%;
        height: 370px;
        border-radius: 15px;
        border: 1px solid #3A3A3A;
        margin-top: 3%;
        padding: 15px 15px 0px 20px;
    }

    .card-img-1 {
        width: 13vw;
    }

    .card-img-2 {
        width: 10vw;
    }

    .pos2 {
        margin-top: 1.1vw;
    }

    .smartlabel {
        padding: 40px 0px 0px 20px;
    }

    .text-smartlabel {
        width: 87%;
    }

    .smartlabel-title {
        font-size: 30px;
    }

    .smartlabel-subtitle {
        font-size: 20px;
    }

    /*  .btn-smartlabel {
        width: 150px;
        height: 34px;
        font-size: 16px;
        margin-right: 15px;
    }

    .btn-outline-smartlabel {
        width: 150px;
        height: 34px;
        font-size: 16px;
    }*/

    .txt-card {
        font-size: 17px;
        font-family: var(--font-system);
    }

    .ImgCard01 {
        position: absolute;
        bottom: 0px;
        right: 50px;
        width: 79%;
    }

    .areaCinza01 {
        background-image: url(../images/bk02.png);
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        height: 710px;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 5%;
    }

    .imgMapa {
        width: 80%;
    }
}

@media (max-width: 1024px) {

    .button {
        font-size: 15px;
    }

    .button-jobtracker {
        font-size: 17px;
    }


    .cardbuy {
        width: 270px;
    }

    .areaCardsApp {
        padding-left: 5%;
        padding-right: 5%;
    }

    .card-smartlabel {
        height: 31vw;
    }

    .subtitle-jobtracker {
        font-size: 1.9vw;
    }

    .title-footer {
        font-size: 34px;
    }

    .text-content-footer {
        flex: 0.7;
    }

    .button-footer {
        font-size: 18.32px;
        width: 171px;
        height: 38px;
    }

    .message-header {
        font-size: 26px;
    }

    .areaBlack01 {
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
    }


    .features-title {
        font-size: 14px;
        line-height: 1.42857143;
        letter-spacing: 0;
    }

    .features-subtitle {
        line-height: 1.42857143;
        font-size: 13px;
    }

    .versaoPanel {
        width: 664px;
        height: fit-content;
        position: relative;
        left: 50%;
    }

    .chooseImg {
        line-height: 1.2;
        top: 3%;
    }

    .titleCard {
        font-family: var(--font-system);
        font-size: 25px;
        color: var(--color-y-Primary);
    }

    .title-video {
        font-size: 37px;
    }

    .subtitle-video {
        font-size: 20px;
        margin-top: 25px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
        max-width: 1024px;
    }

    .img-video {
        width: 100%;
    }

    .title-app {
        font-size: 54px;
    }


    .subtitle-app {
        font-size: 27px;
    }

    .pos2 {
        margin-top: 3.9vw;
    }

    .areaCinza01 {
        background-image: url(../images/bk02.png);
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        height: 660px;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 5%;
    }

    .text-smartlabel {
        width: 89%;
    }

    .smartlabel-title {
        font-size: 26px;
    }

    .smartlabel-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .countdown-header {
        font-size: 35px;
    }

    .countdown-box span {
        font-size: 36px;
    }

    .label {
        font-size: 13px;
    }

    .countdown-box {
        min-width: 114px;
    }


    .text-content-footer {
        flex: 1;
        text-align: center;
        margin-left: 0;
        padding: 40px;
    }

    .button-footer {
        display: inline-flex;
    }

    .message-header {
        font-size: 22px;
    }

    .footer-card {
        height: 243px;
    }

    .areaBlack01 {
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        height: unset;
    }

    .logoBlack {
        padding-top: 15%;
    }

    .features-title {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.5px;
    }

    .features-subtitle {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.48px;
    }

    .text-header-buynow {
        font-size: 46px;
    }

        .text-header-buynow.medium {
            font-size: 50px;
        }

    .card-beneficios > span {
        font-size: 18px;
    }

    .background-buynow {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .cardbuy {
        width: 450px;
    }

    .img-bottom {
        display: none;
    }

    .titles {
        font-size: 43px;
    }

        .titles > span {
            font-size: 45px;
        }

    .chooseCard {
        height: 100%;
        padding-top: 4%;
    }

    .choosePanel {
        width: 525px;
        height: 100px;
        position: relative;
        left: 50%;
        transform: translate(-50%, 0px);
        box-shadow: 3px 0px 12px 12px #151515;
        border-radius: 30px;
    }

    .chooseIcon {
        width: 40%;
        cursor: pointer;
    }

    .versaoPanel {
        width: 525px;
        height: fit-content;
        position: relative;
        left: 50%;
        transform: translate(-50%, 0px);
    }

    .titles {
        font-size: 29px;
        font-family: var(--font-system);
    }

    .subTitles {
        font-size: 16px;
        font-family: var(--font-system);
        margin-top: 2%;
    }

    .title-video {
        font-size: 37px;
    }

    .subtitle-video {
        font-size: 20px;
        margin-top: 25px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(597px, 1fr));
        max-width: 768px;
    }

    .title-app {
        font-size: 52px;
    }

    .subtitle-app {
        font-size: 26px;
    }

    .card1 {
        height: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7em;
        padding: 20px;
    }

    .card1-title {
        color: #3A3A3A;
        font-size: 5vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 1.8px;
    }

    .card1-subtitle {
        color: #3A3A3A;
        font-size: 3.2vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .card-img-1 {
        width: 22vw;
    }

    .card-img-2 {
        width: 25vw;
    }

    .linha {
        width: 100%;
        background: -webkit-gradient(linear,0 0,100% 0,from(#fce700),to(#FFB226),color-stop(100%,#000));
        height: 1px;
        color: #FFB226;
        display: flex;
        gap: 9%;
        font-size: 16px;
        font-family: var(--font-system);
        padding-left: 3%;
    }

    .areaCinza01 {
        background-image: url(../images/bk02.png);
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        height: fit-content;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 5%;
    }

    .cardsBuy {
        background-color: #000000;
        height: 390px;
        text-align: center;
        border-radius: 15px;
        margin-bottom: 4%;
    }

    .card {
        width: 100%;
        height: 480px;
        border-radius: 15px;
        border: 1px solid #3A3A3A;
        margin-top: 3%;
        padding: 15px 15px 20px 20px;
    }

    .ImgCard01 {
        bottom: 0px;
        right: unset;
        width: 49%;
        left: 50%;
        transform: translate(-50%, 0px);
    }

    .ImgCard02 {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
        height: 69%;
    }

    .ImgCard03 {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
        height: 67%;
    }

    .ImgCard04 {
        bottom: 0px;
        right: unset;
        width: 56%;
        left: 50%;
        transform: translate(-50%, 0px);
    }

    .pos2 {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        padding: 7px;
    }

    .chooseImg {
        position: absolute;
        display: flex;
        left: 0px;
        line-height: unset;
        top: 0%;
        background-color: unset;
        width: 100%;
        border-radius: 25px 25px 25px 25px;
        padding-top: 15px;
        padding-bottom: 10px;
        padding-left: 12px;
        gap: 5%;
        overflow-y: auto;
    }

    .imgPanel {
        width: 96%;
        border-radius: 10px;
        margin-top: 20%;
    }

    .txtIcon {
        color: #939393;
        font-size: 14px;
        width: 110px;
        background-color: #151515;
        padding: 10px;
        border-radius: 25px;
    }    

    .camposForm {
        font-family: var(--font-system);
        width: 375px;
        height: 45px;
        background-color: #FCFCFC;
        border: 1px solid #E9E9E9;
        border-radius: 5px;
        font-size: 17px;
        padding-left: 8px;
        color: #3A3A3A;
    }

    .card-smartlabel {
        height: 480px;
        padding: 30px;
    }

    .smartlabel-title {
        font-size: 35px;
    }

    .smartlabel-subtitle {
        font-size: 25px;
    }

    /*  .btn-smartlabel {
        width: 190px;
        height: 45px;
        font-size: 20px;
    }

    .btn-outline-smartlabel {
        width: 190px;
        height: 45px;
        font-size: 20px;
    }*/

    .title-jobtracker {
        font-size: 37px;
    }

    .subtitle-jobtracker {
        font-size: 24px;
        margin-top: 15px;
    }

    .oldprice-jobtracker {
        font-size: 20px;
        margin-top: 1.5vw;
    }

    .newprice-jobtracker {
        font-size: 55px;
    }

    .button-jobtracker {
        width: 244.295px;
        height: 54.288px;
        border-radius: 94.461px;
        border: 1.629px solid var(--White, #FFF);
        background: #FFAF1F;
        box-shadow: 0px 0px 4.343px 0px #FFAF1F;
        font-size: 24px;
    }

    .title-mapa {
        font-size: 43px;
    }

    .subtitle-mapa {
        font-size: 26px;
    }

    .imgMapa {
        width: 100%;
    }

    .txtActive {
        filter: unset;
        background-color: #5697e7;
        color: black;
    }
}

@media (max-width: 480px) {

    .countdown-header {
        font-size: 29px;
    }

    .countdown-box {
        min-width: 18.75vw;
    }

        .countdown-box span {
            font-size: 5.8vw;
        }

    .label {
        font-size: 2.5vw;
    }

    .linear-gradient {
        margin-top: 200px;
    }


    .title-footer {
        font-size: 26px !important;
    }

    .text-content-footer {
        padding: 0;
    }

    .areaMap {
        padding-left: 15px;
        padding-right: 15px;
    }

    .message-header {
        font-size: 18px;
    }

    .logoBlack {
        padding-top: 15%;
    }

    .areaBlack01 {
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
    }

    .text-1 {
        font-size: 38px;
    }

    .text-2 {
        font-size: 48px;
        text-shadow: 0 0 0.2em var(--color-y-Primary), 0 0 0.2em var(--color-y-Primary), 0 0 0.2em var(--color-y-Primary);
    }

    .text-3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 45px;
    }


    .cardbuy {
        width: 320px;
    }

    .text-header-buynow {
        font-size: 26px;
    }

        .text-header-buynow.medium {
            font-size: 30px;
        }

    .card-beneficios {
        display: flex;
        width: 350px;
        font-size: 20px;
        align-items: start;
        flex-direction: column;
    }

    .titles {
        font-size: 26px;
    }

        .titles > span {
            font-size: 29px;
        }

    .choosePanel {
        width: 360px;
        height: 70px;
    }

    .chooseImg {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        height: 20%;
    }

    .chooseCard {
        padding-top: 3%;
    }

    .chooseIcon {
        width: 40%;
    }

    .txtChoose {
        font-size: 14px;
    }

    .imgPanel {
        width: 100%;
        border-radius: 10px;
        margin-top: 25%;
    }

    .versaoPanel {
        width: 100%;
        position: static;
        transform: none;
    }

    .title-video {
        font-size: 31px;
    }

    .subtitle-video {
        font-size: 21px;
        margin-top: 25px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 2fr));
        max-width: 480px;
    }

    .areaCardsApp {
        padding-top: 30%;
    }

    .title-app {
        font-size: 35px;
    }

    .subtitle-app {
        font-size: 21px;
    }

    .btn-download {
        font-size: 16px;
        padding: 8px 15px;
        border: 0;
        margin-top: 12px;
        margin-bottom: 24px;
    }

    .areaCardsApp {
        padding-left: 0%;
        padding-right: 0%;
    }

    .card {
        height: 370px;
    }

    .card-img-2 {
        width: 30vw;
    }

    .card-img-1 {
        width: 30vw;
    }

    .camposForm {
        font-family: 'Roboto-Bold';
        width: 310px;
        height: 45px;
        background-color: #FCFCFC;
        border: 1px solid #E9E9E9;
        border-radius: 5px;
        font-size: 17px;
        padding-left: 8px;
        color: #3A3A3A;
    }

    .title-jobtracker {
        font-size: 31px;
    }

    .subtitle-jobtracker {
        font-size: 18px;
        margin-top: 15px;
    }

    .oldprice-jobtracker {
        font-size: 18px;
        margin-top: 1.5vw;
    }

    .newprice-jobtracker {
        font-size: 38px;
    }

    .button-jobtracker {
        width: 224.295px;
        height: 44.288px;
        border-radius: 94.461px;
        border: 1.629px solid var(--White, #FFF);
        background: #FFAF1F;
        box-shadow: 0px 0px 4.343px 0px #FFAF1F;
        font-size: 20px;
    }

    .card-smartlabel {
        height: 397px;
        padding: 17px;
    }

    .smartlabel-title {
        font-size: 32px;
    }

    .smartlabel-subtitle {
        font-size: 21px;
    }

    /*   .btn-smartlabel {
        width: 160px;
        height: 38px;
        font-size: 16px;
    }

    .btn-outline-smartlabel {
        width: 160px;
        height: 38px;
        font-size: 16px;
    }*/

    .areaMap {
        padding-top: 17%;
    }

    .title-mapa {
        font-size: 29px;
    }

    .subtitle-mapa {
        font-size: 17px;
    }

    .imgMapa {
        margin: 75px 0;
    }

    /*  .imgMapa {
        width: 99%;
        margin-top: 3%;
    }*/

    .subTitles {
        font-size: 15px;
        margin-top: 4%;
        text-align: center;
    }

    .ImgCard03 {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
        height: 54%;
    }

    .ImgCard04 {
        bottom: 0px;
        right: unset;
        width: 75%;
        left: 50%;
        transform: translate(-50%, 0px);
    }

    .ImgCard01 {
        bottom: 0px;
        right: unset;
        width: 55%;
        left: 50%;
        transform: translate(-50%, 0px);
    }

    .pos1 {
        top: 0%;
        position: absolute;
    }

    .ImgCard01 {
        bottom: 0px;
        right: unset;
        width: 59%;
        left: 50%;
        transform: translate(-50%, 0px);
    }



    .subTitles {
        font-size: 14px;
        font-family: 'Roboto-Regular';
        margin-top: 4%;
    }

    .img-small {
        padding-left: 0;
        padding-right: 0;
    }

    .p-t-25 {
        padding-top: 25px;
    }

    .promo-container {
        padding: 0;
    }

    .job-container {
        padding: 0;
    }

    .job-content {
        padding: 24px;
    }

    .job-title {
        font-size: 1.8em;
    }

    .smartlabel-content {
        padding: 24px;
    }

    .job-subtitle {
        font-size: 1em;
    }
}

@media (max-width: 425px) {
    .choosePanel {
        width: 345px;
    }

    .btn-smartlabel, .btn-outline-smartlabel {
        font-size: 13px;
        min-width: 150px;
        width: 100%
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 2fr));
        max-width: 425px;
    }
}

@media (max-width: 375px) {

    .button {
        font-size: 15px;
    }

    .countdown-header {
        font-size: 25px;
    }

    .linear-gradient {
        margin-top: 100px;
    }

    .text-1 {
        font-size: 35px;
    }

    .text-2 {
        font-size: 40px;
    }

    .text-3 {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 45px;
    }


    .cardbuy {
        width: 265px;
    }

    .chooseImg {
        height: 19%;
    }

    .imgPanel {
        margin-top: 33%;
    }

    .title-video {
        font-size: 32px;
    }

    .subtitle-video {
        font-size: 18px;
        margin-top: 25px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
        max-width: 375px;
    }

    .promo-title {
        font-size: 1.2em;
    }

    .promo-subtitle {
        font-size: 1em;
    }

    .promo-container {
        padding: 0;
    }

    .title-app {
        font-size: 38px;
    }

    .subtitle-app {
        font-size: 17px;
    }

    .card-img-2 {
        width: 35vw;
    }

    .subtitle-jobtracker {
        font-size: 15px;
    }

    .smartlabel-subtitle {
        font-size: 19px;
    }

    .btn-smartlabel, .btn-outline-smartlabel {
        font-size: 12px;
        min-width: 138px;
    }


    .job-price {
        font-size: 1.2em;
        margin: 10px 0;
    }

    .job-title {
        font-size: 1.6em;
    }

    .job-subtitle {
        font-size: 0.9em;
    }

    .old-price {
        font-size: 0.9em;
    }

    .new-price {
        font-size: 1.8em;
    }

    .month-jobtracker {
        font-size: 1em;
    }

    .buy-button {
        width: 208px;
        height: 45px;
        font-size: 1em;
    }
}

@media (max-width: 325px) {

    .choosePanel {
        width: 280px;
    }

    .button-container {
        flex-wrap: wrap;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
        max-width: 325px;
    }
}
