@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;
}

:root {
    --verde-escuro: #0b2b54;
    --verde: #2f9362;
    --orange: #ff7c37;
    --degrade-btn: linear-gradient(#40d2ab, #008865);
    --color-p: #a1a1a1;
    --color-p-2: #868585;
}

/* Cor dos textos <p> em preto */
p {
    color: black;
    

}

/* Cor dos textos <h2> em azul escuro */
h2 {
    color: white; /* Azul escuro */
}

.background-verde {
    background: var(--verde-escuro);
}

/* Classes reutilizáveis */
.container {
    max-width: 1440px;
    padding: 0 5%;
    margin: 0 auto;
}

section,
footer {
    padding: 2.7rem 0;
}

.btn-gradiente {
    padding: 10px 25px;
    color: white;
    border: none;
    cursor: pointer;
    background-image: var(--degrade-btn);
}

/* Classes do site */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    width: 150px; /* Ajuste conforme necessário */
    height: auto;
}

.ul {
    display: flex;
    align-items: center;
}

.ul li {
    margin: 0 35px;
    font-size: 15px;
}

.ul li a {
    color: white;
}

/* Main */
main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.main-text {
    width: 50%;
    color: white;
}

.main-text h1 {
    font-size: 4.5rem;
}

.main-text div {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.main-img {
    width: 40%;
}

.main-img img {
    width: 100%;
}

/* Menu icon */
.menu-icon {
    display: none;
    position: relative;
    z-index: 10;
}

/* Resultados */
.resultados {
    background-color: #0b2b54; /* Azul escuro */
    color: white; /* Texto branco */
    padding: 40px 0;
    text-align: center;
}

.resultados .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resultados .resultados-text {
    font-size: 1.6rem;
    font-weight: 600;
    width: 50%;
    color: white; /* Texto branco */
}

.resultados .resultados-numero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultados .resultados-numero .btn-gradiente {
    background: linear-gradient(45deg, #00c6ff, #0072ff); /* Gradiente azul */
    color: white;
    padding: 20px 40px; /* Aumentei o padding para deixar o botão maior */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.4em; /* Aumentei o tamanho da fonte */
    transition: 0.3s ease; /* Transição suave */
}

.resultados .resultados-numero .btn-gradiente:hover {
    background: linear-gradient(45deg, #005bb5, #0099cc); /* Gradiente mais escuro ao passar o mouse */
}




/* ---------------------------  Section diferenciais ------------------------------ */

.diferenciais .container {
    display: flex;
    flex-direction: column; /* Altera para coluna para acomodar as linhas de cards */
    gap: 30px; /* Espaçamento entre as linhas de cards */
}

.diferenciais .card-row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adiciona espaçamento entre os cards */
}

.diferenciais .card {
    width: 48%; /* Largura dos cards */
    cursor: pointer;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    background-color: rgb(255, 255, 255); /* Fundo branco para os cards */
    box-shadow: 0px 10px 67px 8px #e6e6e6; /* Sombra para destacar os cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaçamento entre a imagem e o texto */
    text-align: justify; /* Justifica o texto */
    text-align-last: center; /* Centraliza a última linha do texto */
}

/* Estilos específicos para os cards centralizados */
.diferenciais .card-centralizado {
    width: 100%; /* Ocupa toda a largura disponível */
    max-width: 800px; /* Define uma largura máxima */
    margin: 0 auto; /* Centraliza o card horizontalmente */
    text-align: justify; /* Justifica o texto */
    text-align-last: center; /* Centraliza a última linha do texto */
}
.diferenciais .card:hover {
    transform: translateY(-10px); /* Efeito de levantar ao passar o mouse */
}

.diferenciais .card img {
    width: 60px;
}

.diferenciais .card .titulo {
    margin: 1px 0;
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--verde-escuro); /* Cor do título */
}

.diferenciais .card p {
    color: var(--color-p-2); /* Cor do texto */
}



/* ---------------------------  Section diferenciais 2 ------------------------------ */



/* Estilos gerais para o card */
.diferenciais2 .card {
    display: flex; /* Ativa o flexbox */
    align-items: center; /* Centraliza verticalmente */
    gap: 20px; /* Espaçamento entre as colunas */
    padding: 20px;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 67px 8px #e6e6e6;
    transition: 0.3s ease; /* Transição suave */
}

.diferenciais2 .card:hover {
    transform: translateY(-10px); /* Efeito de levantar ao passar o mouse */
}

/* -------------  Section diferenciais 2 --------------- */


















/* Contêiner principal para os vídeos */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espaçamento entre os cards */
    justify-content: center;
    padding: 20px;
}

