body {
  font-family: 'Open Sans', sans-serif;
  background-color: #1B103F;
  color: #ffffff;
  scroll-behavior: smooth;
}

.hero {
  background: linear-gradient(135deg, #2A1770 40%, #4A1A90 100%);
  padding: 4rem 1rem;
}

.logo-img {
  width: 180px;
  height: auto;
  border-radius: 50%;
  border: 4px solid #FF00C8;
  box-shadow: 0 0 15px #ff00c8aa;
}

.product-card {
  background-color: #2A1770;
  border-radius: 15px;
  border: none;
  color: #fff;
  box-shadow: 0 0 10px #00000050;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.custom-btn {
  background-color: #FF00C8;
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.custom-btn:hover {
  background-color: #FF7900;
  color: #000;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.bg-footer {
  background: #120633;
}
.info-banner {
  background: linear-gradient(145deg, #4a1a90 30%, #1B103F 100%);
  border-top: 3px dashed #FF00C8;
  border-bottom: 3px dashed #FF00C8;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid #FF00C850;
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.2);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box ul {
  padding-left: 1.2em;
}

.info-box ul li {
  margin-bottom: 0.5rem;
  color: #FFD700;
}

.info-box h4 {
  color: #FF00C8;
}

.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}

.swiper-slide {
  background: #2A1770;
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #ff00c860;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.03);
}

.swiper-slide img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.loader-logo {
  width: 150px;
  height: auto;
  animation: pulse 1.2s infinite ease-in-out;
}

#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #1B103F;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.facebook-btn {
  background: #3b5998;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.facebook-btn:hover {
  background: #1d305f;
  text-decoration: none;
}

#testimonios {
  background: linear-gradient(145deg, #2A1770, #1B103F);
  border-top: 2px dashed #FF00C8;
}

#testimonios .carousel-item blockquote {
  font-size: 1.25rem;
  font-style: italic;
  padding: 0 2rem;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: #FF00C8;
  border-radius: 50%;
}
.border-purple {
  border-left: 3px solid #FF00C8 !important;
}

.accordion-button:not(.collapsed) {
  color: #FFD700;
  background-color: #2A1770;
}
.contact-bubble {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}

.bubble-toggle {
  background: #FF00C8;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px #ff00c870;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bubble-toggle:hover {
  transform: scale(1.1);
}

.bubble-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 70px;
  right: 5px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.bubble-menu.show {
  display: flex;
}

.bubble-menu li a {
  background: #2A1770;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #00000060;
  transition: background 0.3s ease;
}

.bubble-menu li a:hover {
  background: #FF7900;
}
