/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}


main {
    padding: 20px;
}

/*botones*/
.div-pay-button {
  text-align: center;
  transition: all 0.4s ease-in-out;
}


.pay-button {
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.pay-button:hover {
  background-color: #0600b6; /* Cambio de color */
}
/*Whatsapp*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:50px;
	right:20px;
	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;
}
/* Estilo para el texto */
.whatsapp-text {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #0056b3;
    color: white;
    margin-top: 20px;
}
.logo-footer {
  max-width: 100px;
  border-radius: 100%;
}