/* Estilo de cada card de vídeo */
.video-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.33% - 20px); /* 3 cards por linha com espaçamento */
    max-width: 400px; /* Largura máxima para cada card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Thumbnail do vídeo */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.thumbnail-image {
    width: 100%;
    display: block;
    border-radius: 10px 10px 0 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    opacity: 1;
}

/* Informações do vídeo */
.video-info {
    padding: 30px;
}

.video-title {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #333;
}

.video-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.video-description {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Iframe do vídeo (oculto inicialmente) */
.video-embed {
    display: none;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    position: relative;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Exibir o iframe ao clicar na thumbnail */
.video-card.active .video-thumbnail {
    display: none;
}

.video-card.active .video-embed {
    display: block;
}

/* Responsividade */
@media (max-width: 1024px) {
    .video-card {
        width: calc(50% - 20px); /* 2 cards por linha em telas menores */
    }
}

@media (max-width: 768px) {
    .video-card {
        width: 100%; /* 1 card por linha em telas pequenas */
    }
}














.video-card2 {
    width: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
}

.video-embed2 {
    display: flex;
}

.video-info2 {
    padding: 10px;
}

.video-title2 {
    margin: 10px 0;
    font-size: 20px;
}

.video-meta2 {
    font-size: 14px;
    color: #666;
}






















.bio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Espaçamento entre os cards */
    justify-content: center;
    padding: 20px;
    max-width: 2200px; /* Largura máxima do grid */
    margin: 0 auto; /* Centraliza o grid na página */

}

.bio-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(100% - 20px); /* Cada card ocupa 40% da largura do grid (80% no total) */
    max-width: 800px; /* Largura máxima para cada card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.bio-image {
    width: 100%;
    height: 350px; /* Altura fixa para a imagem */
    overflow: hidden;
}

.bio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra o espaço */
    border-radius: 10px 10px 0 0;
}

.bio-info {
    margin-top: -60px;
    padding: 40px;
}

.bio-title {
    padding: 40px;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.bio-description {
    font-size: 1em;
    color: #555;
    line-height: 1.9;
    margin-bottom: 5px;
    text-align: justify;
    margin-bottom: 15px;
}

.bio-ref {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
    text-align: justify;
    margin-bottom: 5px;
}

.bio-details {
    list-style: none;
    padding: 0;
    margin-top: -20px;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #666;
}

.bio-details li {
    margin-bottom: 8px;
}

























/* Contêiner principal para os cursos */
.course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 26px; /* Espaçamento entre os cards */
    justify-content: center;
    padding: 20px;
}

/* Estilo de cada card de curso */
.course-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.33% - 20px); /* 3 cards por linha com espaçamento */
    max-width: 400px; /* Largura máxima para cada card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Imagem do curso */
.course-image {
    width: 100%;
    height: 200px; /* Altura fixa para a imagem */
    overflow: hidden;
}

.course-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra o espaço */
    border-radius: 10px 10px 0 0;
}

/* Informações do curso */
.course-info {
    padding: 30px;
}

.course-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.course-description {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;

}

.course-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
    color: #666;

}

.course-details li {
    margin-bottom: 8px;
}

/* Botão "Saiba Mais" */
.course-action {
    margin-top: -40px;
    padding: 30px;
    text-align:left;
}




















.btn-gradiente {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s ease;
}

