:root {
      --verde: #fc0884;
      --azul-rey: #045ca8;
      --negro:#212529; 
}
body, html{
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
    }
a{
    color:var(--azul-rey);
    text-decoration:none;
}
a:hover{
    color:var(--verde);
}
.text-primary{
    color:var(--verde)!important;
}
.text-secondary{
    color:var(--azul-rey)!important;
}
.text-custom-1{
    
    color:var(--verde);
}
.text-custom-1:hover{
    
    color:var(--azul-rey);
}
.bg-dark{
    background-color: var(--negro)!important;
}
.carousel-item{
    min-height:300px!important;
}
.carousel-caption {
    right: 0%; 
    left: 0%;
}
.btn-primary {
    background-color: var(--verde);
    color: white;
    font-weight: 500;
    border-radius: 30px;
    padding: 12px 28px;
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;}
.btn-primary:hover{
    background-color: var(--azul-rey);
    color: white;}
    
.btn-secondary {
    background-color: var(--azul-rey);
    color: white;
    font-weight: 500;
    border-radius: 30px;
    padding: 12px 28px;
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease-in-out;}
.btn-secondary:hover {
    background-color: var(--verde);
    color: white;
    
}
.dropdown-menu {
      border-top: 3px solid var(--verde);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 0;
      padding: 10px 0;}
.dropdown-item {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #000;
      padding: 10px 20px;
      transition: all 0.2s ease-in-out;
      position: relative;}
.dropdown-item::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 3px;
      background-color: var(--verde);
      transition: width 0.3s ease-in-out;}
.dropdown-item:hover::before {
      width: 100%;}
.dropdown-item:hover {
      background-color: transparent;
      color: var(--azul-rey);}
.icon-btn {
      font-size: 18px;
      color: white;
      background-color: var(--verde);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;}
.icon-btn:hover {
      background-color: var(--azul-rey);}
.section-title {
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;}
.icon-arrow {
    color: #ccc;
    font-size: 1.5rem;
    margin-top: 1rem;}
.highlight {
    position: relative;
    display: inline-block;    
    z-index: 0;}
.highlight::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background-color: var(--verde);
    z-index: -1;}
.product-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--verde);
    color: white;
    display: none;}
.transition-navbar {
      transition: background-color 0.3s ease, box-shadow 0.3s ease;}
.scrolled {
      background-color: white !important;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);}
.scrolled .icon-btn {
      background-color: #160647;
      color: white;}
.scrolled .icon-btn:hover {
      background-color: #00cfc3;}
.pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(191 191 191);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  text-align: center;width: 100%;
}


.accordion-item i{
    width:40px;
    height:40px;
    background-color:var(--verde);
    border-radius:4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes fadeIn {
  from {
    opacity: 0.5;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
#purchase-notification {
  position: fixed;
  bottom: -100px;
  left: 20px;
  min-width: 320px;
  z-index: 1050;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#purchase-notification.show-slide {
  opacity: 1;
  transform: translateY(0);
  bottom: 20px;
}

#purchase-notification.hide-slide {
  opacity: 0;
  transform: translateY(100%);
  bottom: -100px;
}
