/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  background-image: url("../img/fondo.jpg");
}

header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

header img {
  height: 40px;
}

main {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.logo-circle {
  margin: 0 auto 20px;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

h2 {
  color: #25d366;
  font-weight: 500;
  margin-bottom: 20px;
}

.cta-box {
  background-color: #1f2422;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #ffffff;
}

.cta-button {
  background-color: #25d366;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  animation: pulse 1.5s infinite;
  cursor: pointer;
}

footer {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 60px;
  padding-bottom: 80px;
}

/* 🔥 Barra Fija con Bono Activo */
.bono-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #16a34a, #25d366);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  animation: flash 2s infinite;
  z-index: 999;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  header {
    padding: 5px;
  }

  .logo-circle {
    width: 150px;
    height: 150px;
  }
}