/* ******************************************
 *              ESTILO GENERAL              *
 ****************************************** */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header img {
    height: 60px; /* Tamaño Logo */
}

header h1 {
    margin: 0;
    flex-grow: 1;
    text-align: right;
}


.central {
    padding: 40px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

/* ******************************************
 *              IMAGEN CENTRAL              *
 ****************************************** */

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
    max-width: 100%;
    height: auto;
    border: 3px solid #003366;
    border-radius: 8px;
}

/* ******************************************
 *              ZONAS CLICABLES             *
 ****************************************** */

area {
    cursor: pointer;
}

/* ******************************************
 *              INFORMACIÓN ZONAS           *
 ****************************************** */

#info {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

/* ******************************************
 *              ESTILO INFO ZONAS           *
 ****************************************** */

.info-zona {
    display: none;
    padding: 15px;
    background: #e6f0ff;
    border-left: 5px solid #003366;
    border-radius: 5px;
    margin-top: 10px;
}

#zona1:target, #zona2:target, #zona3:target {
    display: block;
}

