/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #130028;
}

a {
  color: #130028;
}

a:hover {
  color: #A801FF;
  text-decoration: none;
}

h1 {
  font-family: "fractul-variable", sans-serif;
  font-size: 60;
}

h2 {
  font-family: "fractul-variable", sans-serif;
  font-size: 50;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 40;
}

h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #A801FF;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Barra Telefonica
--------------------------------------------------------------*/
.barra-telefonica {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #130028;
  color: #fff;
  text-align: center;
  z-index: 9999;
}

.barra-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A801FF;
  text-decoration: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
}

.barra-link i {
  font-size: 24px;
  margin-right: 10px;
}

.barra-link:hover {
  color: #FFF;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #A801FF;
  color: #fff;
  transition: all 0.2s;
}

.back-to-top i:hover {
  background: #03FF81;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #8900d3;
  height: 40px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

#topbar .client-type a {
  color: #fff;
  margin-right: 5px;   
  transition: 0.3s;
}

#topbar .client-link-one {
  background: transparent;
  color: #fff;
  padding: 4px 12px 12px 12px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#topbar .client-link-one.active {
  background: #A801FF;
}

#topbar .client-link-two {
  background: transparent;
  color: #fff;
  padding: 4px 12px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#topbar .social-links a {
  color: #fff;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  position: relative;
  padding: 0 10px; /* Espaciado entre los enlaces */
  text-decoration: none;
}

#topbar .social-links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -5px;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #A801FF;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0 20px 0;
  top: 40px;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 20px;
    top: 0;
  }
  #header .logo img {
    max-height: 40px;
  }
}

/* ======= Corrección del menú ======= */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center; /* Alinea los elementos verticalmente */
  gap: 15px; /* Espaciado uniforme */
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

/* ======= Enlaces del menú ======= */
.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px; /* Ajuste de padding para mejorar alineación */
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

/* ======= Estilos del botón de compra ======= */
.nav-menu .btn-buy {
  background: #fff;
  color: #A801FF;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
}

/* ======= Ajuste responsive para móviles ======= */
@media (max-width: 992px) {
  .nav-menu ul {
    flex-direction: column; /* Cambia a columna en pantallas pequeñas */
    align-items: flex-start;
  }

  .nav-menu .btn-buy {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* ======= Botón hamburguesa ======= */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-toggle i {
  color: #fff;
}

/* ======= Menú móvil ======= */
.mobile-nav {
  color: #fff;
  background: #130028;
  position: fixed;
  top: 0px;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  z-index: 9999;
  overflow-y: auto;
  transition: transform 0.1s ease-in-out;
  transform: translateX(100%);
  padding: 20px;
  border-radius: 0;
}

.mobile-nav-active .mobile-nav {
  transform: translateX(0);
}

/* ======= Lista del menú móvil ======= */
.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espaciado entre enlaces */
}

/* ======= Enlaces del menú móvil ======= */
.mobile-nav a {
  display: block;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

/* ======= Botón de compra en el menú móvil ======= */
.mobile-nav .btn-buy {
  display: block;
  background: transparent;
  color: white;
  border: 1px solid #fff;
  padding: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  transition: 0.1s;
}

.mobile-nav .btn-buy:hover {
  background: #130028;
  border: 1px solid #130028;
}

/* ======= Fondo oscuro al abrir el menú ======= */
.mobile-nav-overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  transition: opacity 0.1s;
}

.mobile-nav-active .mobile-nav-overly {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #8900d3; /* Color de fondo de toda la sección si no hay imagen */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 10px 0;
}

#hero .container {
  position: relative;
  background: transparent; /* Sin fondo acá */
  margin-top: 160px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

#hero .box-1 {
  border-radius: 20px;
  padding: 20px 30px 20px 30px;
  color: #fff;
  background-color: #A801FF;
  display: flex;
  flex-direction: column;
}

#hero .box-2 {
  border-radius: 20px;
  padding: 20px 30px 20px 30px;
  color: #fff;
  background-color: #A801FF;
  display: flex;
  flex-direction: column;
}

#hero .card-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 10px;
}

#hero .card-title span {
  font-weight: 700;
}

#hero .card-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

#hero .card-text span {
  color: #130028;
}

#hero .btn-box-1 {
  color: #fff;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #fff;
  border-radius: 0px;
  transition: 0.1s;
}

#hero .btn-box-1:hover {
  color: #130028;
  background: #A801FF;
  border: 1px solid #A801FF;
}

#hero .btn-box-2 {
  color: #A801FF;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 0px;
}

#hero .btn-box-2:hover {
  color: #fff;
  background: #130028;
}

