.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: none;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.hero-texto {
    flex: 1;
    text-align: left;
}

.hero-texto h1 {
    font-size: 55px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.hero-texto h1 {
    font-size: 55px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #73d8ce;
    /* Aqui coloca o turquesa */
}


.hero-texto p {
    font-size: 17px;
    line-height: 1.5;
}

hero-texto p {
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
    /* Aqui coloca o branco */
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.missao>div {
    display: flex;
    justify-content: center;
    gap: 300px;
    /* Espaçamento entre os ícones */
    margin-top: 70px;
    margin-bottom: 70px;
}

.missao>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    /* Ajuste conforme o espaço desejado */
}

.missao svg {
    width: 56px;
    height: 56px;
    fill: #73d8ce;
    /* Azul forte, troque se quiser outro tom */
    margin-bottom: 12px;
}

.missao p {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    white-space: nowrap;
}

.missao h1 {
    text-align: center;
    font-size: 35px;
}

.espaco {
    display: block;
    height: 25px;
    /* ajuste o valor conforme desejar */
    width: 100%;
    content: "";
}



.card>div {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    /* Responsivo para telas menores */
    margin-top: 50px;
    margin-bottom: 50px;
}

.card>div>div {
    background: #050E11;
    /* Azul do card */
    border-radius: 18px;
    padding: 32px 24px;
    width: 260px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
}

.card h3 {
    display: flex;
    align-items: center;
    font-size: 1.25em;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
    gap: 10px;
}

.card svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    flex-shrink: 0;
    margin-right: 10px;
}

.card p {
    color: #ffffff;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

.projetos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 0;
}

.projetos .texto {
    flex: 1 1 0;
}

.projetos .texto p {
    font-size: 1.2em;
    line-height: 1.7;
    color: #ffffff;
}

.projetos .imagem {
    flex: 1 1 0;
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: inline-block;
    margin-left: 50px;
    width: 500px;
    height: 250px;
}

.carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    height: 100%;
    width: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    opacity: 1;
}

.carousel-slide img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #4C545F;
    background: none;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: background 0.2s;
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.dt_faq_section {
    margin-bottom: 50px;
    padding: 0 48px;
}

.dt_faq_section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.dt_faq_section h3[itemprop="name"] {
    cursor: pointer;
    padding: 12px 0;
    text-align: left;
    margin-left: 150px;
    font-size: 20px;
}

.dt_faq_section [itemprop="acceptedAnswer"] {
    display: none;
    border-top: none;
    text-align: left;
    margin-left: 150px;
    margin-right: 150px;
    line-height: 30px;
    font-size: 18px;
}

.dt_faq_section [itemprop="acceptedAnswer"] ul {
    margin-top: 15px;
}

.dt_faq_section [itemprop="acceptedAnswer"] li {
    margin-bottom: 20px;
}

.flat-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.flat-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.faq-icon {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
}

/* Quando a pergunta estiver aberta, rotaciona a seta */
.dt_faq_section h3.open .faq-icon {
    transform: rotate(90deg);
}

.box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #050E11;
    padding: 48px 32px;
    border-radius: 16px;
    gap: 40px;
    width: 1100px;
    /* largura ideal para os cards */
    max-width: 98vw;
    /* responsivo em telas pequenas */
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.box .left {
    flex: 0 0 600px;
    color: #ffffff;
    text-align: left;
    padding-right: 60px;
    max-width: 600px;
    box-sizing: border-box;
}

.box .left h1 {
    font-size: 2.2em;
    margin-bottom: 18px;
    color: #73d8ce;
    /* Azul de destaque, ajuste se quiser */
}

.box .left h2 {
    font-size: 2em;
    margin-bottom: 18px;
    color: #73d8ce;

    /* Azul de destaque, ajuste se quiser */
}

.box .left p {
    font-size: 1.20em;
    line-height: 2;
}

.box .right {
    flex: 1 1 0;
    min-width: 500px;
    box-sizing: border-box;
}

.timeline-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

/* A LINHA CINZA DE FUNDO (criada com um pseudo-elemento) */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    /* Centraliza a linha */
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #333;
    /* Cor da linha de fundo */
    z-index: 1;
    /* Camada 1: fundo */
}

/* BARRA DE PROGRESSO AZUL */
.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    /* Começa com 0 e é animada pelo JS */
    background-color: #73d8ce;
    /* Cor azul do progresso */
    z-index: 2;
    /* Camada 2: progresso (fica em cima da linha cinza) */
    transition: height 0.2s ease-out;
}

/* CADA ITEM DA TIMELINE */
.timeline-item {
    position: relative;
    width: 50%;
    min-height: 90px;
    /* ajuste conforme necessário */
}

.timeline-item .timeline-content {
    position: absolute;
    top: 0;
    min-width: 250px;
    max-width: 320px;
    height: 100px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
    /* Espaço entre o card e a linha central */
}

/* Posiciona os itens PARES (2, 4, 6...) à DIREITA */
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
    /* Espaço entre o card e a linha central */
}

.timeline-content {
    background: #000000;
    padding: 25px 40px;
    border-radius: 8px;
    color: #73d8ce;
    border: 2px solid #73d8ce;
    position: relative;
    min-width: 270px;
    max-width: 340px;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 28px;
}

.timeline-item:nth-child(odd) .timeline-content {
    right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 40px;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -1px;
    border-width: 8px 0 8px 10px;
    /* Cria um triângulo com a borda esquerda */
    border-color: transparent transparent transparent #73d8ce;
    /* A cor da seta */
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -1px;
    border-width: 8px 10px 8px 0;
    border-color: transparent #73d8ce transparent transparent;
    /* A cor da seta */
}

.timeline-content h3 {
    white-space: normal;
    word-break: keep-all;
    /* impede quebra no meio da palavra */
}

