/* Estilos base */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* Fondo de pantalla con video */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Asegura que el video esté detrás del contenido */
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra toda la pantalla */
}

/* Contenedor principal de contenido */
.container {
    text-align: center;
    color: #fff;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/* Estilos de los íconos de redes sociales */
.icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.icon {
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}

.icon:hover {
    transform: scale(1.2);
    color: #E10600;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

.footer a {
    color: #E10600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	animation: breathe 2s ease-in-out infinite;
  }
  
  /*Estilos solo al icono whatsapp*/
  .whatsapp-btn i {
	color: #fff;
	font-size: 24px;
	animation: beat 2s ease-in-out infinite;
	text-decoration: none;
  }

  /*Estilos con animation contorno respirando*/
  @keyframes breathe {
	0% {
	  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	70% {
	  box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
	  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
  }
  
  /*Estilos de animacion del icono latiendo*/
  @keyframes beat {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.2);
	}
	100% {
	  transform: scale(1);
	}
  }