@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1A1A1A;
    overflow-x: hidden;
}

.tooltipChat {
    position: fixed;
    bottom: 50px;
    right: 110px;
    height: 32px;
    padding: 0 14px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: rgba(0, 0, 0, .8);
    line-height: 31px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s ease-out .3s;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .4));
    pointer-events: none;
    z-index: 2000;
}

.tooltipVisible {
    opacity: 1 !important;
}

.listOptions {
    display: grid;
}

.optionsBuy {
    position: fixed;
    bottom: 50px;
    right: 110px;
    height: 32px;
    padding: 0 14px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: rgba(0, 0, 0, .8);
    line-height: 31px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s ease-out .3s;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .4));
    z-index: 2000;
}

.optionsBuy a {
    text-decoration: none;
    color: #1A1A1A;
}

.optionsBuy:hover {
    background: #ddd; /* Altere a cor para o tom desejado de escurecimento */
    color: #333; /* Altere a cor do texto se necessário */
}

.optionsVisible {
    opacity: 1 !important;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #AEB79D;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s;
}

.float:hover {
    background-color: #727767;
    transform: scale(1.1);
}

.float:hover + .tooltipChat,
.tooltipChat:hover {
    opacity: 1;
}

.my-float {
    margin-top: 16px;
}

header {
    background-color: #FFFFFF;
    padding: 20px 0;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease;
}

.titleBranding h2 {
    text-align: center;
    margin: 30px 0;
    font-weight: normal;
}

.titleLista {
    padding: 15px;
    max-width: 600px;
    background-color: #fff;
    margin-left: -25px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 24px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    color: #868F75;
    position: relative;
    align-items: center;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, .1));
}

.titlePasta {
    padding: 8px;
    max-width: 600px;
    background-color: #AFB79F;
    margin-left: -25px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    color: #1a1a1a;
    position: relative;
    align-items: center;
    display: flex;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, .1));
}

.titlePasta::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: #727767;
    left: 0;
    bottom: -1rem;
    clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 100%,
            0% 0%
    );
}

.productTitle p {
    text-align: center;
    margin: 30px 0;
    font-weight: normal;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 25px;
    margin: 0 auto;
    max-width: 1200px;
    justify-items: center;
}

.image-grid > * {
    min-width: 320px; /* ou outro valor adequado */
}

h1 {
    font-size: 40px;
}

.numPastas {
    font-size: 30px;
}

