    :root {
        --primary: #002147;
        --accent: #c5a059;
        --bg-light: #89283b;
    }

    body {
        font-family: 'Roboto', sans-serif;
        background-color: var(--bg-light);
        color: #000000;
    }

    h1, h2, h3, h4, .serif {
        font-family: 'Merriweather', serif;
    }

    /* Header Styling */
    .navbar {
        background-color: var(--primary);
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        padding: 0.6rem 0;
    }

    .navbar-brand {
        color: white !important;
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 1.5rem;
    }

    .logo-img {
    max-height: 100px; /* Ajusta este valor */
    width: auto;
    margin-right: 2px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    background: #c5a059;
    padding: 1px;
    }

           


    .nav-link {
        color: rgba(255,255,255,0.8) !important;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s;
    }

    .nav-link:hover {
        color: var(--accent) !important;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.9)), url('../../../images/corazonmelchorocampo.jpeg');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 50px 0;
        text-align: center;
        border-bottom: 5px solid var(--accent);
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    /* Cards Artículos */
    .card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    }

    .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    .badge-cat {
        background-color: var(--accent);
        color: #fff;
        font-size: 0.8rem;
        padding: 5px 10px;
        border-radius: 50px;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .card-title {
        color: var(--primary);
        font-weight: 700;
    }

    /* Footer */
    footer {
        background-color: #121212;
        color: white;
        padding: 40px 0;
        margin-top: 50px;
        border-top: 5px solid var(--accent);
    }
    
    .footer-logo-text {
        font-family: 'Merriweather', serif;
        color: var(--accent);
    }
