/* ================= CONFIG GERAL ================= */

body {
    font-family: 'Lato', 'Arial', sans-serif;
    overflow-x: hidden;
    background-color: #fdfdfd;
}

.bg-dark-green {
    background-color: #073b2a;
}

.nav-link {
    color: #f6f6f6;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: #ffdd00;
}

/* ================= HEADER LOGO ================= */

.logo-top {
    height: 65px;
}

/* ================= HERO ================= */

.hero {
    background-color: #006b4f;W
}

.hero-logo {
    max-width: 100%;
	height: auto;
    animation: fadeIn 1.2s ease-out;
	display: block;
}

/* ================= TEXTOS ================= */

.titulo {
    color: #073b2a;
    font-size: 3rem;
    font-weight: 700;
}

.descricao {
    color: #073b2a;
    font-size: 1.8rem;
}

.botao-amarelo {
    background-color: #ffdd00 !important;
    color: #073b2a !important;
    font-weight: 700;
	font-size: 2rem;
}


/* ================= SOLDADINHO PARALLAX ================= */
.sec-intro{
	padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* ================= SOLDADINHO PARALLAX ================= */

.soldadinho-parallax {
    background-image: url('../images/fundo-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.soldadinho-parallax .titulo {
    color: white;
}

.soldadinho-parallax .descricao {
    color: #ffffff;
}

/* ================= FOOTER ================= */

.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffdd00;
}

.logo-footer {
	width: 100%;
    max-width: 130px;
}

/* ================= ANIMAÇÕES ================= */

.fade-in,
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.show,
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* -------------------------------------------------
   TÍTULO / BARRA SUPERIOR (TOPO SOBRE)
--------------------------------------------------- */
.bar-title {
    position: relative; /* necessário para o ::before funcionar */
    background: url("../images/barra-sobre.jpg") center/cover no-repeat;
    min-height: 180px;
    padding: 40px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* OVERLAY USANDO BEFORE — AGORA CORRIGIDO */
.bar-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(191, 163, 21, 0.6); 
    /* ↑ ajuste livre:
       rgba(R, G, B, OPACIDADE)
       Exemplo: 0.45 = 45% de opacidade
    */
    z-index: 1;
}

/* CONTEÚDO SOBRE O OVERLAY */
.bar-title > * {
    position: relative;
    z-index: 2;
}

/* TÍTULO */
/* ANIMAÇÃO PARA O TÍTULO PRINCIPAL */
.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: tituloFadeUp 1.2s ease forwards;
}

/* Keyframes da animação */
@keyframes tituloFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BREADCRUMB */
.breadcrumb {
    margin-top: 5px;
    font-size: 0.95rem;
	display: block;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 5px;
}

/* -------------------------------------------------
   PRIMEIRA SEÇÃO
--------------------------------------------------- */
.section1 p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.image-block img {
    border-radius: 12px;
}

/* -------------------------------------------------
   FRASE CENTRAL
--------------------------------------------------- */
.frase {
    background-color: #f6f6f6;
}

.frase p {
    font-size: 1.7rem;
    font-weight: 600;
    max-width: 900px;
    margin: auto;
}

/* -------------------------------------------------
   SEGUNDA SEÇÃO + CITAÇÃO
--------------------------------------------------- */
.section2 p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.citacao {
    background: #f4f4f4;
    border-left: 5px solid #007a3d;
    padding: 25px;
    border-radius: 8px;
}

.citacao p {
    font-size: 1.15rem;
    font-style: italic;
}

.citacao span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: right;
}

/* -------------------------------------------------
   RESPONSIVIDADE
--------------------------------------------------- */
@media (max-width: 768px) {
    .barTitle {
        font-size: 2.3rem;
    }
}
