/* =========================================
   ESTILOS ESPECÍFICOS: HOME (PÁGINA INICIAL)
   ========================================= */

/* --- HERO SECTION (PADRÃO PREMIUM) --- */
.hero { 
    min-height: 85vh; 
    padding-top: 140px;
    align-items: center; 
    display: flex;
    position: relative;
}

/* Fundo Gradiente */
.hero-card {
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.6) 60%, transparent 100%);
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    text-align: left;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* Título Hero */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem); 
    margin-bottom: 1.5rem;
    line-height: 1.1; 
    text-transform: uppercase;
    color: #fff;
    font-family: 'Cinzel', serif;
    max-width: 100%; 
}

.hero-title .gold-text {
    font-size: 1.1em; 
    display: block; 
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 0 2.5rem 0;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Botão Pulsante */
.btn-pulse {
    background: linear-gradient(45deg, #c5a059, #e0b769);
    color: #000 !important;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
/* --- LAYOUT LATERAL (GRID) --- */
/* --- LAYOUT LATERAL (GRID) --- */
#news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.news-card-text {
    background: #0d0d0d;
    border: 1px solid #222;
    border-left: 3px solid #333;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
    min-height: 280px;
}

.news-card-text:hover {
    border-left-color: #c5a059;
    background: #141414;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.news-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-source-badge {
    background: #c5a059;
    color: #000;
    padding: 2px 8px;
    font-weight: bold;
    border-radius: 2px;
}

.news-date { color: #666; }

.news-title-text {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link-wrapper { text-decoration: none; }
.news-link-wrapper:hover .news-title-text { color: #c5a059; text-decoration: underline; }

.news-excerpt-text {
    font-family: 'Roboto', sans-serif;
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-actions {
    margin-top: auto;
    border-top: 1px solid #222;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-read-full {
    color: #c5a059;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.social-share-mini { display: flex; align-items: center; gap: 10px; }
.share-label { color: #555; font-size: 0.75rem; }
.share-icon { color: #888; font-size: 1rem; transition: 0.2s; background: none; border: none; cursor: pointer; padding: 0; }
.share-icon:hover { color: #fff; }
.share-icon.zap:hover { color: #25D366; }
.share-icon.in:hover { color: #0077b5; }
.share-icon.insta:hover { color: #E1306C; }

/* --- SEÇÃO SOBRE --- */
.sobre { background: #050505; padding: 6rem 0; }
.sobre-grid-container { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .sobre-grid-container { grid-template-columns: 1fr 1fr; } }

.sobre-text-column p { margin-bottom: 1.5rem; color: #bbb; font-size: 1.05rem; text-align: justify; line-height: 1.8; }

.feature {
    padding: 1.5rem; background: #111; border-left: 3px solid #c5a059;
    margin-bottom: 1.5rem; transition: border-color 0.3s;
}
.feature:hover { border-color: #fff; }
.feature h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature p { color: #999; font-size: 0.9rem; margin: 0; text-align: left; }
.feature i { color: #c5a059; font-size: 1.2rem; margin-bottom: 10px; display: block; }

.sobre-image-column { width: 100%; height: 500px; position: relative; border: 1px solid #333; }
.sobre-main-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); transition: filter 0.5s ease; }
.sobre-image-column:hover .sobre-main-image { filter: grayscale(0%) contrast(1.1); }
/* Adicione ou verifique se já existe essa classe para o Instagram */
.social-btn.instagram:hover { color: #E1306C; }