@media (max-width: 768px) {

    header {
        width: 100%;
        position: fixed;
        z-index: 1000;
        padding: 10px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    nav {
        margin-top: 0;
    }

    .image-grid {
        grid-gap: 10px;
        justify-content: center; /* Centraliza os grids em telas menores */
    }

    h1 {
        font-size: 30px;
    }

    .numPastas {
        font-size: 20px;
    }

}

/*                                     */

.card {
    --font-color: #1A1A1A;
    --bg-color: #F0EEE2;
    width: 220px;
    height: auto;
    border-radius: 20px;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    transition: .4s;
    position: relative;
    text-align: center;
}

.cardVerde {

    width: 220px;
    height: auto;
    min-height: 130px;
    border-radius: 20px;
    background: rgba(134, 143, 117, 0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: .4s;
    position: relative;
    text-align: center;
    min-width: 220px;
}

.cardVerde:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px 2px #5a5a5a;
}

.discount-badge {
    /* Estilo do selo de desconto */
    position: absolute;
    top: 10px; /* Ajuste conforme necessário */
    left: 10px; /* Ajuste conforme necessário */
    background-color: #AFB79F; /* Cor de fundo do selo */
    color: #1a1a1a; /* Cor do texto do selo */
    padding: 5px 15px; /* Espaçamento interno do selo */
    border-radius: 25px; /* Borda arredondada do selo */
    font-size: 14px; /* Tamanho da fonte do selo */
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px 2px #5a5a5a;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.card__descr-wrapper {
    padding: 15px;
    display: grid;
}

.card__title {
    color: var(--font-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 24px;
}

.card_title_medium {
    color: var(--font-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 20px;
}

.card__descr {
    color: var(--font-color);
}

.card__extra {
    color: var(--font-color);
    font-size: 14px;
}

.svg {
    width: 25px;
    height: 25px;
    transform: translateY(25%);
    fill: var(--font-color);
}

.card__links {
    display: flex;
    justify-content: center;
    align-self: flex-end;
}

.btnProduct {
    cursor: pointer;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    transition: all .2s;
    padding: 10px 20px;
    border-radius: 10px;
    background: #AFB79F;
    color: #1A1A1A;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    margin-top: 0;
}

.btnProduct a {

    text-decoration: none;
    color: #1A1A1A;

}

.btnProduct:hover {
    background: #9ca38e;
}

.btnProduct:active {
    transform: scale(0.95);
}

/*                                */

.section-container {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    padding-bottom: 100px;
    justify-content: center; /* Distribui os itens com espaço entre eles */
}

.text-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.text-containerC {
    position: relative;
    width: 40%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.background-text {
    color: #1A1A1A;
    opacity: 0.3;
    font-size: 86px; /* Ajuste o tamanho conforme necessário para destacar */
    position: absolute;
    padding-left: 50px;
    top: -60px; /* Ajuste conforme necessário para posicionar o Texto 4 */
}

.background-text-feedbacks {
    color: #1A1A1A;
    opacity: 0.3;
    font-size: 100px; /* Ajuste o tamanho conforme necessário para destacar */
    position: absolute;
    padding-left: 50px;
    top: -90px; /* Ajuste conforme necessário para posicionar o Texto 4 */
}

.main-text {
    color: #1A1A1A;
    font-size: 20px; /* Ajuste o tamanho conforme necessário */
    margin-bottom: 15px; /* Adiciona espaço entre os parágrafos */
    margin-left: 50px;
    margin-bottom: 60px;
}

.main-text-titulo {
    font-size: 40px; /* Ajuste o tamanho conforme necessário */
    margin-bottom: 15px; /* Adiciona espaço entre os parágrafos */
    margin-left: 50px;
    margin-bottom: 60px;
    text-align: justify;
    text-justify: inter-word;
}

.image-container {
    width: 30%; /* Ajuste conforme necessário */
    height: 30%;
    margin-top: 20px; /* Adiciona espaço acima da imagem */
}

.image-containerMenor {
    width: 20%; /* Ajuste conforme necessário */
    height: 20%;
    margin-top: 20px; /* Adiciona espaço acima da imagem */
}

.image-containerMaior {
    width: 60%; /* Ajuste conforme necessário */
    height: 60%;
    margin-top: 20px; /* Adiciona espaço acima da imagem */
}

.image-containerMaiorPC {
    width: 60%; /* Ajuste conforme necessário */
    height: 60%;
    margin-top: 20px; /* Adiciona espaço acima da imagem */
}

.image-containerGigante {
    width: 80%; /* Ajuste conforme necessário */
    margin-top: 20px; /* Adiciona espaço acima da imagem */
}

.image-containerMediaAumenta {
    width: 80%;
}

.image-containerMedia {
    width: 40%; /* Ajuste conforme necessário */
    margin-top: 20px; /* Adiciona espaço acima da imagem */
}

.image-containerMenorCelular {
    display: none;
}

.image-containerMenorDireita {
    position: relative;
    width: 15vw;
    right: -1rem;
    align-self: end;
}

.image-containerMenorEsquerda {
    position: relative;
    width: 15vw;
    align-self: center;
}

.image-containerMovel {
    display: none;
}

.estuturaLaptop {
    margin: 0;
    width: 300px;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.infograficoMentoria {
    width: 70%;
    align-self: center;
}

@media (max-width: 1400px) {
    .image-containerMenorDireita {
        display: none;
    }

    .image-containerMenorEsquerda {
        display: none;
    }

    .image-containerMenorCelular {
        display: block;
        width: 100%; /* Ajusta a largura para ocupar 100% da largura em telas menores */
        margin-left: 0; /* Remove a margem à esquerda para centrar em telas menores */
    }

}

@media (max-width: 1023px) {
    .infograficoMentoria {
        width: 100%;
    }

    .espacoCarousel {
        padding-top: 62px;
    }

    .carousel {
        width: 100%;
    }

    .animated-section {
        padding-top: 62px;

    }

    .text-containerC {
        width: 100%;
    }

    .text-container {
        padding-top: 62px;
    }

    .section-container {
        flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
        justify-content: space-between;
    }

    .section-container .sobrenos {
        padding-top: 62px;
    }

    .image-container {
        width: 100%; /* Ajusta a largura para ocupar 100% da largura em telas menores */
        margin-left: 0; /* Remove a margem à esquerda para centrar em telas menores */
    }

    .image-containerMenor {
        width: 60%; /* Ajusta a largura para ocupar 100% da largura em telas menores */
        margin-left: 0; /* Remove a margem à esquerda para centrar em telas menores */
    }

    .image-containerMaior {
        width: 100%; /* Ajusta a largura para ocupar 100% da largura em telas menores */
        margin-left: 0; /* Remove a margem à esquerda para centrar em telas menores */
    }

    .image-containerMedia {
        width: 80%; /* Ajusta a largura para ocupar 100% da largura em telas menores */
        margin-left: 0; /* Remove a margem à esquerda para centrar em telas menores */
    }

    .image-containerMovel {
        width: 90%;
        display: flex;
        margin: 20px;
    }

    .background-text {
        font-size: 60px; /* Ajuste o tamanho conforme necessário para destacar */
        top: -20px;
    }

    .background-text-feedbacks {
        font-size: 50px; /* Ajuste o tamanho conforme necessário para destacar */
        top: -20px;
    }

    .estuturaLaptop {
        height: 300px;
    }

    .main-text {
        color: #1A1A1A;
        font-size: 16px; /* Ajuste o tamanho conforme necessário */
        margin-bottom: 15px; /* Adiciona espaço entre os parágrafos */
        margin-left: 50px;
        margin-bottom: 60px;
    }

    .main-text-titulo {
        font-size: 18px; /* Ajuste o tamanho conforme necessário */
        margin-bottom: 15px; /* Adiciona espaço entre os parágrafos */
        margin-left: 50px;
        margin-bottom: 60px;
    }

}

/*                                            */

.gallery-container {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
}

.gallery-item {
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
    width: 300px; /* Largura fixa do quadrado */
    height: 300px; /* Altura fixa do quadrado */
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem se ajuste ao quadrado mantendo as proporções */
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1001; /* Ajuste o valor conforme necessário para garantir que o modal fique acima dos outros elementos */
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    display: block;
}

.close, .fullscreen, .prev, .next {
    position: absolute;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.close {
    top: 15px;
    right: 15px;
}

.fullscreen {
    top: 15px;
    left: 15px;
}

.prev, .next {
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
}

.prev {
    left: 15px;
    color: #fff;
}

.next {
    right: 15px;
    color: #fff;
}

/*                         */

.slider-container {
    position: relative;
    margin: auto;
    overflow: hidden;
    display: flex;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

/*                                               */

.imagem-sobreposta {
    position: absolute; /* Torna a posição absoluta em relação à div de base */
    top: 55%; /* Coloca a imagem no topo da div */
    right: 20.4%; /* Coloca a imagem no lado esquerdo da div */
    width: 100%;
}

@media (max-width: 1023px) {
    .gallery-container {
        margin-top: 20px;
    }

    .imagem-sobreposta {
        display: none;
    }
}


/*                     */

.imagem-de-fundo {
    background-image: url('img/fundos/fundo.webp');
    background-size: cover;
    height: 6000px;
}

/*                                          */

.cnt {
    max-width: 100%;
    width: 95%;
    padding-top: 30px;;
    margin: 0 auto; /* Add this line to center the element */
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #AFB79F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
    background: #727767;
}

.slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
}

.slider-wrapper .slide-button#next-slide {
    right: -25px;
}

.slider-wrapper .image-list {
    display: grid;
    height: 500px;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
    align-items: center;
}

.slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
}

.slider-wrapper .image-list .image-cont {
    width: 500px; /* Largura fixa do quadrado */
    height: 500px; /* Altura fixa do quadrado */
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.slider-wrapper .image-list .image-cont .image-item {
    width: 100%;
    height: 100%;
    object-fit: scale-down; /*Garante que a imagem se ajuste ao quadrado mantendo as proporções */
    transition: transform 0.3s;
}

.image-cont .image-item:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.cnt .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-scrollbar .scrollbar-track {
    background: #AFB79F;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #22231f;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {

    .cnt {
        padding-top: 0;
    }

    .slider-wrapper .slide-button {
        display: none !important;
    }

    .slider-wrapper .image-list {
        gap: 10px;
        margin-bottom: 15px;
        scroll-snap-type: x mandatory;
    }

    .slider-scrollbar .scrollbar-thumb {
        width: 20%;
    }
}

.section-footer-aba {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
    padding-top: 300px;
}

.section-footer-aba .background-image {
    /* Adicione a imagem de fundo aqui */
    background-image: url('src/fundos/imagemfundofooter.webp');
    background-size: contain;
    width: auto;
    position: absolute;
    top: 10%;
    bottom: 0;
    left: 50%;
    right: 0;
}

.wave-footer {
    position: relative;
    margin-bottom: 0;
    background-color: #F2EFE3;

}

.half-colored-div {
    width: 100%;
    background: linear-gradient(to top, #F2EFE3 80%, transparent 20%);
}

.wave-footer svg {
    margin-bottom: -8px;
    padding-bottom: 0;
    position: relative;
    top: auto;
    left: -60;
    width: 100%;
    height: 100%;
}

.footer-content {
    margin-top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    text-align: center;
    z-index: 1;
    padding-bottom: 20px;
    font-size: 12px;
}

.footer-content-diferente {
    margin-top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    text-align: center;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 4rem;
    font-size: 12px;
}

.footer-section {
    flex: 1;
    position: relative;
    margin-right: 20px;
    background-color: transparent;
    z-index: 2;

}

.footer-section p {
    margin-bottom: -10px;
}

.footer-section img {
    width: 40%;
}

.wave-svg {
    position: relative;
    top: 9vh
}

.wrapper.produtos {
    width: 70%;
}


@media only screen and (max-width: 1023px) {
    .wrapper .content {
        max-width: 90%;
    }

    .wrapper.produtos {
        width: 90%;
    }

    .wave-svg {
        top: 2.9em;
    }

    .section-footer-aba .background-image {
        left: 40%;
        bottom: 20%;
        width: auto;

    }

    .slider-wrapper .image-list {
        padding-left: 0;
    }

    .footer-section {
        padding-bottom: 20px;
        margin-right: 10px;
        margin-left: 10px
    }

    .macbook {
        padding: 4% 6%;
        margin: 0 auto;
        max-width: 800px;
        min-width: 100%;
        align-self: center;
    }

}

@media only screen and (max-width: 720px) {
    .section-footer-aba {
        padding-top: 150px;
    }

    .section-footer-aba .background-image {
        width: 100%;
        bottom: 25em;
        top: 6em;
        left: 7em;

    }

    .wrapper .content {
        max-width: 90%;
    }

    .wave-svg {
        top: 9.6em;
    }

}

@media only screen and (max-width: 530px) {

    .wave-svg {
        top: 8.2em;
    }

}

@media only screen and (max-width: 360px) {

    .wave-svg {
        top: 7.4em;
    }

}

@media only screen and (max-width: 720px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-content-diferente {
        flex-direction: column;
    }
}

.svg-overlay {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para garantir que o SVG não capture eventos do mouse */
    /* Coloque o SVG abaixo do conteúdo do footer (z-index: 1) */
    z-index: 1;
}

.svg-overlay img {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100%;
}

.footer-section a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.footer-section a:hover {
    text-decoration: underline; /* Adicione uma linha sublinhada quando houver hover para indicar clicabilidade */
}

/*                             */

.macbook {
    padding: 4% 6%;
    margin: 0 auto;
    max-width: 800px;
    min-width: 80%;
    align-self: center;
}

.screen {
    background: #000;
    border-radius: 3% 3% 0.5% 0.5% / 5%;
    margin: 0 auto;
    /* for aspect ratio */
    position: relative;
    width: 80%;
}

.screen:before {
    border: 2px solid #cacacc;
    border-radius: 3% 3% 0.5% 0.5% / 5%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8) inset, 0 0 1px 2px rgba(255, 255, 255, 0.3) inset;
    content: "";
    display: block;
    /* for aspect ratio ~67:100 */
    padding-top: 67%;
}

.screen:after {
    content: "";
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    position: absolute;
    bottom: 0.75%;
    left: 0.5%;
    padding-top: 1%;
    width: 99%;
}

.viewport {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: 4.3% 3.2%;
    background: #333;
}

.base {
    /* for aspect ratio */
    position: relative;
    width: 100%;
}

.base:before {
    content: "";
    display: block;
    /* for aspect ratio ~33:1000*/
    padding-top: 3.3%;
    /* stylin */
    background: linear-gradient(#eaeced, #edeef0 55%, #fff 55%, #8a8b8f 56%, #999ba0 61%, #4B4B4F 84%, #262627 89%, rgba(0, 0, 0, .01) 98%);
    border-radius: 0 0 10% 10%/ 0 0 50% 50%;
}

.base::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.8) 0.5%, rgba(0, 0, 0, 0.4) 3.3%, transparent 15%, rgba(255, 255, 255, 0.8) 50%, transparent 85%, rgba(0, 0, 0, 0.4) 96.7%, rgba(255, 255, 255, 0.8) 99.5%, rgba(0, 0, 0, 0.5) 100%);
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
}

.notch {
    background: #ddd;
    border-radius: 0 0 7% 7% / 0 0 95% 95%;
    box-shadow: -5px -1px 3px rgba(0, 0, 0, 0.2) inset, 5px -1px 3px rgba(0, 0, 0, 0.2) inset;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3.5%;
    z-index: 2;
    /* for aspect ratio */
    position: relative;
    width: 14%;
}

.notch:before {
    content: "";
    display: block;
    /* for aspect ratio ~1:10 */
    padding-top: 10%;
}

.background-image-laptop {
    background-image: url('img/fundolaptop.webp'); /* Substitua 'caminho/da/sua/imagem.webp' pelo caminho real da sua imagem */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


/* Screenshot Hover Scroll Additions
-------------------------------------------------------------- */

.macbook {
    position: relative;
    padding: 4% 6%;
    margin: 0 auto;
    max-width: 800px;
}

.screen {
    background: #000;
    border-radius: 3% 3% 0.5% 0.5% / 5%;
    margin: 0 auto;
    position: relative;
    width: 80%;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 4%;
    left: 2.5%;
    width: 95%; /* Ajuste conforme necessário */
    height: 92%; /* Ajuste conforme necessário */
}

.screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.screen iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.base,
.notch {
    position: relative;
    z-index: 1;
}

.macbook .viewport {
    transition: background-position 3s ease;
    background-position: 0 0;
    background-size: 100% auto;
    overflow: hidden;
    cursor: pointer;
}

.macbook:hover .viewport {
    background-position: 0 100%;
}

.macbook .viewport:after {
    background: radial-gradient(circle at right bottom, transparent 75%, rgba(255, 255, 255, 0.05) 75%, transparent);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

/*                                    */

:root {
    --start-color: #AFB79F;
    --end-color: #727767;
    --p-color: #1a1a1a;
    --button-background: #AFB79F;
    --input-background: #e4eff8;
    --radius-50: 10px;
    --padding-15: 15px;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.wrapper .content {
    background: #F2EFE3;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    text-align: center;

}

.wrapper .content header h1 {
    font-size: 230%;
    margin-top: 0;
}

.wrapper .content section {
    color: var(--p-color);
    font-size: 15px;
}

.wrapper .content footer {
    padding: var(--padding-15);
}

.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input {
    min-height: 50px;
    min-width: 200px;
    max-width: 250px;
    padding: 0 1rem;
    color: #121212;
    font-size: 15px;
    border: 1px solid #AFB79F;
    border-radius: 6px 0 0 6px;
    background-color: #fff;
    justify-self: center;
    align-self: center;
}

.button--submit {
    min-height: 52px;
    padding: .5em 1em;
    border: none;
    border-radius: 0 6px 6px 0;
    background-color: #AFB79F;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.button--submit:hover {
    background-color: #727767;
}

.input:focus, .input:focus-visible {
    border-color: #727767;
    outline: none;
}

.wrapper .content footer input:focus, .wrapper .content footer button:focus {
    outline: none;
}

.g-recaptcha {
    margin-top: 20px; /* Adiciona espaço acima do reCAPTCHA */
    align-self: center;
}

.svg-logo {
    height: auto;
    margin: 0 0 20px; /* Centraliza o SVG abaixo do cabeçalho */
}

.svg-logo img {
    height: 100px;
}

.animated-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.svg-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para que o SVG não interfira com eventos de clique */
}

.svg-background svg {
    opacity: 0.6;
}

.content {
    position: relative;
    width: 100%;
    z-index: 1; /* Certifica-se de que o conteúdo fique acima do SVG de fundo */
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin-left: 35px;
    margin-right: 35px;
}

.benefit-item {
    display: flex;
    margin-bottom: 20px;

}

.benefit-item svg {
    margin-right: 10px;
    width: 20px;
    height: 20px; /* Adicione esta linha para definir a altura do SVG */
    flex-shrink: 0; /* Adicione esta linha para evitar que o SVG diminua em tamanho */
}

/*                        */
.image-layout {
    width: 30%;
}

/*                               */
@media screen and (max-width: 720px) {
    .wrapper {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .wrapper .content {
        padding: var(--padding-15);
    }

    .wrapper .content footer input {
        width: 200px;
        margin-bottom: 10px;
    }

    .benefits-list {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/*                                                    */


:root {
    --primaryColor: #1a1a1a;
}

ul {
    list-style: none;
}

.carousel {
    position: relative;
    aspect-ratio: 3;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    border-radius: 0.7rem;
    overflow: hidden;
    cursor: grab;
    width: 73em;
    align-self: center;
}

.carousel input {
    display: none;
}

.carousel img {
    width: 100%;
}

/* SLIDES */
.slides-flex {
    position: absolute;
    left: 0;
    width: 400%;
    height: 100%;
    display: flex;
    transition: 0.8s;
    padding: 0;
    margin: 0;
}

.carouselslide {
    width: 25%;
    display: grid;
    place-items: center;
}

.carouselslide:nth-child(1) {
    border-radius: 0.7rem 0 0 0.7rem;
}

.carouselslide:nth-child(4) {
    border-radius: 0 0.7rem 0.7rem 0;
}

.carouselslide h2 {
    user-select: none;
    color: #1a1a1a;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    outline: 3px solid;
}

/* NAVIGATION */
.navigation {
    position: absolute;
    user-select: none;
    width: 100%;
    bottom: 4%;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.navigation label {
    border: 2px solid #FFFFFF;
    padding: 0.3%;
    border-radius: 50%;
    cursor: pointer;
    transition: 1s;
}

/* ON RADIO CHECKED */
/* #radio1:checked ~ .slides-flex {
  left: 0%;
}

#radio2:checked ~ .slides-flex {
  left: -100%;
}

#radio3:checked ~ .slides-flex {
  left: -200%;
}

#radio4:checked ~ .slides-flex {
  left: -300%;
} */

#radio1:checked ~ .navigation .btn1 {
    background: #FFFFFF;
}

#radio2:checked ~ .navigation .btn2 {
    background: #FFFFFF;
}

#radio3:checked ~ .navigation .btn3 {
    background: #FFFFFF;
}

#radio4:checked ~ .navigation .btn4 {
    background: #FFFFFF;
}

/*                                    */

.iphone-case {
    --border-radius-outer: 2rem;
    --outer-padding: 0.5rem;
    --case-color: hsl(0, 0%, 0%);
    --border-radius-inner: calc(var(--border-radius-outer) - var(--outer-padding));
    box-shadow: 0 0 0 2px white;
    background-color: var(--case-color);
    border-radius: var(--border-radius-outer);
    padding: var(--outer-padding);
    width: min(370px);
    aspect-ratio: 1/2;
    position: relative;
    margin-inline: 20px;
    margin: 20px;
}

.iphone-case video {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.iphone-case:before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    height: 1.3rem;
    background-color: var(--case-color);
    width: 22%;
    border-radius: 25px;
}


.iphones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.bullet-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    text-align: start;
}

.bullet-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.bullet-list li::marker {
    content: '\2022'; /* Unicode character for a bullet point */
    color: #1A1A1A; /* Custom color for the bullet point */
    font-size: 1.5em; /* Adjust the size of the bullet point */
    left: 0;
}

/*                                    */
#mc_embed_signup {
    background: #fff;
    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }
}

.btn {
    width: 95%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    top: 370px;
    cursor: pointer;
    max-width: 1700px;
}

.text-blk {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 25px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    justify-content: flex-start;
}

.responsive-container-block.bg {
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 90%;
}

.text-blk.title {
    font-size: 46px;
    line-height: 64px;
    font-weight: 900;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 0;
}

.container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
}

.swiper-container {
    width: 85%;
    max-width: 1520px;
    height: auto;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    opacity: 0.3;
    height: fit-content;
}

.swiper-slide.swiper-slide-next {
    opacity: 1;
}

.swiper-slide.swiper-slide-next .contentSwiper .quotes {
    color: #AFB79F;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responsive-container-block.contentSwiper {
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0 4px 20px 7px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    position: relative;
    margin-top: 40px;
    margin-right: 20px;
    margin-bottom: 40px;
    margin-left: 20px;
}

.text-blk.name {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
    align-self: center;
}

.text-blk.desig {
    font-size: 20px;
    line-height: 24px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 0;
}

.text-blk.info {
    max-width: 550px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 25px;
    margin-left: 0;
    font-size: 14px;
    text-align: justify;
}

.text-blk.quotes {
    font-family: Arial;
    position: absolute;
    left: -80px;
    font-size: 180px;
    line-height: 32px;
    top: -14px;
    font-weight: 900;
    color: #A2AEA2;
}

.container-block.swiper-button-prevs {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container-block.swiper-button-nexts {
    width: auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.profile-img {
    width: auto;
    max-width: 60px;
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: 0;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    min-height: 60px;
}

.infoCliente {
    display: inline-flex;
    align-self: baseline;
}

.swiper-slide img.review {
    width: 60%;
    bottom: 3.1ch;
    position: relative;
}

.pagination-button {
    width: 36px;
    height: 36px;
}

.swiper-pagination {
    min-height: auto;
    position: relative;
}

.contentSwiper {
    margin-top: 40px;
    margin-right: 20px;
    margin-bottom: 120px;
    margin-left: 20px;
    border-width: 12px;
    border-style: solid;
    border-color: #EBEBEB;
}

@media (max-width: 1024px) {
    .swiper-slide {
        opacity: 0.3;
    }

    .swiper-slide.swiper-slide-next .contentSwiper .quotes {
        color: rgb(0, 0, 0);
    }

    .swiper-slide.swiper-slide-next {
        opacity: 1;
    }

    .swiper-slide.swiper-slide-next .contentSwiper .quotes {
        color: #A2AEA2;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        opacity: 0.3;
    }

    .swiper-slide.swiper-slide-next {
        opacity: 0.3;
    }

    .swiper-slide.swiper-slide-next .contentSwiper .quotes {
        color: rgb(0, 0, 0);
    }

    .swiper-slide.swiper-slide-active {
        opacity: 1;
    }

    .swiper-slide.swiper-slide-active .contentSwiper .quotes {
        color: #A2AEA2;
    }

    .btn {
        width: 98%;
    }

    .text-blk.title {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .swiper-slide {
        opacity: 0.3;
    }

    .swiper-slide .contentSwiper .quotes {
        color: rgb(0, 0, 0);
    }

    .swiper-slide.swiper-slide-active {
        opacity: 1;
    }

    .swiper-slide.swiper-slide-active .contentSwiper .quotes {
        color: #A2AEA2;
    }

    .btn {
        width: 99%;
    }

    .text-blk.info {
        font-size: 17px;
        line-height: 28px;
    }

    .text-blk.name {
        font-size: 16px;
        line-height: 30px;
        align-self: center;
    }

    .text-blk.desig {
        font-size: 17px;
        line-height: 28px;
    }

    .btn {
        display: none;
    }

    .responsive-container-block.contentSwiper {
        margin-top: 40px;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
    }

    .title {
        font-size: 32px;
    }

    .text-blk.title {
        font-size: 32px;
    }

    .swiper-slide img.review {
        width: 70%;
    }

}

.slide-buttonSwipper {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #AFB79F;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slide-buttonSwipper:hover {
    background: #727767;
}

.lista2colunas {
    display: flex;
}

.colunaLista {
    flex: 1;
    flex-wrap: wrap;
}

.colunaLista ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.colunaLista ol li {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    min-height: 100px;
}

.colunaLista ol li img {
    margin-right: 10px;
    width: 60px; /* Ajuste conforme necessário */
    height: 50px; /* Ajuste conforme necessário */
}

.colunaLista ol li h1 {
    margin-left: 20px;
    text-align: left;
    font-size: 20px;
    font-weight: normal;
}

ol li svg {
    min-width: 20px;
}

.lista2colunas ol {
    flex: 1 1 50%; /* Ajusta para ter duas colunas */
    padding-left: 15%;
}

.linha-pontilhada {
    height: 4px; /* Espessura da linha */
    background: repeating-linear-gradient(
            to right,
            #AEB79D,
            #AEB79D 10px,
            transparent 10px,
            transparent 20px
    );
    width: 30vh; /* Largura da linha */
    margin: 20px 0;
}

.riscado-diagonal {
    position: relative;
    display: inline-block;
    color: #851411;
    text-align: center;
    font-size: 70px;
    max-width: 800px;
    margin: 0;
    align-self: center;
    text-decoration: line-through;
}

.organicoInicioTitulo {
    align-self: center;
    left: 18vmin;
    position: relative;
    width: 15%;
    z-index: -1;
}

@media only screen and (max-width: 1260px) {
    .lista2colunas {
        flex-direction: column; /* Empilhar as colunas verticalmente */
    }

    .colunaLista {
        width: 100%; /* Definir largura de 100% para ocupar toda a largura */
        padding: 0; /* Remover o padding para evitar espaçamento extra */
    }

    .lista2colunas ol {
        padding-left: 20px;
    }

    .colunaLista ol li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        min-height: 0;
        font-size: 16px;
    }

    .colunaLista ol li h1 {
        font-size: 16px;
    }

    .colunaLista ol {
        margin-top: 0;
    }

    .riscado-diagonal {
        font-size: 50px;
    }

    .organicoInicioTitulo {
        display: none;
    }

}

.testeHighlight {
    color: #626659;
    font-weight: bold;
    background: linear-gradient(
            to bottom,
            transparent 0%,
            #F2EFE3 100%
    );
}

.mark {
    background-color: #AFB79F;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 10px;
    padding: 0 20px;
}

.highlight {
    position: relative;
    color: #626659;
    font-weight: bold;
}

.highlight:after {

    content: "";
    z-index: 1;
    width: 100%;
    height: 1em;
    bottom: -.6em;
    background-image: url(/teste.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    bottom: -.6em;
}

.listaTablets {
    margin-right: 20px;
    margin-bottom: 0;
    color: #868F75;
    font-weight: bold;
}

@font-face {
    font-family: 'MigraExtralight';
    src: url('fontes/Migra-Extralight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fontes/Montserrat-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('fontes/Oswald-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------------------------------------------------------------*/


.teste-back{
    background-color: #8e927b;
    background-size: cover; /* Ajusta para cobrir toda a tela */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetições */
}

.section-group{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-nova {
    width: 70%;
}

.section-nova-maior {
    width: 80%;
}

.titulo-migra {
    font-family: 'MigraExtralight', sans-serif;
    font-size: 66px;
    color: white;
    font-weight: 400;
    margin: 0
}

.subtitulo-migra {
    font-family: 'MigraExtralight', sans-serif;
    font-size: 38px;
    color: white;
    font-weight: 400;
    margin: 0
}

.subtitulo-novo {
    font-size: 24px;
    color: white;
}

.corpo{
    font-size: 16px;
    color: white;
}

.corpo-grande{
    font-size: 20px;
    color: white;
}

.corpo-inter{
    font-size: 16px;
    color: #1a1a1a;
    font-family: Inter, sans-serif;
    font-weight: normal;
}

.linha-vertical {
    width: 2px; /* Largura da linha */
    height: 80px; /* Altura total da tela */
    background-color: white; /* Cor da linha */
    margin-left: 40%;
}

.linha-horizontal {
    width: 80px; /* Largura da linha */
    height: 2px; /* Altura total da tela */
    background-color: white; /* Cor da linha */
    margin-left: 25%;
}

.linha-vertical-longa{
    height: 24rem;
    width: 2px; /* Largura da linha */
    background-color: white; /* Cor da linha */
    margin-left: 40%;
}

.imagem-direita-grande {
    width: 50%;
    position: absolute;
    right: 0;
}

.imagem-direita-media {
    width: 40%;
    height: 40%;
}

.imagem-absolute-esquerda{
    position: absolute;
    left: 0;
    width: 50%;
}

.imagem-absolute-direita{
    position: absolute;
    right: 0;
    width: 40%;
}

.placeholder{
    width: 50%;
}

.placeholder-none{
    display: none;
}

/* Estilos para a nova seção de meninas com luz */
@media (max-width: 768px) {
    .section-nova[style*="display: flex"] {
        flex-direction: column !important;
        padding: 40px 20px !important;
    }
    
    .section-nova[style*="display: flex"] > div {
        flex-direction: column !important;
    }
    
    .section-nova[style*="display: flex"] > div > div:last-child {
        padding-left: 0 !important;
        padding-top: 30px !important;
        text-align: center;
    }
    
    .section-nova[style*="display: flex"] h2 {
        font-size: 24px !important;
    }
    
    .section-nova[style*="display: flex"] p {
        font-size: 16px !important;
    }
}

.botao-red {
    background-color: #720202;
    color: white;
    border-radius: 20px;
    padding: 1rem 2rem;
    font-size: 16px;
    max-width: 500px;
    border: transparent;
    font-family: Inter, sans-serif;
}

.botao-red:hover {
    background: #333;
}

.botao-red-venda {
    background: linear-gradient(90deg,rgba(112, 56, 56, 1) 0%, rgba(80, 9, 9, 1) 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem 5rem;
    font-size: 16px;
    max-width: 500px;
    border: transparent;
    font-family: Inter, sans-serif;
}

.botao-red-venda:hover {
    background: #333;
}

.botao-branco {
    background-color: #fff;
    color: #8e927b;
    border-radius: 20px;
    padding: 1rem 2rem;
    font-size: 22px;
    max-width: 500px;
    border: transparent;
}

.botao-branco:hover {
    background: #e8e8e8;
    color: #8B0000;
}

.botao-verde {
    background-color: #656f65;
    color: white;
    border-radius: 20px;
    padding: 1rem 2rem;
    font-size: 22px;
    max-width: 500px;
    border: transparent;
}

.botao-verde:hover {
    background: #4c534c;
}

.container-padding-direita {

}

.container-padding-esquerda {
    padding: 0 0 0 8rem;
}

.container-padding-ambos {
    padding: 0 8rem 0 8rem;
}

li.subtitulo-novo {
    margin-bottom: 20px;
}

.imagem-celular{
    display: none;
}

.imagem-direita-media-aumenta {
    width: 50%;
}

.absolute-text{
    position: absolute;
    left: 20%;
    bottom: 50%;
    z-index: 20;
}

@media (max-width: 768px) {

    .linha-vertical-longa{
        height: 12rem
    }

    .absolute-text{
        position: static;
    }

    .corpo{
        font-size: 14px;
        color: white;
    }

    .placeholder-none{
        display: block;
    }

    .imagem-absolute-esquerda{
        display: none;
    }

    .imagem-absolute-direita{
        display: none;
    }

    .placeholder{
        display: none;
    }

    .imagem-celular{
        width: 90%;
        display: block;
        margin-top: 20px;
    }

    .imagem-direita-grande {
        display: none;
    }

    .imagem-direita-media {
        display: none;
    }

    .imagem-direita-media-aumenta {
        display: none;
    }

    .titulo-migra {
        font-size: 36px;
    }

    .subtitulo-novo {
        font-size: 14px;
    }

    .subtitulo-migra{
        font-size: 26px;
    }

    .bar {
        width: 100%;
    }

    .container-padding-esquerda {
        padding: 0;
        width: 80%;
    }

    .container-padding-ambos {
        padding: 0;
    }

    .botao-red{
        padding: 0.8rem 1.2rem;
        font-size: 14px;
        margin-bottom: 60px;
        align-self: center !important;
    }

    .botao-red-venda{
        padding: 1rem 1.5rem;
        font-size: 14px;
        margin-bottom: 60px;
        align-self: center;
    }

    .botao-branco{
        padding: 0.8rem 1.2rem;
        font-size: 14px;
        margin-bottom: 60px;
    }

    .botao-verde{
        padding: 0.8rem 1.2rem;
        font-size: 14px;
        margin-bottom: 60px;
    }
}

.text-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    right: 0;
    max-width: 1000px;
}

.bar {
    display: flex;
    align-items: center;
    background-color: #84876a;
    padding: 1rem 2.5rem;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    color: white;
    font-weight: normal;
    font-size: 28px;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, .1));
    position: relative;
    text-align: left;
    gap: 10px; /* Espaço entre o ícone e o texto */
}

@media (max-width: 768px) {
    .text-box {
        position: relative;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .bar {
        font-size: 14px;
        padding: 1rem 9.7vw;
    }
}


/* Responsivo */
@media (max-width: 768px) {
    .text-box {
        position: relative;
        right: 0;
        width: 88%;
        text-align: center;
    }

    .icon-check-medio{
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1500px) {

    .wrap-bars {
        flex-direction: column;
    }
}

.secao-comparativa {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.conteudo-comparacao {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
}

.cartao-comparacao {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 45%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.titulo-cartao {
    font-style: italic;
    font-style: italic;
    font-size: 28px;
    font-family: 'MigraExtralight', sans-serif;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: normal;
}

.texto-destaque {
    color: #8B0000;
}

.lista-cartao {
    list-style: disc;
    padding-left: 20px;
    font-size: 22px;
    color: #1A1A1A;
    text-align: left;
}

.lista-cartao li{
    margin-bottom: 20px;
}

.secao-destaque {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e0e0d1;
    text-align: center;
}

.titulo-estilizado {
    font-size: 60px;
    font-weight: normal;
    color: #fff;
    font-family: 'MigraExtralight', sans-serif;
    margin: 0;
}

.subtitulo-diferente {
    font-style: italic;
    font-size: 50px;
    color: #bcbca7;
    margin: 0;
    font-family: 'MigraExtralight', sans-serif;
}

.grade-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 30px;
    max-width: 1200px;
    width: 100%;
}

.cartao-beneficio {
    background: #fff;
    padding: 1.5rem 2rem;
    min-width: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-style: italic;
    font-weight: normal;
    font-family: 'MigraExtralight', sans-serif;
    font-size: 28px;
    color: #8e927b;
    position: relative;
}

.item-check-absolute{
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.imagem-absolute-canto{
    width: 25%;
    position: absolute;
    bottom: -70px;
    right: -95px;
    display: block;
}

.icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.icon-check {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.icon-check-medio {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.half-gradient{
    width: 100%;
    background: linear-gradient(to top, #68695a 30%, transparent 100%);
}

.imagem-meninas{
    width: 40%;
    border-radius: 10px;
    position: absolute;
    bottom: 20%;
    right: 10%;
}

.spacing-footer{
    margin-top: 30vh;
}

.margin-top-absolute{
    margin-top: 8rem;
}

@media (max-width: 1356px) {
    .imagem-absolute-canto {
        display: none;
    }
}
@media (max-width: 768px) {

    .margin-top-absolute{
        margin-top: 2rem;
    }

    .imagem-meninas{
        width: 55%;
        bottom: 13%;
    }

    .spacing-footer{
        margin-top: 5vh;
    }

    .lista-cartao {
        font-size: 18px;
    }

    .cartao-comparacao{
        width: 100%;
    }

    .conteudo-comparacao{
        flex-wrap: wrap;
    }
    .grade-beneficios {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cartao-beneficio{
        margin: 10px;
        font-size: 18px;
    }

    .titulo-estilizado{
        font-size: 30px;
    }

    .subtitulo-diferente{
        font-size: 36px;
    }

    .cartao-comparacao{
        padding: 1rem;
    }
}

@media (max-width: 720px) {
    .imagem-meninas{
        width: 155%;
        bottom: 13%;
    }
}

.logo-branca{
    width: 20%;
    height: auto;
}

.logo-branca-footer{
    width: 15% !important;
}

.title-heading-oswald{
    font-size: 44px;
    font-weight: bolder;
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.subtitle-heading{
    font-size: 34px;
    font-family: 'Montserrat';
    font-weight: bolder;
    margin: 0;
}

.corpo-montserrat{
    font-family: 'Montserrat';
    font-size: 16px;
    color: white;
}

.titulo-inter{
    font-size: 30px;
    font-family: Inter, sans-serif;
    font-weight: normal;
    color: #1a1a1a;
}

.titulo-inter-grande{
    font-size: 40px;
    font-family: Inter, sans-serif;
    font-weight: normal;
    color: #1a1a1a;
}

.titulo-inter-gigante{
    font-size: 90px;
    font-family: Inter, sans-serif;
    font-weight: normal;
    color: #1a1a1a;
    margin: 0;
}

.card-text{
    background-color: #eaeaea;
    border-radius: 9px;
    padding: 0rem 1rem;
    display: flex;
    justify-items: center;
    align-items: center;
}

.check-svg{
    width: 40px;
    margin-right: 10px;
    height: 40px;
}

.flex-wrap{
    display: flex; flex-wrap: nowrap
}

.section-separada{
    min-height: 865px;
    justify-content: center;
    align-content: center;
}

.section-separada-menor{
    min-height: 600px;
    justify-content: center;
    align-content: center;
}

@media (max-width: 768px) {

    .section-separada{

        height: 100%;
        padding: 0;
        min-height: 200px;

    }

    .section-separada-menor{

        min-height: 0;
        padding: 4rem 0;

    }

    /* Reduzir espaçamentos para mobile */
    .section-nova {
        padding: 2rem 1rem !important;
    }

    .section-nova-maior {
        width: 90%;
    }

    /* Ajustar espaçamentos dos blocos */
    .block-list {
        gap: 1rem !important;
        margin-top: 2rem !important;
    }

    .block-item {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    /* Ajustar padding-top do hero para tablets */
    .hero-content {
        padding-top: 4rem !important;
    }

    /* Ajustar espaçamentos dos cards */
    .card-text {
        padding: 1.5rem !important;
    }

    /* Ajustes para dispositivos muito pequenos */
    @media (max-width: 480px) {

        .block-list {
            gap: 0.5rem !important;
            margin-top: 1rem !important;
        }

        .block-item {
            padding: 0.5rem !important;
            margin-bottom: 0.5rem !important;
        }

        /* Ajustar padding-top do hero no mobile */
        .hero-content {
            padding-top: 2rem !important;
        }

        /* Ajustar espaçamentos dos botões no mobile */
        .botao-yellow {
            margin-top: 1rem !important;
            margin-bottom: 1rem !important;
        }
        /* Ajustar espaçamentos dos cards no mobile */
        .card-text {
            padding: 1rem !important;
        }
    }

    .flex-wrap{
        flex-wrap: wrap;
        gap: 10px;
    }

    .title-heading-oswald{
        font-size: 20px;
    }

    .subtitle-heading{
        font-size: 20px;
        font-weight: bolder;
        margin: 0;
    }

    .titulo-inter{
        font-size: 18px;
        font-family: Inter, sans-serif;
        font-weight: normal;
        color: #1a1a1a;
    }

    .titulo-inter-grande{
        font-size: 28px;
        font-family: Inter, sans-serif;
        font-weight: normal;
        color: #1a1a1a;
    }

    .titulo-inter-gigante{
        font-size: 50px;
        font-family: Inter, sans-serif;
        font-weight: normal;
        color: #1a1a1a;
        margin: 0;
    }
}

.card-image{
    width: 100%;
}

.card-image img{
    width: 100%;
}

.card-image-horizontal{
    display: flex;
    flex-wrap: wrap;
    background-color: #8e927b;
    border-radius: 8px;
    padding: 1rem;
    justify-content: space-around;
}

.card-image-horizontal img{
    max-height: 25vh;
}

.card-image-horizontal p{
    max-width: 500px;
}

.text-card-itens{
    display: flex;
    justify-content: space-between;
    width: 90%;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.preco-inter{
    font-family: Inter, sans-serif;
    font-size: 8rem;
    font-weight: bold;
    color: white;
    text-align: center;
    font-style: italic;
    margin: 0;
    width: fit-content;
    align-self: center;
}

.strikethrough {
    position: relative;
}

.strikethrough:before {
    position: absolute;
    color: #d1443e;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 6px solid;
    border-color: inherit;

    -webkit-transform:rotate(-13deg);
    -moz-transform:rotate(-13deg);
    -ms-transform:rotate(-13deg);
    -o-transform:rotate(-13deg);
    transform:rotate(-13deg);
}

.faq-container {
    max-width: 1100px;
    width: 80%;
}

.faq-item {
    background-color: #fff;
    color: #000;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.faq-item.open .arrow-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 1rem;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.section-imagem-topo {
    background-image:
            url('img/precificacao/meninas-header-menor.webp'),
            linear-gradient(90deg, rgb(140, 148, 124) 30%, rgb(60, 60, 51) 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

.padding-banner{
    padding: 13rem 6rem 2rem 6rem;
}

.margin-top-banner{
    top: -340px;
}

.padding-sm-section{
    padding: 4rem 0;
}

.padding-bottom-section{
    padding: 14rem 0 0 0;
}

.section-celular{
    display: none !important;
}

.titulo-surgir{
    display: none;
}

.padding-y{
    padding: 8rem 0 !important;
}

.padding-y-6{
    padding: 6rem 0 !important;
}

.padding-y-celular{
    padding: 0 !important;
}

.flex-1-pc{
    flex: 1;
}

@media (max-width: 1381px) {
    .md-tablet-pc{
        display: none !important;
    }

    .sm-position-static{
        position: static !important;
    }

    .md-tablet-pc-visibility{
        display: flex !important;
    }

    
}

.mentoras-flex-responsive{
    display: flex;
}

@media (max-width: 768px) {

    .strikethrough:before {
        border-top: 3px solid;
    }

    .mentoras-flex-responsive{
        display: block !important;
    }

    .flex-1-pc{
        flex: auto;
    }

    .padding-y-celular{
        padding: 4rem 0 4rem 0 !important;
    }

    .margin-top-banner{
        top: -155px;
    }

    .padding-bottom-section{
        padding: 14rem 0 8rem 0;
    }

    .padding-banner{
        padding: 7rem 1rem 0 1rem;
        margin-top: 8rem;
    }

    .preco-inter{
        font-size: 4rem;
    }

    .section-nova {
        width: 80%;
    }

    .card-image-horizontal img{
        max-height: 15vh;
    }

    .section-imagem-topo{
        background: linear-gradient(90deg, rgb(140, 148, 124) 30%, rgb(60, 60, 51) 100%);
    }

    .text-card-itens{
        flex-direction: row;
        flex-wrap: nowrap;
        flex: 1;
    }

    .linha-horizontal{
        flex: auto !important;
    }

    .image-containerMaiorPC {
        display: none;
    }

    .titulo-sumir{
        display: none !important;
    }

    .titulo-surgir{
        display: block !important;
    }

    .section-celular{
        display: flex !important;
    }

    .section-pc{
        display: none !important;
    }

    .section-pc-visibility{
        visibility: hidden !important;
    }

    .subtitulo-novo {
        font-size: 18px;
        color: white;
    }

    .corpo-grande {
        font-size: 16px;
        color: white;
    }

    .corpo-montserrat{
        font-family: 'Montserrat';
        font-size: 14px;
    }

    .image-containerMediaAumenta {
        width: 100%;
    }

}

.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.botao-yellow{
    background-color: #c4943f;
    color: white;
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 20px;
    padding: 1rem 2rem;
    border-radius: 20px;
    border: transparent;
    transition: transform 0.3s ease;
    max-width: 450px;
    z-index: 3;
}

.block-list {
    display: flex;
    gap:100px;
}

.block-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px
}

.icon-block {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c4943f, #e4b934);
    color: white;
    font-size: 24px;
}

.icon-block img{
    width: 50px;
    height: 50px;
}

.block-text {
    font-size: 16px;
    line-height: 1.3;
    font-style: italic;
    max-width: 200px;
}

.block-text strong {
    display: block;
    font-size: 18px;
}

