/* Estilos generales para los enlaces de contacto */
.contacto {
    display: inline-flex;           /* Ícono y texto alineados horizontalmente */
    align-items: center;            /* Alinea verticalmente al centro */
    color: #ffffff;                    /* Puedes ajustar el color */
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
    gap: 8px;                       /* Espacio entre ícono y texto */
    outline: none;         /* Quita la línea de puntos al hacer clic */
    border: none;          /* Por si algún navegador aplica un borde */
    text-decoration: none; /* Ya lo tenías, pero se asegura que no hay subrayado */
  }
  .contacto:focus {
    outline: none;
  }
  /* Opcional: efecto hover */
  .contacto:hover {
    opacity: 0.8;
  }
  
  /* Estilo para el texto junto a los íconos */
  .datoscontacto {
    vertical-align: middle;         /* Alineación del texto */
  }
  

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:10px;
	right:10px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}

.titulopagina{
position: absolute;
left: center;
top: 0px;
font-size:xx-large;
font-weight: bold;

}



.logoagro{
	width: 150px;
	height: 150px;
	-webkit-animation: rotate-vert-center 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	animation: rotate-vert-center 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
 @-webkit-keyframes rotate-vert-center {
	0% {
	  -webkit-transform: rotateY(0);
			  transform: rotateY(0);
	}
	100% {
	  -webkit-transform: rotateY(360deg);
			  transform: rotateY(360deg);
	}
  }
  @keyframes rotate-vert-center {
	0% {
	  -webkit-transform: rotateY(0);
			  transform: rotateY(0);
	}
	100% {
	  -webkit-transform: rotateY(360deg);
			  transform: rotateY(360deg);
	}
  }
  
.contenedorvideos{
	text-align: center;

}