/* General */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid #e74c3c; /* Un rojo elegante para resaltar */
}

.main-header h1 {
    font-family: 'Josefin Slab', serif;
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    color: #777;
    font-style: italic;
}

.nav-menu {
    margin-top: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Posts */
.post-card {
    background: #fff;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-content {
    padding: 40px;
}

.category {
    color: #e74c3c;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

h2 {
    font-family: 'Josefin Slab', serif;
    font-size: 1.8rem;
    margin-top: 0;
}

.highlight {
    border-left: 4px solid #e74c3c;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
    font-size: 1.2rem;
}

/* Botones */
.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e74c3c;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px;
    background: #333;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .main-header h1 { font-size: 1.8rem; }
    .nav-menu a { display: block; margin: 10px 0; }
}