@font-face {
    font-family: "Nunito SemiBold";
    src: url("Nunito/Nunito-SemiBold.ttf");
}

@font-face {
    font-family: "Nunito Bold";
    src: url("Nunito/Nunito-Bold.ttf");
}

@font-face {
    font-family: "Nunito SemiBoldItalic";
    src: url("Nunito/Nunito-SemiBoldItalic.ttf");
}

@font-face {
    font-family: "Nunito BoldItalic";
    src: url("Nunito/Nunito-BoldItalic.ttf");
}

@font-face {
    font-family: "Nunito Medium";
    src: url("Nunito/Nunito-Medium.ttf");
}

@font-face {
    font-family: "Nunito Regular";
    src: url("Nunito/Nunito-Regular.ttf");
}

:root {
    --azulEscuro: rgba(9, 9, 121, 1);
    --verdeAzulado: rgb(17 155 183);
    --roxo: #cacaed;
    --roxoEscuro: #6650F3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Regular";
}

h2 {
    font-family: "Nunito Bold";
}

body {
    color: #333;
    background-color: #cacaed;
    overflow-x: hidden;
}

.container {
    max-width: 75vw;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header - Corrigido */
.site-header {
    height: 100px;
    background: linear-gradient(162deg,
            rgba(2, 0, 36, 1) 0%,
            var(--azulEscuro) 67%,
            rgba(0, 212, 255, 1) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

#headerPlataforma .nav-links.open {
    height: 160px;
    padding-top: 10px;
}

#headerPlataforma .nav-links a {
    margin: 10px 0 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 85vw;
}

.logo {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
    text-shadow: 0px 0px 8px rgba(74, 144, 226, 0.8);
}

/* Botão de menu hamburguer - escondido por padrão */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hide {
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay escuro para contraste */
    z-index: 0;
}

section {
    padding: 80px 0;
    scroll-margin-top: 120px;
}

.btn {
    width: 80%;
    font-size: 1.3rem;
    padding: 10px 35px;
    background: #cc890d;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.btnFinal {
    width: 300px;
    height: 60px;
}

.btn:hover {
    background: #4a90e2;
    color: white;
    transform: scale(1.05);
}

/* Seção Sobre - Atualizada */
#sobre {
    position: relative;
    height: calc(100vh - 124px);
    display: flex;
    background-image: url('img/fundoGrande.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#sobre::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Conteúdo dentro do #sobre */
#sobre>* {
    position: relative;
    z-index: 2;
    /* para ficar acima do overlay */
}

#sobre .container {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-top: 41px;
    margin-left: 50px;
}

#sobre img {
    width: 570px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#sobre .texto-sobre {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    color: #fff;
    flex: 1;
    width: 370px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

#sobre .texto-sobre h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

#sobre .texto-sobre span {
    color: #00b4d8;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

#sobre .texto-sobre p {
    font-size: 1.4rem;
    font-family: "Nunito Bold";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-sobre {
    flex: 1;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.carousel-inner {
    display: flex;
    animation: slideSobre 10s infinite;
}

.carousel-item {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-item img {
    max-width: 600px;
    width: 100%;
    height: 370px;
    object-position: center;
    border-radius: 10px;
}

/* Seção de produtos */

#produtos-servicos {
    background: var(--azulEscuro);
    padding: 120px 20px;
    text-align: center;
}

#produtos-servicos h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 80px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.produtos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.produtos .item {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 40px 25px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produtos .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.produtos .item i {
    font-size: 4rem;
    color: var(--verdeAzulado);
    margin-bottom: 20px;
}

.produtos .item h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
}

.produtos .item p {
    font-size: 1.4rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Seção de clientes */

#clientes {
    padding: 120px 20px;
    background: #f9f9f9;
    text-align: center;
}

