body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #18181E;
  color: #ffffff;
}

/* --header-- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #000000!important;
}
.logo {
  max-height: 60px;
}
.icon-header {
  width: 28px;
  height: auto;
  transition: transform 0.2s ease;

}

.icon-header:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* --main-- */

.main-section {
  text-align: center;
  padding: 20px 20px;
}
h2 {
    color: #FFD902;
}
.main-banner, .second-banner {
  width: 100%;
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 0 10px #222;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.whatsappBtn {
  display: inline-flex;
  margin: 10px auto;
  gap: 10px;
  background-color: #61ce70;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  border: 2px solid white;
  cursor: pointer;
  text-decoration: none;
  animation: pulse 1.25s infinite;
  transition: transform 0.3s ease;
}

.whatsappBtn:hover {
  background-color: #0f0f1f;
  color: #fff;
  border: #D7B700;
}

.icon-wa {
  width: 24px;
  height: 24px;
}

/* --footer-- */

.footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background-color: #000000!important;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.footer-logo img {
  max-height: 60px;
}
.footer-center {
  text-align: center;
  flex: 1;
}
.footer-center span {
  display: block;
  font-size: 12px;
}
.footer-right a.amarillo {
  color: yellow;
  font-weight: bold;
  text-decoration: none;
}
.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
