*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
  overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Roboto', Verdana, Geneva, Tahoma, sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
}


.btn-call{
    color: #9d5a11;
}
.btn-call:hover{
    background-color: #0e021f;
    border: none;
}
.bg-dark-purple {
  background-color: #0e021f !important;
  transition: background-color 0.3s ease-in-out;
}

.card.flex-row {
  flex-direction: row;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  .lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
  }
  .lightbox .close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
  }

  .footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 2rem;
            background-color: #0e021f;
            color: #f1f1f1;
        }

        .footer-left {
            max-width: 500px;
        }

        .footer h3 {
            margin-top: 0;
        }

        .footer p, .footer a {
            color: #f1f1f1;
            font-size: 14px;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .footer-map {
            flex: 1;
            min-width: 300px;
            height: 250px;
            margin-top: 1rem;
        }

        .copyright {
            background-color: #f1f1f1;
            text-align: center;
            padding: 1rem;
            font-size: 14px;
        }

    .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeat 1.5s infinite;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.15);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.15);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}



@media (max-width: 768px) {
    .card.flex-row {
        flex-direction: column !important;
    }
    .card.flex-row img {
        border-radius: 0.375rem 0.375rem 0 0 !important;
    }
    .footer {
    flex-direction: column;
    }
    .footer-map {
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 460px) {
  
}  