.btn-gradiente:hover {
    background: linear-gradient(90deg, #2575fc, #6a11cb);
}

/* Responsividade */
@media (max-width: 1024px) {
    .course-card {
        width: calc(50% - 20px); /* 2 cards por linha em telas menores */
    }
}

@media (max-width: 768px) {
    .course-card {
        width: 100%; /* 1 card por linha em telas pequenas */
    }
}









.course-action2 {
    margin-top: 30px;
    padding: 0px;
    text-align:left;
}










/* Estilo do botão de fechar */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    background-color: white; /* Moldura branca */
    border: 2px solid #000; /* Borda preta */
    border-radius: 50%; /* Formato circular */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001; /* Garante que fique acima da imagem */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Estilo do popup */
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
    overflow: auto;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 20px;
    border-radius: 10px;
}

/* Contêiner da imagem */
.image-container {
    width: 100%;
    height: 100%;
    text-align: center;
}

/* Estilo da imagem dentro do popup */
#popup-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

/* Botões de zoom */
.zoom-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 1001; /* Garante que os botões de zoom fiquem acima da imagem */
}

.zoom-controls button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.zoom-controls button:hover {
    background-color: #0056b3;
}

/* Fundo escurecido quando o popup está aberto */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}




















.diferenciais2 .card:hover {
    transform: translateY(-10px); /* Efeito de levantar ao passar o mouse */
}


/* Coluna do ícone (10% da largura) */
.coluna-icone {
    width: 10%; /* Ocupa 10% da largura */
    display: flex;
    justify-content: center; /* Centraliza o ícone horizontalmente */
    align-items: center; /* Centraliza o ícone verticalmente */
}

.icone-centralizado {
    width: 40px; /* Tamanho do ícone */
    height: auto; /* Mantém a proporção */
}

/* Coluna do conteúdo (90% da largura) */
.coluna-conteudo {
    width: 90%; /* Ocupa o restante da largura */
}

/* Estilos para o título (link) */
.titulo-link {
    font-size: 1.2em;
    font-weight: bold;
    color: #0b2b54; /* Cor azul escuro */
    text-decoration: none; /* Remove o sublinhado do link */
    display: block; /* Faz o link ocupar toda a largura */
    margin-bottom: 10px; /* Espaçamento abaixo do título */
}

.titulo-link:hover {
    text-decoration: underline; /* Sublinhado ao passar o mouse */
}

/* Estilos para o texto */
.texto-justificado {
    text-align: justify; /* Justifica o texto */
    text-align-last: left; /* Alinha a última linha à esquerda */
    margin: 0; /* Remove margens padrão */
}




/* Section casa */
.casa .container {
    display: flex;
    align-items: center;
}

.casa .casa-img {
    width: 50%;
}

.casa .casa-img img {
    width: 100%;
    border-radius: 10px;
}

.casa .casa-text {
    width: 54%;
    padding-left: 90px;
}

.casa .casa-text h2 {
    font-size: 2.5em;
    color: var(--verde-escuro); /* Azul escuro */
}

.casa .casa-text p {
    margin: 20px 0;
    color: black; /* Alterado para preto */
    text-align: justify; /* Justifica o texto */
}

.casa .casa-text p b {
    color: black;
    font-size: 25px;
}

.melhores-lugares .azul {
    font-size: 24px;
    font-weight: 600;
    color: #0060f0;
}

.melhores-lugares h2 {
    font-size: 2.5rem;
    color: var(--verde-escuro); /* Azul escuro */
}