#clientes h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--azulEscuro);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.clientes-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.clientes-imagem {
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.clientes-imagem img {
    width: 100%;
    max-width: 500px;
    min-width: 500px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.clientes-conteudo {
    min-width: 300px;
    max-width: 700px;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cliente-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: var(--azulEscuro);
}

.cliente-item:hover {
    transform: translateY(-8px);
}

.cliente-item i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cliente-item p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.clientes-footer {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: black;
}

@media (max-width: 900px) {
    .clientes-container {
        flex-direction: column;
    }

    /* .clientes-grid {
        grid-template-columns: 1fr;
    } */

    .clientes-imagem img {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .clientes-grid {
        grid-template-columns: 1fr;
    }
}

/* Seção Benefícios */

#beneficios {
    position: relative;
    /* necessário para o overlay se posicionar corretamente */
    background: url(img/fundoMedico.png);
    background-size: cover;
    background-position: top center;
}

/* Pseudo-elemento ::before para o overlay */
#beneficios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(10 10 10 / 50%);
    z-index: 1;
}

/* Conteúdo dentro do #beneficios */
#beneficios>* {
    position: relative;
    z-index: 2;
}

.beneficios-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 75vw;
}

.benefits-grid {
    min-width: 320px;
}

#beneficios h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 80px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.benefit-card {
    max-width: 700px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    /* um pouco mais suave e “flutuante” */
}


.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card .icon-circle {
    background: var(--verdeAzulado);
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: var(--azulEscuro);
}

.benefit-card p {
    font-size: 1.4rem;
    color: black;
    line-height: 1.5;
}

.benefits-image {
    min-width: 500px;
    display: flex;
    justify-content: center;
}

.benefits-image img {
    width: 100%;
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .beneficios-container {
        flex-direction: column;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

#saiba-mais {
    padding: 100px 0;
    background: linear-gradient(90deg, #0066cc, #0052a3);
    background: url(img/fundoSecao2.png);
    color: white;
    background-size: cover;
}

#saiba-mais h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#saiba-mais p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #e0e0e0;
    font-family: "Nunito Bold";
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    padding: 0 60px;
    background: #012458;
    color: #a0b5d8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

footer img {
    width: 70px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #00b4d8;
}

.fa-envelope {
    margin-right: 4px;
    margin-bottom: 4px;
}

.whatsapp-fixo {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25d366;
    color: white;
    font-size: 2.4rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: pulse 5s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-fixo i {
    margin-left: 2px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.logoGroup {
    display: flex;
    align-items: center;
}

.titulo {
    font-family: "Nunito BoldItalic";
    margin-left: 4px;
    color: white;
    font-size: 38px;
}

/* Seção depoimentos */

#depoimentos {
    position: relative;
    background-color: var(--azulEscuro);
    color: white;
    overflow: hidden;
}

#depoimentos::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("LogoN.svg") repeat center center;
    background-size: 50px 50px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

#depoimentos>* {
    position: relative;
    z-index: 1;
}

#depoimentos h2 {
    font-size: 2.6rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.carousel-depoimentos {
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    animation: slideDepoimentos 15s infinite;
}

.depoimento {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
}

.depoimento img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.depoimento .texto {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.depoimento .nome {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

#produtos-servicos .container {
    max-width: 85vw;
}

.menu-toggle {
    display: none;
    /* escondido por padrão */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

#menu-overlay {
    display: none;
    /* escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    /* preto semi-transparente */
    z-index: 900;
    /* abaixo do menu que é 1000+ */
    transition: opacity 0.4s ease;
}

@keyframes slideSobre {

    0%,
    49% {
        transform: translateX(0);
    }

    50%,
    100% {
        transform: translateX(-100%);
    }
}

/* Seção Plataforma */

#plataforma {
    position: relative;
    padding: 100px 0;
    background: url(img/plataforma.png) center/cover no-repeat;
    height: 80vh;
    overflow: hidden;
}

#plataforma::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

#plataforma h2,
#plataforma .plataforma-texto {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 0;
}


#plataforma h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

#plataforma h2 span {
    color: var(--verdeAzulado);
}

.plataforma-texto {
    margin-bottom: 80px;
    font-size: 1.4rem;
    color: black;
    line-height: 1.6;
    text-align: center;
    font-family: "Nunito Bold";
}

