:root {
    --primary-red: #e60000;
    --dark-blue: #0b1c3d;
    --fb-blue: #1877F2;
    --bg-gray: #f4f4f4;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-gray);
    color: #333;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- AD SPACES --- */
.ad-placeholder {
    background: #ebebeb;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
}

/* --- HEADER --- */
header {
    background: var(--white);
    padding-top: 15px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-blue);
}

.logo span { color: var(--primary-red); }

.fb-button {
    background: var(--fb-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-bar {
    background: #0d1b2a;
    color: white;
}

.nav-bar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-bar li a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-bar li a:hover { background: rgba(255,255,255,0.1); }

/* --- HERO SECTION --- */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    margin-top: 25px;
}

.hero-main {
    position: relative;
    height: 380px; /* Reducido de 450px para un mejor balance visual */
    border-radius: 8px;
    overflow: hidden;
}

.hero-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Ajustado para que el rostro se vea mejor */
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.hero-tag {
    background: var(--primary-red);
    color: white;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-excerpt {
    font-size: 16px;
    opacity: 0.9;
}

/* --- HERO SIDEBAR (NUEVO) --- */
.hero-sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar-head {
    font-weight: 900;
    font-size: 14px;
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.popular-list { list-style: none; }
.popular-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.popular-list li:last-child { border: none; }
.popular-list a {
    font-size: 14px;
    font-weight: bold;
    color: var(--dark-blue);
    line-height: 1.4;
}
.popular-list a:hover { color: var(--primary-red); }

/* --- NOTICIAS DE HOY --- */
.section-head {
    margin: 40px 0 25px;
    border-left: 6px solid var(--primary-red);
    padding-left: 15px;
}

.section-head h2 {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    min-height: 200px;
}

.news-card:hover {
    transform: translateX(10px);
}

.card-img { 
    width: 40%;
    min-width: 300px;
    height: auto;
    overflow: hidden;
}

.card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.card-body { 
    padding: 30px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title { 
    font-size: 22px; 
    font-weight: 900; 
    margin-bottom: 15px; 
    color: var(--dark-blue);
    line-height: 1.2;
}

.card-text { 
    font-size: 15px; 
    color: #555; 
    line-height: 1.6;
}

/* --- FOOTER --- */
footer {
    background: #0d1b2a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.footer-logo span { color: var(--primary-red); }

/* --- PAGE CONTENT --- */
.page-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; }
    .nav-bar ul { flex-wrap: wrap; }
}
/* Actualización Total: Fri May  1 02:37:12 2026 */
/* Update: Fri May  1 02:34:07 2026 */
