*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-size: 16px;
    font-family: sans-serif;
}

/* -- ****************************** Contenedor ** -- */
#contenedor{
    width: 80%;
    max-width: 1140px;
    margin: 0 auto;
}
/* -- ****************************** Encabezado ** -- */
header{
    width: 100%;
    min-height: 80px;
    background-color:antiquewhite;
    padding: 10px;
    display:flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    position: sticky;
        top: 0;
}
    #encabezadoIzq{
        width: 50%;
        text-align: center;
        text-shadow: 1px 1px 10px;
    }
    #encabezadoDcho{
        width: 50%;
        display:flex;
            justify-content: center;
            flex-direction: row;
    }
    figure{
        width: 25%;
        padding: 5px;
        display:flex;
            justify-content: center;
            align-items: center;
    }
    figure img{
        height: 100%;
        width: auto;
    }
    #txtTelefono{
        width: 75%;
    }
    #txtTelefono p{
        text-align: center;
        margin-bottom: 0;
    }
    #txtTelefono hr{
        width: 80%;
        margin: 0 auto;
        justify-self: center;
        margin-bottom: 6px;
            border: 0; 
            height: 1px; 
            border-top: 1px dashed black; 
            border-bottom: 1px dashed black;
    }
    #txtTelefono a{
        display: block;
        text-decoration: none;
        font-weight: bold;
        color: black;
        border: 1px solid red;
        padding: 8px;
        text-align: center;
    }
    a:active{
        transform: scale(0.8);
        color: red;
    }
    .textoNegrita{
        font-weight: bold;
    }
/* ************************************* Cuerpo *0 -- */
main{
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
}

/* ************************************* Portada *0 -- */

#portada{
    max-height: 200px;
    display: flex;
        justify-content: center;
        align-items: center;
    margin-bottom: 15px;    
}
    .texto{
        width: 50%;
        text-align: center;
        padding: 20px;
        margin: 10px;
        box-shadow: 5px 5px 15px;
    }
    aside{
        width: 50%;
    }
    aside img{
        max-height: 200px;
            height: 100%;
            width: auto;
            display: block;
            margin: 0 auto;
        padding: 15px;
        box-shadow: 5px 5px 15px;
    }
/* -- ********************************* Miscelanea ** -- */
.oculto{
    display: none;
}
#informacion{
    width: 100%;
}
.textoRojo{
    text-align: left;
    color: red;
    margin-bottom: 10px;
}
.textoNegrita{
    font-weight: bold;
}
h3{
    margin-bottom: 10px;
}
p{
    text-align: left;
    line-height: 1.5rem;
    margin-bottom: 10px;
} 

ul li:last-child{

}
hr.fin{
    width: 70%;
    height: 3px;
    background: #a502ee;
    background: linear-gradient(to right, #a502ee, #ffffff, #02fff7);
    margin: 16px auto 16px auto; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 5px;
}

ul, ol{
    list-style-position: inside;
    padding-left: 20px;
}
li{
    padding: 5px;
    font-size: 1rem;
    line-height: 1.2rem;
}
li:last-child{
    
}
::marker{
    color: red;
    font-size: 1.1rem;
}  
.finMultiple{
    margin-bottom: 0;
}

/* -- ********************************* Btoón navegador ** -- */
#navegador{
    display: flex;
        justify-content: center;
}
#navegador a{
    padding: 10px;
}
.boton_navegador{
    text-decoration: none;
    width: 20%;
    display: block;
    border: 1px solid red;
    margin: 0 auto;
    font-size: 1.3rem;
    text-align: center;
}

/* -- ********************************* Pie ** -- */
footer{
    padding: 10px;
    min-height: 40px;
    display: flex;
        justify-content: center;
}

@media screen and (max-width:1057px){
    #contenedor{
        width: 100%;
    }
    /* -- ****************************** Encabezado ** -- */
        #encabezadoIzq{
            width: 100%;
            margin-bottom: 10PX;
        }
        #encabezadoDcho{
            width: 100%;
        }    
}

@media screen and (max-width:855px){
    /* -- ****************************** Encabezado ** -- */
    header{
        min-height: 100px;
        flex-direction: column;
        /* top - right - bottom - left */
        padding: 5px 1px 5px 1px;
     } 
        #encabezadoIzq h1{
            font-size: calc(1.8rem - 0.3vw);
        } 
        #encabezadoDcho{
            width: 100%;
        }   
        figure{
            width: 20%;
            padding: 0px;
         }
            figure img{
                max-width: 60.5px;
                max-height: 60.5px;
                padding: 5px;
                
            }
        #textoTelefono{
            max-height: 100px;
            width: 80%;
        }
        #txtTelefono p{
            
        }
    #portada{
        max-height: 500px;
        flex-direction: column;   
    }
    #portada aside{
        width: 85%;
    }
    #portada aside img{
        max-height: 200px;
            height: 100%;
            width: auto;
            display: block;
            margin: 0 auto;
        padding: 15px;
        box-shadow: 5px 5px 15px;
    }
    aside{
        width: 50%;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .texto{
        width: 100%;
    }
}

