/* ============ AVISO SECTION ============ */
.aviso-section {
    display: none;
    background-color: #faf9f7;
    border: none;
    padding: 48px 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 30px 100px;
    box-sizing: border-box;
    border-left: 3px solid #b8860b;
}

/* Faixa decorativa sutil no topo */
.aviso-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(184, 134, 11, 0.3),
        transparent
    );
}

/* Fundo sutil texturizado */
.aviso-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle at top right,
        rgba(184, 134, 11, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ============ BADGE ============ */
.aviso-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 4px;
    padding: 6px 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.aviso-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #b8860b;
    border-radius: 50%;
}

.aviso-badge span {
    color: #8a7a5a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Georgia, 'Times New Roman', serif;
}

/* ============ TÍTULO ============ */
.aviso-title {
    color: #2c2c2c;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.aviso-title .highlight {
    font-style: normal;
    font-weight: 700;
    color: #b8860b;
}

/* ============ TEXTO ============ */
.aviso-text {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.1px;
}

/* ============ VERSÃO TAG ============ */
.aviso-version {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.aviso-version .icon {
    font-size: 1.2rem;
    opacity: 0.6;
}

.aviso-version p {
    color: #999;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.aviso-version p strong {
    color: #777;
    font-weight: 600;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 600px) {
    .aviso-section {
        padding: 32px 24px;
        margin: 20px 20px;
    }

    .aviso-title {
        font-size: 1.3rem;
    }

    .aviso-text {
        font-size: 0.9rem;
    }
}