body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2A2A2A;
  color: #fff;
}

/* --header-- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #000000!important;
}
.logo {
  max-height: 40px;
}
.icon-header {
  width: 28px;
  height: auto;
  transition: transform 0.2s ease;

}

.icon-header:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* --main-- */

h2 {
  font-size: 40px;
  font-weight: bold;
}
h3 {
  font-size: 36px;
  font-weight: bold;
}
.banner-title, .section-title {
  font-size: 36px;
  font-weight: bold;
}
span {
  font-size:24px;
}
.main-section {
  text-align: center;
  background-image: url("../img/background/patern.png");
  padding: 20px 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 1;
}
.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;
}

.icon-wa {
  width: 24px;
  height: 24px;
}

/* --footer-- */

.footer {
  display: flex;
  justify-content: space-between;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #000000!important;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  font-size: 16px;
  text-align: center;
  row-gap: 15px;
  column-gap: 10px;
}
.footer-logo img {
  max-height: 60px;
}
.footer-center {
  display: grid;
  row-gap: 7px;
  text-align: left;
  margin-left: 20px;
  flex: 1;
}
.footer-center span {
  font-size: 14px;
}
.footer-right {
  display: grid;
  row-gap: 3px;
  text-align: right;
  font-size: 16px;
}
.footer-right span {
  column-gap: 3px;
  font-size: 14px;
}
.footer-right a.amarillo {
  color: #FBE086;
  font-weight: bold;
  text-decoration: none;
}
.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
