body {
    font-family: 'Inter', sans-serif;
    background-color: #0A192F; /* Azul escuro principal */
    color: #E2E8F0; /* Cor de texto principal (cinza claro) */
}
.jethy-cyan {
    color: #00BCD4;
}
.bg-jethy-cyan {
    background-color: #00BCD4;
}
.bg-jethy-cyan-darker {
    background-color: #00AABD;
}
.bg-jethy-blue-dark {
    background-color: #0A192F;
}
.bg-jethy-blue-light {
    background-color: #112240;
}
.border-jethy-cyan {
    border-color: #00BCD4;
}
.hero-bg {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('../imagens/bg1.png') no-repeat center center;
    background-size: cover;
}
.section-title {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00BCD4;
    border-radius: 2px;
}
/* Animação de entrada */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
