@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
h1,h2,h3,h4,h5,h6{font-family: "Russo One", sans-serif;}
p,li,a{font-family: "Open Sans", sans-serif;}
body{
	background-image: url(../img/borde1.png);
	background-repeat: repeat-x;
	background-size: 10px;
}
.tit1{
	font-size: 2rem;
	text-align: center;
	color: #720484;
	padding-top: 2rem;
	padding-bottom: 3rem;
	margin-bottom: 1rem;
	background-image: url(../img/separador1.png);
	background-repeat: no-repeat;
	background-position: bottom center;
}
.tit2{
	font-size: 2rem;
	color: #720484;
	margin-bottom: 1rem;
}
.grid h6{
	font-size: 1.3rem;
	padding-top: 5px;
	color: #720484;
	text-align: center;
}
.grid ul li{
	font-size: 1.25rem;
	line-height: 120%;
	color: #333;
}
.grid .btn1, .grid .btn2, .grid .btn3{
	font-family: "Open Sans", sans-serif;
	font-size: 0.9rem;
	background-color: #f58a07;
	color: #fff;
	text-decoration: none;
	padding: 6px;
	border-radius: 5px;
}
.grid .btn3{
	background-color: #999;
}
.grid .btn1:hover, .grid .btn2:hover{
	background-color: #3a0ca3;
	box-shadow: 0 0 10px #000;
}
.parpadeante {
	animation: parpadeo 3s linear infinite; /* Nombre de la animación, duración, tiempo y repetición */
}
.nav-link{
	font-size: 1.2rem;
	color: #3a0ca3;
	font-family: "Russo One";
}
.nav-link:hover{
	text-shadow: 0 0 15px #3a0ca3;
}
.btn4{
	font-family: "Open Sans", sans-serif;
	font-size: 1.2rem;
	background-color: #f58a07;
	color: #fff;
	text-decoration: none;
	padding: 1rem;
	border-radius: 5px;
}

@keyframes parpadeo {
	0% {
		opacity: 1; /* Totalmente visible */
	}
	50% {
		opacity: 0; /* Totalmente transparente */
	}
	100% {
		opacity: 1; /* Totalmente visible */
	}
}

.grid .btn2{
	background-color: #ea3546;
}
.grid .btn2:hover{
	background-color: #f90093;
}
footer{
	background-color: #3a0ca3;
}

/* Estilo del botón flotante */
.whatsapp-button {
	position: fixed;
	bottom: 20px;         /* separación desde la parte inferior */
	right: 20px;          /* separación desde la parte derecha */
	background-color: #25D366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.whatsapp-button:hover {
	transform: scale(1.1);
}

.whatsapp-icon {
	font-size: 30px;
}