body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* 

  NAVBAR

  */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px 20px;
  background-color: #f0f9ff;
  position: relative;
  z-index: 10;
}

.navbar a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 105px;
}

.navbar__motto {
  font-weight: bold;
  font-size: 1.2rem;
  color: #368ed6;
  text-decoration: none;
  cursor: pointer;
}

.call-now-button {
  background-color: #368ed6;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  flex-shrink: 0;
}

.call-now-button:hover {
  background-color: #56c596;
  transform: scale(1.05);
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
  padding: 0;
  margin: 0;

  background-color: #1b3c88;
}

.navbar__menu__links {
  color: white;
  font-weight: bold;
  text-decoration: none;

  padding: 10px 15px;
}

.navbar__hr {
  width: 80%;
  height: 3px;
  margin: 20px auto;

  border: 0;
  border-radius: 5px;
  background: linear-gradient(to right, #1b3c88, #5ab1ff);
}

.navbar__menu__hr {
  width: 30%;
  height: 2px;
  margin: 20px auto;

  border: 0;
  border-radius: 5px;
  background: linear-gradient(to right, #1b3c88, #5ab1ff);
}

/* 

  WHATSAPP BUTTON

  */

.whatsapp__button {
  position: fixed;
  bottom: 20px;
  right: 20px;

  cursor: pointer;
  z-index: 1001;

  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp__button:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
}

.whatsapp__menu {
  position: fixed;
  bottom: 100px;
  right: 40px;

  display: flex;
  flex-direction: column;

  background-color: #dcf8c6;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp__menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp__menu a {
  padding: 10px 15px;
  text-decoration: none;
  color: #075e54;
  border-bottom: 1px solid #b2dfdb;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.whatsapp__menu a:last-child {
  border-bottom: none;
}

.whatsapp__menu a:hover {
  background-color: #b2dfdb;
}

/* 

  SECTIONS

  */

.cards__section {
  background-color: #f0f7fa;
  padding-top: 1px;
  padding-bottom: 1px;
}

/*

  FOOTER

  */

.footer {
  background-color: #1b3c88;
  color: white;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
}

.footer p {
  margin: 5px 0;
}

/*

  PROMO BANNER

  */

.promo__banner {
  display: block;
  background: linear-gradient(90deg, #368ed6, #56c596);
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  z-index: 999;
}

.promo__banner:hover {
  opacity: 0.9;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