.plataforma-overlay-box {
    background: rgba(0, 0, 0, 0.35);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    max-width: 480px;
    margin: 0 0 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Seção Solução */

#solucao h2 {
    font-size: 2.6rem;
    color: var(--azulEscuro);
    margin-bottom: 60px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.solutions p {
    font-size: 1.4rem;
    color: black;
    line-height: 1.6;
    text-align: center;
    font-family: "Nunito Bold";
}

.solutions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.solution {
    width: 30%;
    padding: 50px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.solution i {
    font-size: 2.5rem;
    color: var(--verdeAzulado);
    margin-bottom: 20px;
}

.solution h3 {
    font-size: 1.6rem;
    color: #4a90e2;
}

.solution p {
    margin-top: 10px;
    color: black;
}

.fa-hospital-alt {
    margin-top: 40px;
}

#plataforma a {
    width: 300px;
}

/* Seção de planos */

#planos {
    background: var(--azulEscuro);
    padding: 120px 20px;
    text-align: center;
}

#planos h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

#planos h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 40px;
}

.tipos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.tipos .item {
    cursor: pointer;
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 40px 25px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tipos .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tipos .item i {
    font-size: 4rem;
    color: var(--verdeAzulado);
    margin-bottom: 20px;
}

.tipos .item h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
}

.tipos .item p {
    font-size: 1.4rem;
    color: #222;
    line-height: 1.6;
    margin-bottom: 20px;
}

.carousel-item img {
    height: 400px;
}

@media (min-width: 1300px) {
    #sobre .container {
        height: auto;
    }
}

@media (max-width: 1700px) {

    .beneficios-container,
    #produtos-servicos .container,
    .container {
        max-width: 90vw;
    }

    #beneficios h2 {
        margin-bottom: 60px;
    }

    .benefits-grid {
        max-width: 500px;
    }

    .benefits-image {
        min-width: 0;
    }

    .benefits-image img {
        max-width: 400px;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

}


html {
    font-size: 14px;
}


@media (max-width: 1300px) {
    .carousel-item img {
        height: 375px;
    }

    #sobre .container {
        height: 400px;
    }

    #sobre,
    #produtos-servicos,
    #clientes,
    #beneficios,
    #depoimentos,
    #saiba-mais,
    #plataforma,
    #planos {
        padding: 60px 0;
    }

    .benefits-grid {
        min-width: 320px;
        max-width: 400px;
    }

    .beneficios-container {
        gap: 50px;
        width: 90vw;
    }

    .benefit-card .icon-circle {
        font-size: 1.5rem;
    }

    .produtos .item {
        padding: 26px 20px;
    }

    .solutions {
        gap: 60px;
    }

    .carousel-sobre {
        max-width: 500px;
        height: 375px;
    }

    .solution {
        width: 360px;
    }
}

@media (max-width: 1150px) {

    .nav-links {
        gap: 16px;
    }

    .solutions {
        flex-direction: column-reverse;
    }
}

@media (max-width: 1000px) {

    .carousel-item img {
        height: 350px;
    }

    .menu-toggle {
        display: flex;
        /* mostra o hambúrguer no mobile */
    }

    .menu-toggle div {
        width: 30px;
        height: 3px;
        background-color: white;
        transition: all 0.4s ease;
        border-radius: 2px;
    }

    .nav-links {
        position: absolute;
        top: 90px;
        right: 0;
        background: linear-gradient(to bottom, #03045e, #023e8a);
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
    }

    .nav-links.open {
        height: 344px;
        padding-top: 10px;
    }

    .nav-links a {
        margin: 10px 0 0;
    }

    #beneficios {
        background: url(img/fundo2Mobile.png);
        background-position: center top;
    }

    .produtos {
        gap: 30px;
    }

    .clientes-container {
        gap: 40px;
    }

    .beneficios-container,
    #produtos-servicos .container,
    .container {
        max-width: 90vw;
    }

    .benefits-grid {
        max-width: 400px;
    }

    .benefits-image {
        min-width: 0;
    }

    .benefits-image img {
        max-width: 300px;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 20px 14px;
    }

    .benefit-card .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .logo {
        height: 40px;
        width: auto;
    }

    .produtos {
        flex-direction: column;
        align-items: center;
    }

    .produtos .item {
        max-width: 80%;
    }

    #plataforma {
        padding: 20px 0;
    }

    #plataforma .container {
        height: 100%;
        display: flex;
        ;
        align-items: flex-end;
        justify-content: center;
    }

    .plataforma-overlay-box {
        padding: 20px;
        max-width: 435px;
        margin: 0;
        width: 435px;
        margin-bottom: 10vh;
    }

    .plataforma-texto {
        font-size: 1.3rem;
    }

    #plataforma h2 {
        line-height: 1.2;
        font-size: 2.2rem;
    }
}

