/* Jefatura Styles - Mobile First Approach */

:root {
    --primary-color: #225581;
    --primary-dark: #14435e;
    --accent-color: #81dd36;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F7F7F7;
    --bg-lighter: #FFFFFF;
    --border-light: #E0E0E0;
}

/* Base styles for mobile */
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.jefatura-contenido {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.jefatura-enlaces {
    width: 100%;
    background-color: var(--bg-lighter);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.jefatura-enlaces h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.jefatura-enlaces-container {
    list-style-type: none;
    padding: 0;
}

.jefatura-enlaces-container li {
    margin-bottom: 10px;
}

.jefatura-enlaces-container a {
    display: block;
    color: var(--primary-dark);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(129, 221, 54, 0.1);
}

.jefatura-enlaces-container a:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.jefatura-imagen {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

.jefatura-imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.jefatura-imagen img:hover {
    transform: scale(1.02);
}

/* Medium screens */
@media screen and (min-width: 768px) {
    .jefatura-contenido {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px;
    }
    
    .jefatura-enlaces {
        width: 60%;
        margin-right: 20px;
    }
    
    .jefatura-imagen {
        width: 35%;
        margin: 0;
    }
}

/* Large screens */
@media screen and (min-width: 1200px) {
    .jefatura-contenido {
        padding: 40px;
    }
    
    .jefatura-enlaces {
        padding: 25px;
    }
    
    .jefatura-enlaces h2 {
        font-size: 28px;
    }
    
    .jefatura-enlaces-container a {
        font-size: 18px;
        padding: 10px 15px;
    }
}