@media (max-width: 992px) {
  #hero .container {
    margin-top: 50px !important;
  }

  #hero .row {
    flex-direction: column; /* apila texto e imagen */
    align-items: center;    
  }

  .box-1, .box-2 {
    width: 100%;
    margin-top: 20px;
    padding: 10px 20px 10px 20px !important;
  }

  #hero .card-title {
    font-size: 36px;
    line-height: 40px;
  }

  #hero .card-text {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  #hero .container {
    margin-top: 40px;
  }

  #hero .row {
    flex-direction: column; /* apila texto e imagen */
    align-items: center;
    padding: 20px;
  }

  .box-1, .box-2 {
    width: 100%;
    margin-bottom: 5px;
    padding: 10px 20px 10px 20px !important;
  }

  #hero .card-title {
    font-size: 36px;
    line-height: 40px;
  }

  #hero .card-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  justify-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  color: #130028;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  font-family: "fractul-variable", sans-serif;
  margin: 15px 0 0 0;
  font-size: 28px;
  font-weight: 400;
  color: #130028;
}

.section-title h3 span {
  color: #03FF81;
}

.section-title p {
  width: 100%;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(168, 1, 255, .1);
  border-radius: 20px;
  z-index: 1;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #A801FF;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
}

.featured-services .title a {
  color: #130028;
}

.featured-services .description {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Big Map 
--------------------------------------------------------------*/
.big-map {
  width: 100%;
}

.big-map .card {
  background: #fff;
  border: 1px solid rgb(168, 1, 255, .1);
  border-radius: 20px;
  padding: 20px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  background-color: #F7F7F7;
}

.pricing .box {
  margin: 4px;
  padding: 30px;
  background: #fff;
  text-align: left;
  border-radius: 20px;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
}

.pricing .box h1 {
  color: #130028;
  font-size: 56px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pricing .box h1 span {
  font-size: 16px;
  font-weight: 400;  
}

.pricing .box h2 {
  font-size: 32px;
  font-weight: 400;  
  color: #130028;
}

.pricing .box h2 span {
  font-weight: 700;
}

.pricing .box p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 2px;
}

.pricing .box .cat-one {
  text-align: center;
  width: 30%;
  background: #A801FF;
  color: #fff;
  margin-right: 5px;
}

.pricing .box .cat-two {
  text-align: center;
  width: 30%;
  background: #f3f3f3;
  color: #130028;
  margin-right: 5px;
}

.pricing .box .cat-three {
  text-align: center;
  width: 30%;
  background: #03FF81;
  color: #fff;
  margin-right: 5px;
}

.pricing .box i {
  font-size: 16px;
  font-weight: 400;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #535353;
  text-align: left;
  line-height: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .box ul li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pricing .box ul li span {
  color: #A801FF;
  font-weight: 600;
}

.pricing .box ul i {
  color: #03FF81;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  width: 100%;
  background: #A801FF;
  color: #fff;
  display: inline-block;
  padding: 10px 0 10px 0;
  border-radius: 0px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-align: center;
}

.pricing .btn-buy:hover {
  background: #b732ff;
  color: #fff;
}

.pricing .featured h3 {
  color: #fff;
  background: #130028;
}

.pricing .box-promo {
  justify-content: center;
  color: #130028;
  background: #fff;
  margin: 20px 4px;
  padding: 10px;  
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.pricing .box-promo h3 {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 768px) {
  .pricing .swiper-container {
    padding: 0 20px; /* margen a los lados si querés */
  }

  .pricing .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .pricing .box {
    width: 100%;
    margin: 0 auto;
  }

  .pricing .box h1 {
    font-size: 36px;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background-color: #fff;
}

.faq .faq-list {
  width: 100%;
  padding: 0px;
  list-style: none;
}

.faq .faq-list li {
  padding-bottom: 20px;
  
}

.faq .faq-list a {
  font-family: "fractul-variable", sans-serif;
  display: flex; /* Flexbox! */
  justify-content: space-between; /* Separa el texto de la flecha */
  align-items: center; /* Centra todo verticalmente */
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(168, 1, 255, 0.1);
  padding: 14px 20px 14px 20px;  
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list a.collapsed {
  color: #130028;
}

.faq .faq-list a.collapsed:hover {
  color: #a801ff;
}

.faq .faq-list i {
  font-size: 18px;
  position: static; /* Asegura que no quede absoluto */
  margin-left: 10px; /* Espacio entre texto y flecha */
}

.faq .faq-list p {
  margin: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Brand Footer
--------------------------------------------------------------*/
#final-brand {
  background-color: #8900d3;
  text-align: center;
}

#final-brand img {
  max-height: 40px;
}

#final-brand .social-links a {
  color: #fff;
  background: #a801ff;
  font-size: 26px;
  display: inline-block;  
  line-height: 1;
  padding: 12px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.1s;
}

#final-brand .social-links a:hover {
  color: #fff;
  background: #130028;  
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #a801ff; /* Fondo negro */
  color: #fff;            /* Texto blanco */
  padding: 10px 0;        /* Espacio arriba y abajo */
  text-align: center;     /* Centrado horizontal */
  font-size: 12px;
  margin-bottom: 30px;
}

#footer .container {
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center;     /* Centrado vertical */
  height: 100%;            /* Asegura el centrado vertical */
}