PLease use English (too) on the international section.
First please modify your post and use code tags around your code ==> # button above the smileys.
if(Serial.available()); <<<<<<<<<< ; may not be there
if(DHT11.temperature,1 > 27); <<<<<<<<<< ; may not be there
if(DHT11.temperature,1 > 27); The ,1 is part of a print statement you copied and paste. It is not correct C
Try this construct
if (DHT11.temperature > 27)
{
digitalWrite(2,HIGH);
}
if (DHT11.temperature < 26) // use a different level to prevent continuous ON/OFF cycles of the relays.
{
digitalWrite(2, LOW);
}