/* O ÍCONE */
.timeline-icon {
    position: absolute;
    top: 20px;
    /* Alinha o ícone verticalmente com o card */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #73d8ce;
    /* Cor inicial (azul) */
    border: 4px solid #0c101c;
    /* Borda da cor do fundo para criar separação */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    /* Garante que o ícone fique na frente de tudo */
    transition: background-color 0.4s ease, color 0.4s ease;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: #000000;
    /* Ícone branco */
    transition: color 0.4s ease;
}

/* Centraliza o ícone do item ÍMPAR (esquerda) na linha */
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
    /* (metade da largura do ícone para centralizá-lo) */
}

/* Centraliza o ícone do item PAR (direita) na linha */
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
    /* (metade da largura do ícone para centralizá-lo) */
}

/* EFEITO DE INVERSÃO DE CORES QUANDO A BARRA PASSA */
.timeline-item.passed .timeline-icon {
    background-color: #000000;
}

.timeline-item.passed .timeline-icon svg {
    color: #73d8ce;
    /* Ícone SVG fica azul */
}

.azul {
    color: #73d8ce;
}

/* CSS Mobile para [Nome da Página] - Adaptado para telas até 768px */
@media (max-width: 768px) {

    .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .formulario-personalizado {
        max-width: 100%;
        margin: 24px 8px;
        padding: 20px 8px 16px 8px;
        border-radius: 12px;
    }

    .formulario-personalizado input[type="text"],
    .formulario-personalizado textarea {
        font-size: 1em;
        padding: 10px 12px;
        margin: 8px 0 16px 0;
    }

    .formulario-personalizado ::placeholder {
        font-size: 16px;
    }

    .formulario-personalizado input[type="submit"] {
        padding: 13px 0;
        font-size: 1em;
    }

    .hero {
        flex-direction: column;
        gap: 22px;
        padding: 28px 0 32px 0;
        max-width: 100%;
        margin: 0 0 30px 0;
    }

    .hero-texto {
        text-align: center;
        width: 100%;
    }

    .hero-texto h1 {
        font-size: 2em;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-texto p {
        font-size: 1em;
    }

    .hero-img {
        justify-content: center;
        width: 100%;
    }

    .hero-img img {
        max-width: 95vw;
        border-radius: 10px;
    }

    .missao>div {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .missao>div>div {
        width: 90vw;
        max-width: 300px;
    }

    .missao svg {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .missao p {
        font-size: 15px;
        white-space: normal;
    }

    .missao h1 {
        font-size: 24px;
    }

    .espaco {
        height: 15px;
    }

    .card>div {
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .card>div>div {
        width: 98vw;
        max-width: 340px;
        min-height: 200px;
        padding: 22px 10px;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
    }

    .card h3 {
        font-size: 1em;
        margin-bottom: 10px;
        gap: 7px;
    }

    .card svg {
        width: 20px;
        height: 20px;
        margin-right: 7px;
    }

    .card p {
        font-size: 0.95em;
    }

    .projetos {
        flex-direction: column;
        gap: 24px;
        max-width: 100vw;
        padding: 24px 0;
    }

    .projetos .texto p {
        font-size: 1em;
    }

    .projetos .imagem {
        max-width: 90vw;
        border-radius: 10px;
    }

    .carousel {
        margin-left: 0;
        width: 98vw;
        max-width: 100vw;
        height: 180px;
    }

    .carousel-slide img {
        border-radius: 10px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .dt_faq_section {
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .dt_faq_section h2 {
        font-size: 22px;
    }

    .dt_faq_section h3[itemprop="name"] {
        margin-left: 0;
        font-size: 16px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .dt_faq_section [itemprop="acceptedAnswer"] {
        margin-left: 0;
        margin-right: 0;
        font-size: 15px;
        line-height: 1.5;
    }

    .dt_faq_section [itemprop="acceptedAnswer"] ul {
        margin-top: 10px;
    }

    .dt_faq_section [itemprop="acceptedAnswer"] li {
        margin-bottom: 10px;
    }

    .box {
        flex-direction: column;
        align-items: stretch;
        width: 99vw;
        max-width: 100vw;
        padding: 20px 8px 18px 8px;
        gap: 20px;
        border-radius: 12px;
    }

    .box .left {
        flex: 0 0 auto;
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }

    .box .left h1 {
        font-size: 1.25em;
        margin-bottom: 9px;
    }

    .box .left h2 {
        font-size: 1.15em;
        margin-bottom: 9px;
    }

    .box .left p {
        font-size: 1em;
        line-height: 1.6;
    }

    .box .right {
        min-width: 0;
        width: 100%;
    }

    .timeline-container {
        display: none;
    }


    .timeline-container::before,
    .timeline-progress {
        left: 18px;
        transform: none;
    }

    .timeline-container::before {
        width: 2px;
    }

    .timeline-progress {
        width: 2px;
    }

    .timeline-item {
        width: 100%;
        min-height: 60px;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .timeline-item .timeline-content {
        position: static;
        min-width: 0;
        max-width: 98vw;
        height: auto;
        margin-left: 38px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        right: auto;
        left: auto;
    }

    .timeline-content {
        padding: 16px 10px 16px 18px;
        min-width: 0;
        max-width: 98vw;
        border-radius: 7px;
        font-size: 0.95em;
    }

    .timeline-content::after {
        display: none;
    }

    .timeline-content h3 {
        font-size: 1em;
    }

    .timeline-icon {
        left: 0 !important;
        right: auto !important;
        width: 34px;
        height: 34px;
        top: 16px;
        border-width: 2px;
    }

    .timeline-icon svg {
        width: 16px;
        height: 16px;
    }

    .azul {
        color: #73d8ce;
    }

}