/* ============================================================
   🎖️ LOGO DO ACAS — Ajuste de posição
============================================================ */
.navbar-brand img {
    margin-top: 10px;
    margin-left: 15px;
    height: 100px; /* aumentei um pouco para dar mais destaque */
}


/* ============================================================
   📜 FUNDO PAPEL ANTIGO (fixo)
============================================================ */
body {
    background-image: url("/img/FunfoDosHinos.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: "Georgia", serif;
}


/* ============================================================
   🧩 LAYOUT GERAL (3 colunas)
============================================================ */
.hino-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 25px;
    padding: 40px 20px;
    align-items: start;
}


/* ============================================================
   🟩 IMAGEM DOS JOVENS + TEXTO PATRIOTA
============================================================ */
.hino-imagem img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: floatImg 6s ease-in-out infinite;
}

.texto-patriota {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
    color: #0a1a56;
    background: rgba(255,255,255,0.75);
    padding: 14px 18px;
    border-radius: 10px;
    text-align: justify;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 500;
}

/* Efeito flutuante */
@keyframes floatImg {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


/* ============================================================
   🇧🇷 TEXTO DO HINO + CABEÇALHO OFICIAL
============================================================ */
.hino-texto {
    background: #f3dcc5;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    border: 1px solid #9f7122;
}

/* Cabeçalho */
.hino-header {
    text-align: center;
    margin-bottom: 12px;
}

.hino-header img {
    width: 70px;
    margin: 0 auto 8px;
}

.hino-header h1 {
    font-size: 1.4rem;
    margin: 2px 0;
    color: #0a1a56;
}

.hino-header h4,
.hino-header h5 {
    margin: 0;
    font-weight: 600;
    color: #444;
}

/* Caixa "Hino Nacional" */
.badge-hino {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: #170771;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: .6px;
}


/* Texto com scroll */
.scroll-box {
    height: 450px;
    overflow-y: auto;
    padding-right: 10px;
    line-height: 1.6;
    font-size: 19px;
    color: #222;
}

/* scrollbar */
.scroll-box::-webkit-scrollbar {
    width: 8px;
}
.scroll-box::-webkit-scrollbar-thumb {
    background: #c39b6a;
    border-radius: 10px;
}

/* Duas colunas */
.hino-duas-colunas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hino-duas-colunas h6 {
    font-weight: bold;
    color: #0a1a56;
    font-size: 18px;
}


/* Créditos */
.creditos {
    text-align: center;
    margin-top: 20px;
    color: #555;
}

.creditos p {
    margin: 4px 0;
    font-weight: 600;
}

.creditos small {
    font-size: 13px;
    color: #666;
}


/* ============================================================
   🎵 PLAYER DO VÍDEO
============================================================ */
.hino-player {
    text-align: center;
    background: #fff8e8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    border: 1px solid #e6dabd;
}

.hino-player h3 {
    color: #0a1a56;
    margin-bottom: 15px;
}

.video-box {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    background: #000;
}

.btn-player {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    background: #0a1a56;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: .3s;
}

.btn-player:hover {
    background: #122b9a;
    transform: scale(1.05);
}


/* ============================================================
   📱 RESPONSIVIDADE TOTAL (CELULAR)
============================================================ */
@media(max-width: 900px) {
    .hino-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .scroll-box {
        height: 300px;
    }

    .hino-duas-colunas {
        grid-template-columns: 1fr;
    }

    .navbar-brand img {
        height: 45px;
        margin-left: 5px;
    }
}
