/* '*' estilo predeterminado para anular el predeterminado del navegador*/
* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

/*footer*/
.pie {
  position: absolute;
  width: 100%;
  height: 33%;
  margin-top: 90px;
}

.footer {
    float: left;
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #321505;
    color: white;
    text-align: center;
    margin-top: 10px;
    z-index: 1000;
 }

.footer_info{
  padding: 4px;
}

.f_infotel {
    font-weight: bold;
    font-size: 20px;
}

.footer_nombres {
  padding: 6px;
  transition: all 1.5s ease;
  font-size: 12px;
}
.red_social {
  font-size: 20px;
  text-decoration: none;
  color: white;
  margin-left: 10px;
}
/*colores de iconos redes soc.*/
.icon-whatsapp{
  color: lime;
}
.icon-whatsapp:hover{
  color: green;
}


.icon-google2{
  color: coral;
}
.icon-google2:hover{
  color: brown;
}

.icon-facebook{
  color:#1976d2;
}
.icon-facebook:hover{
  color:#0b4c8c;
}

.icon{
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
