@import url("variaveis.css");

.secao {
  padding: 80px 0;
}

.fundo-claro {
  background-color: rgba(16, 91, 153, 0.05);
}

.fundo-escuro {
  background-color: rgba(16, 91, 153, 0.1);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--primary);
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-dark);
    border-radius: 2px;
}

.subtitulo {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray);
    max-width: 600px;
}