@keyframes slideDepoimentos {

    0%,
    30% {
        transform: translateX(0);
    }

    33.33%,
    63.33% {
        transform: translateX(-100%);
    }

    66.66%,
    96.66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .depoimento .texto {
        font-size: 1rem;
    }

    .produtos {
        flex-direction: column;
        align-items: center;
    }

    .produtos .item {
        max-width: 80%;
    }

    .clientes-lista {
        font-size: 1rem;
    }

    #sobre img,
    .clientes-imagem img,
    .clientes-imagem {
        width: 80vw;
        min-width: 0;
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }

    .solution {
        width: 360px;
    }

    .results-content {
        flex-direction: column;
    }

    .stats,
    .chart-container {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .carousel-sobre {
        max-width: 360px;
        height: 200px;
    }

    .carousel-item img {
        max-width: 360px;
        width: 100%;
        height: 225px;
        object-position: center;
        border-radius: 10px;
    }
}

@media (min-width: 500px) and (max-width: 1000px) {
    #sobre .texto-sobre {
        margin-left: 0;
        margin-bottom: 20%;
    }

    #sobre .container {
        display: flex;
        align-items: flex-end;
        margin: 0 auto;
        height: calc(100vh - 250px);
    }
}

@media (max-width: 500px) {

    #sobre {
        height: calc(100vh - 140px);
        align-items: flex-end;
        background-image: url(img/fundoMobile.png);
        background-position: top center;
    }

    #sobre .container {
        width: 300px;
        padding: 0;
        margin: 0 auto 50%;
        align-items: flex-end;
        height: 100%;
    }

    #sobre .texto-sobre {
        margin-left: 0;
        padding: 20px;
    }

    #sobre .texto-sobre h2 {
        line-height: 32px;
        font-size: 1.6rem;
    }

    #sobre .texto-sobre p {
        font-size: 1.15rem;
    }

    .header-content {
        display: flex;
        justify-content: center;
        gap: 90px;
    }

    .carousel-item img {
        height: 215px;
    }

    .container {
        max-width: 94vw;
    }

    .solution {
        width: 90vw;
    }

    .logo {
        height: 34px;
        width: auto;
    }

    #sobre,
    #produtos-servicos,
    #clientes,
    #beneficios,
    #depoimentos,
    #saiba-mais,
    #plataforma,
    #planos {
        padding: 30px 0;
    }

    .clientes-imagem {
        min-width: 280px;
    }

    #produtos-servicos h2,
    #clientes h2,
    #beneficios h2,
    #depoimentos h2,
    #saiba-mais h2 {
        margin: 0 20px 40px;
    }

    .beneficios-container,
    #produtos-servicos .container,
    .container {
        width: 94vw;
    }

    .produtos .item {
        max-width: 90vw;
    }

    #saiba-mais p {
        font-size: 1.4rem;
    }

    .whatsapp-fixo {
        bottom: 70px;
    }

    footer {
        padding: 20px;
        flex-direction: column;
        height: 120px;
        gap: 10px;
    }

    #plataforma {
        padding: 20px 0;
    }

    #plataforma .container {
        padding: 10px;
    }

    .plataforma-overlay-box {
        padding: 10px;
    }

    .plataforma-texto {
        font-size: 1.2rem;
    }

    #plataforma h2 {
        margin-bottom: 10px;
    }
}

@media (min-width: 400px) and (max-width: 500px) {
    #sobre .container {
        margin: 0 auto 40%;
    }
}