h2 {
    color: var(--color-font-h2-page-tech);
}

h3 {
  color: var(--color-font-h3-page-tech);
}

p{
 color: var(--color-font-p-page-tech);
}

/* SOBRE O PROJETO */
#processo {
    padding: 80px 5%;
}

.container-processo {
    max-width: 900px;
    margin: 0 auto;
}

/* Bloco "Sobre o Projeto" */
.sobre-projeto-box {
    background-color: var(--color-background-card-one);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
}

.texto-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.texto-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* PROCESSO DE DESENVOLVIMENTO */

/* Título e Timeline */
.titulo-processo {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.timeline {
    position: relative;
    padding-left: 60px;
    /* Muda a linha*/
}

/* Linha vertical da timeline */
.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    /* Centraliza a linha com os ícones */
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #dbe2e8;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icone {
    position: absolute;
    left: -60px;
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border: 2px solid #dbe2e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 1.5rem;
    z-index: 10;
    /* Garante que fique acima da linha */
    margin-top: 40px;
}

.timeline-conteudo {
    background-color:  var(--color-background-card-one);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.timeline-conteudo h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline-conteudo p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TECNOLOGIAS UTILIZADAS */

#componentes-e-diagrama {
    padding: 60px 5%;
}

.container-geral {
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-secao {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Grade de Componentes */
.componentes-grid {
    display: grid;
    /* Cria uma grade responsiva que se ajusta automaticamente */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.componente-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    /* Garante que o conteúdo respeite o border-radius */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.componente-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-titulo {
    background-color: #17a2b8;
    /* Cor azul-petróleo/ciano */
    color: var(--color-white);
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.card-imagem {
    height: 220px;
    /* Altura fixa para alinhar as imagens */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-imagem img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Garante que a imagem caiba sem distorcer */
}

/* Diagrama do Circuito */


.diagrama-box {
    background-color:  var(--color-background-card-one);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.diagrama-box figure {
    border-radius: 8px;
    overflow: hidden;
}

.diagrama-box img {
    width: 100%;
    display: block;
}

.link-video-botao {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-top: 20px;
    background-color: #77BACC;
    /* Cinza escuro */
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.link-video-botao:hover {
    background-color: #126C84;
}

/* COMO FUNCIONA */


#como-funciona {
    padding: 80px 5%;
}

.container-funcionamento {
    max-width: 950px;
    margin: 0 auto;
}

/* Títulos da seção */
.titulo-principal {
    margin-bottom: 40px;
}

.titulo-principal h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

.titulo-principal p {
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Caixa de cada etapa */
.etapa-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color:  var(--color-background-card-one);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.etapa-box:last-child {
    margin-bottom: 0;
}

/* Ícone da etapa */
.etapa-icone {
    font-size: 1.8rem;
    color: #00b4d8;
    margin-top: 5px;
    /* Ajuste para alinhar visualmente com o título */
}

/* Conteúdo de texto da etapa */
.etapa-conteudo h3 {
    font-size: 1.3rem;
    color: #0DF7FF;
    margin-bottom: 10px;
    font-weight: 600;
}

.etapa-conteudo p {
    font-size: 1rem;
    line-height: 1.7;

}