.melhores-lugares .cards {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.melhores-lugares .cards .card-item {
    width: 30%;
    text-align: center;
    padding: 30px 0;
    border-radius: 20px;
    box-shadow: 0px 35px 97px -15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.melhores-lugares .cards img {
    width: 80px;
}

.melhores-lugares .cards .local-casa {
    margin: 5px 0;
    color: var(--color-p);
}

.melhores-lugares .cards .nome-casa {
    font-size: 30px;
    font-weight: 500;
}

.melhores-lugares .cards .contato {
    margin-bottom: 20px;
    color: var(--color-p-2);
}

.melhores-lugares .cards button {
    padding: 10px 20px;
    color: white;
    background-color: var(--orange);
    border: none;
}

/* Estilo para o overlay */
.melhores-lugares .cards .card-item .overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c3e50; /* Azul médio escuro */
    color: white; /* Texto branco */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: top 0.3s ease;
}
/* Efeito ao passar o cursor */
.melhores-lugares .cards .card-item:hover .overlay {
    top: 0;
}

/* Section newsletter */
.newsletter {
    margin-top: 30px;
    background-color: var(--verde-escuro);
}

.newsletter .box-newsletter {
    text-align: center;
    padding: 50px;
    background-image: url('../img/background-newsletter.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.newsletter .box-newsletter h2 {
    font-size: 2rem;
    color: var(--verde-escuro); /* Azul escuro */
}

.newsletter .box-newsletter p {
    margin: 10px 0;
    color: black; /* Alterado para preto */
}

.newsletter .box-newsletter input {
    width: 30%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    color: #00000098;
    background-color: #faefda;
}

.newsletter .box-newsletter button {
    font-size: 14px;
    border: none;
    outline: none;
    padding: 12px;
    border-radius: 10px;
    color: white;
    background-color: var(--verde-escuro);
    cursor: pointer;
}

.btn-gradiente {
    background: linear-gradient(45deg, #0073e6, #00c6ff); /* Gradiente azul */
    color: white; /* Texto branco */
    padding: 10px 20px; /* Espaçamento interno */
    border: none; /* Remove a borda */
    border-radius: 5px; /* Bordas arredondadas */
    font-size: 1em; /* Tamanho da fonte */
    cursor: pointer; /* Cursor de ponteiro */
    transition: 0.3s ease; /* Transição suave */
}

.btn-gradiente:hover {
    background: linear-gradient(45deg, #005bb5, #0099cc); /* Gradiente mais escuro ao passar o mouse */
}
.curso-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.curso-imagem img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}
.projeto-super-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.projeto-super-titulo {
    color: #0b2b54; /* Azul escuro */
    font-size: 2.5em;
    text-align: center;
}

.projeto-super-icon {
    width: 300px;
    height: auto;
}

.projeto-super-descricao {
    text-align: center;
    color: #333; /* Cor do texto */
    font-size: 1.2em;
    margin-bottom: 30px;
}

.curso-texto {
    max-width: 800px;
    text-align: left;
}
/* Aplicar gradiente às seções com fundo azul escuro */
.background-verde {
    background: linear-gradient(45deg, #0b2b54, #0073e6); /* Gradiente azul escuro para azul claro */
}

.nova-sessao {
    background: linear-gradient(45deg, #0b2b54, #0073e6); /* Gradiente azul escuro para azul claro */
    color: white; /* Texto branco */
    padding: 40px 0;
    text-align: center;
}

.resultados {
    background: linear-gradient(45deg, #0b2b54, #0073e6); /* Gradiente azul escuro para azul claro */
    color: white; /* Texto branco */
    padding: 40px 0;
    text-align: center;
}

.newsletter {
    background: linear-gradient(45deg, #0b2b54, #0073e6); /* Gradiente azul escuro para azul claro */
    margin-top: 30px;
}

.newsletter .box-newsletter {
    text-align: center;
    padding: 50px;
    background-image: url('../img/rodape-BG.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/* Responsivo */
@media (max-width: 960px) {
    .menu-icon {
        display: block;
    }

    .ul {
        position: fixed;
        background: var(--verde-escuro);
        top: 0;
        width: 100%;
        height: 100%;
        left: 100%;
        transition: 0.3s;
        flex-direction: column;
        justify-content: center;
    }

    .ul li {
        font-size: 20px;
        margin: 20px 0;
    }

    .ul.ativo {
        left: 0;
    }

    main.container {
        flex-direction: column;
    }

    main .container .main-img,
    main .container .main-text {
        width: 100%;
        text-align: center;
    }

    main .container .main-text h1 {
        font-size: 4rem;
    }

    main .container .main-text div {
        justify-content: center;
    }

    .resultados .container {
        flex-direction: column;
    }

    .resultados .resultados-text,
    .resultados .resultados-text {
        width: 100%;
        text-align: center;
    }

    .resultados-numero {
        margin-top: 30px;
    }

    .diferenciais .container {
        flex-direction: column;
    }

    .diferenciais .card-row {
        flex-direction: column;
        gap: 20px;
    }

    .diferenciais .card {
        width: 100%;
    }

    .casa .container {
        flex-direction: column-reverse;
    }

    .casa .casa-text,
    .casa .casa-img {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .melhores-lugares .cards {
        flex-direction: column;
    }

    .melhores-lugares .cards .card-item {
        width: 100%;
        margin-top: 50px;
    }

    .newsletter .box-newsletter {
        padding: 50px;
    }

    .newsletter .box-newsletter h2 {
        font-size: 2rem;
    }

    .newsletter .box-newsletter input {
        width: 90%;
    }

    .newsletter .box-newsletter button {
        width: 50%;
        margin-top: 20px;
    }
}

@media (max-width: 440px) {
    .resultados .resultados-numero {
        flex-direction: column;
    }

    main .container .main-text h1 {
        font-size: 3rem;
    }
}


/* ----------------------- grid das video aulas ----------------------- */


/* ----------------------- grid das video aulas ----------------------- */


.custom-width {
    width: 70%; /* Defina a largura desejada (por exemplo, 60% da largura da página) */
    margin: 0 auto; /* Centraliza o parágrafo horizontalmente */
    text-align: center; /* Centraliza o texto dentro do parágrafo */
    margin-top: 0; /* Remove a margem superior, conforme solicitado */
    margin-bottom: 2%;
}


/* Estilos específicos para a página de UX Design */
.ux-design-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.ux-design-container h1 {
    font-size: 2.5rem;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}

.ux-design-container h2 {
    font-size: 2rem;
    color: var(--verde-escuro); /* Azul escuro */
    margin-top: 30px;
    margin-bottom: 15px;
}

.ux-design-container p {
    text-align: justify;
    color: black; /* Alterado para preto */
    margin-bottom: 20px;
    line-height: 2;
}

.ferramenta-image {
    width: 100%;
    height: 450px; /* Altura fixa para a imagem */
    overflow: hidden;
}

.ferramenta-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra o espaço */
    border-radius: 10px 10px 10px 10px;
}

.ux-design-container blockquote {
    font-style: italic;
    border-left: 4px solid var(--verde);
    padding-left: 10px;
    margin: 20px 0;
    color: var(--color-p);
}

.ux-design-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.ux-design-container ul li {
    margin-bottom: 10px;
    color: var(--color-p-2);
}

.ux-design-container ul li strong {
    color: var(--verde-escuro);
}

.ux-design-container a {
    color: var(--verde);
    text-decoration: underline;
}

.ux-design-container a:hover {
    color: var(--orange);
}

/* Estilo para a nova seção */
.nova-sessao {
    background-color: #0b2b54; /* Azul escuro */
    color: white; /* Texto branco */
    padding: 40px 0;
    text-align: center;
}

.nova-sessao h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--white--); /* Azul escuro */
}

.nova-sessao p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: white; /* Alterado para preto */
}

.nova-sessao .destaque {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.nova-sessao .btn-gradiente {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

/* Estilos adicionais para centralizar e justificar texto */
.texto-centralizado-justificado {
    text-align: justify;
    text-align-last: center;
    margin: 0 auto;
    max-width: 800px;
}

.titulo-azul {
    color: #0b2b54; /* Azul escuro */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.casa h2.titulo-azul,
.diferenciais h2.titulo-azul {
    color: #0b2b54; /* Azul escuro */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}