/***************************************************************************************************************
||||||||||||||||||||||||||||       MASTER STYLESHEET FOR Appilo (2025 Update)       |||||||||||||||||||||||||||
****************************************************************************************************************
* Modernizado: Bootstrap 5.3.8 / Swiper 12 / AOS 3 / GLightbox 3 / PureCounter 1.5
* Mantiene el mismo diseño visual original de Appilo
****************************************************************************************************************/

/************************** 
* 1. Imported styles 
***************************/
@import url('bootstrap.min.css');
@import url('all.min.css');
@import url('aos.css');
@import url('swiper-bundle.min.css');
@import url('glightbox.min.css');

/************************** 
* 2. General styles 
***************************/
body {
  font-family: 'Poppins', sans-serif;
  color: #656565;
  font-size: 14px;
  line-height: 27px;
  background: #fff;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  transition: none;
}

a {
  text-decoration: none;
  outline: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

.sec-pad {
  padding: 120px 0;
}

.gray-bg {
  background: #f4f9fd;
}

.sec-title {
  margin-bottom: 100px;
  text-align: center;
}
.sec-title h2 {
  font-size: 32px;
  color: #170b35;
  font-weight: 600;
}
.sec-title p {
  font-size: 16px;
  line-height: 26px;
  color: #656565;
  margin-top: 20px;
}

/************************** 
* 3. Button styles 
***************************/
.thm-btn {
  display: inline-block;
  border: none;
  background: linear-gradient(90deg, #6541c1 0%, #d43396 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 28px;
  padding: 15px 29px;
  transition: all 0.4s ease;
  position: relative;
}
.thm-btn:hover {
  color: #190a32;
  background: #fff;
  box-shadow: 0 15px 30px rgba(212, 50, 151, 0.27);
}

.thm-btn.borderd {
  background: #fff;
  color: #190a32;
  border-radius: 28px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  padding: 15px 29px;
  transition: all 0.4s ease;
}
.thm-btn.borderd::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 28px;
  background: linear-gradient(90deg, #6541c1 0%, #d43396 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.thm-btn.borderd:hover {
  color: #fff;
  background: linear-gradient(90deg, #6541c1 0%, #d43396 100%);
  box-shadow: 0 15px 30px rgba(212, 50, 151, 0.27);
}

/************************** 
* 12. ScrollUp & Preloader 
***************************/
.scrollup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #6541c1 0%, #d43396 100%);
  color: #fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 23px 42px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
.scrollup.show { display: flex; }

.preloader {
  background: linear-gradient(90deg, #6541c1 0%, #d43396 100%);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.preloader.fade-out,
.preloader[style*="opacity: 0"] {
  opacity: 0;
  pointer-events: none;
}
.preloader .spinner {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  animation: scaleout 1s infinite ease-in-out;
}
@keyframes scaleout {
  0% { transform: scale(0); }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

