/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #1d1d1d;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;

}

h1 {
  font-weight: 600;
}

p {
  font-weight: 300;
}

a {
  color: #5c2dbf;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #5c2dbf, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


.header {
  color: #000000;
  background-color: #fff;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.037)
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}


.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: #5c2dbf;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: color-mix(in srgb, #5c2dbf, transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: rgb(255, 255, 255);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-size: 15px;
    padding: 0 2px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #5c2dbf;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #5c2dbf;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #52413a;;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #5c2dbf;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #000, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #5c2dbf, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #5c2dbf;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #5c2dbf;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #5c2dbf;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #1a1a1a;
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 63px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5c2dbf;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 100px;

  background-image: linear-gradient(rgba(91, 45, 191, 0), rgba(41, 3, 122, 0.913)), url(https://s3.ethercloud.mx/ethercloud.site/public/0303030.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* 🔥 EFECTO PARALLAX */
}


.hero .content-section img{
  max-width: 30%;
  text-align: center;
  margin: 2%;
}
 

.hero .content-section h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  margin-top: 10px;
}

.hero .content-section p {
  font-size: 2rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  text-align: center;
}


.hero .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.hero .cta-actions .btn.btn-cta-primary {
  background: #8a77fb;
  font-weight: 400;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
}

.hero .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, #8a77fb, transparent 80%), 0 0 0 3px color-mix(in srgb, #8a77fb, transparent 40%);
}

/* Igualar alturas en columnas */
.stats-wrapper .row {
  display: flex;
  flex-wrap: wrap;
}

.stats-wrapper .col-lg-4 {
  display: flex;
}

/* Card */
.stats-card {
  display: flex;
  align-items: center;
  gap: 1rem;

  width: 100%;
  height: 100%;

  margin: 2%;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Icono */
.stat-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a293f62f;
  color: #5c2dbf;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Texto */
.stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-content h6 {
  margin: 0;
  font-size: 18px;
}

.stat-content span {
  font-size: 14px;
  color: #a293f6;
}
@media (max-width: 991px) {
  .stats-wrapper .row {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .stats-wrapper .row {
    gap: 25px; /* más espacio en móvil */
  }
}


/* 🔵 DESKTOP (como lo tienes, ligeramente mejorado) */
.hero .content-section img {
  max-width: 30%;
  display: block;
  margin: 20px auto;
}

.hero .content-section h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  text-align: center;
  margin-top: 10px;
}

.hero .content-section p {
  font-size: 2rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* 🟡 TABLET */
@media (max-width: 991px) {
  .hero .content-section img {
    max-width: 45%;
  }

  .hero .content-section h2 {
    font-size: 32px;
  }

  .hero .content-section p {
    font-size: 1.5rem;
  }
}

/* 🔥 MÓVIL */
@media (max-width: 767px) {
  .hero .content-section img {
    max-width: 60%;
  }

  .hero .content-section h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero .content-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 0 10px; /* 🔥 evita que el texto toque bordes */
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.078);
  transition: all 0.4s ease;
}

.services .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #5c2dbf;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.services .service-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.services .service-item:hover::before {
  transform: scaleY(1);
}

.services .service-item:hover .service-icon {
  background-color: #5c2dbf;
  color: #fff;
  transform: rotateY(180deg);
}

.services .service-item:hover .service-icon i {
  transform: rotateY(180deg);
}

.services .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-color: color-mix(in srgb, #a293f6, transparent 90%);
  color: #5c2dbf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.5s ease;
}

.services .service-icon i {
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.services .service-content {
  flex-grow: 1;
}

.services .service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #000;
}

.services .service-content p {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, #000, transparent 20%);
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  color: #873cf0;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .service-link span {
  margin-right: 0.5rem;
}

.services .service-link i {
  transition: transform 0.3s ease;
}

.services .service-link:hover {
  color: color-mix(in srgb, #873cf0, transparent 25%);
}

@media (max-width: 767.98px) {
  .services .service-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .services .service-icon {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .services .service-icon i {
    font-size: 1.5rem;
  }

  .services .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .services .service-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .services .service-item {
    flex-direction: column;
    text-align: center;
  }

  .services .service-item::before {
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .services .service-item:hover::before {
    transform: scaleX(1);
  }

  .services .service-icon {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .services .service-link {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Why Us Section 

--------------------------------------------------------------*/
/* Sidebar */
.why-us .sidebar-content {
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .why-us .sidebar-content {
    position: static;
    margin-bottom: 48px;
  }
}

/* Badge */
.why-us .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a293f6;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Título */
.why-us .sidebar-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .why-us .sidebar-content h2 {
    font-size: 28px;
  }
}

/* Descripción */
.why-us .description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: color-mix(in srgb, #000, transparent 25%);
}

/* Boton */


.why-us .btn-main {
  padding: 16px 32px;
  background: #5c2dbf;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.why-us .btn-main:hover {
  transform: translateY(-2px);
}


.why-us .feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in srgb, #000 10%, transparent);

}


/* Icono */
.why-us .feature-icon {
  width: 95px;
  aspect-ratio: 1 / 1; /* 🔥 clave */
  border-radius: 50%;
  border: 2px solid #5c2dbf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* evita que flex lo deforme */
}

.why-us .feature-icon i {
  font-size: 32px;
  color: #5c2dbf;
}

/* Contenido */
.why-us .feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.why-us .feature-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: color-mix(in srgb, #000, transparent 25%);
}

/* 🔥 RESPONSIVE AJUSTES (sin cambiar diseño) */
@media (max-width: 991px) {

  /* Sidebar baja y respira mejor */
  .why-us .sidebar-content {
    margin-bottom: 32px;
  }

  /* Feature box más compacto */
  .why-us .feature-box {
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  /* Icono no se deforma */
  .why-us .feature-icon {
    flex: 0 0 95px; /* 🔥 mantiene tamaño fijo */
  }

}

/* 🔥 MÓVIL */
@media (max-width: 767px) {

  /* Título más compacto */
  .why-us .sidebar-content h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  /* Descripción más ligera */
  .why-us .description {
    margin-bottom: 24px;
  }

  /* Feature en mejor proporción */
  .why-us .feature-box {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  /* 🔥 CLAVE: evita que el icono se aplaste */
  .why-us .feature-icon {
    flex: 0 0 95px;
    height: auto; /* respeta aspect-ratio */
  }

  /* Texto más legible en móvil */
  .why-us .feature-content h4 {
    font-size: 18px;
  }

  .why-us .feature-content p {
    font-size: 13px;
  }

  /* Botón full width sin cambiar estilo */
  .why-us .btn-main {
    display: block;
    width: 100%;
  }

}

/* 🔥 SOLO comportamiento, NO diseño */
@media (max-width: 767px) {

  .why-us .feature-icon {
    flex: 0 0 auto;   /* no crece ni se encoge */
    width: 95px;      /* mantiene tamaño original */
    height: 95px;     /* refuerza círculo perfecto */
  }

  .why-us .feature-content {
    flex: 1;          /* el texto se adapta, no el icono */
    min-width: 0;     /* evita que el texto rompa el layout */
  }

}

/*--------------------------------------------------------------
# Consult Section  
--------------------------------------------------------------*/


.consult .content {
  background: rgba(139, 119, 251, 0.05);
  width: 100%;
  color: #000;
}

.consult .img-overlap {
  max-width: 100%;
  height: auto;
  margin-top: -50px;
}



.consult p {
  font-size: 16px;
}

/* Lista con iconos */
.consult ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.consult ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
}

/* Icono */
.consult ul li i {
  color: #5c2dbf;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
}


.consult-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap; /* asegura buen acomodo en móviles */
}


.consult-actions .btn.btn-cta-secondary {
  background: #5c2dbf;
  color: #fff;
  border: 2px solid color-mix(in srgb, #fff, transparent 70%);
  padding: 0.70rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.consult-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, #5c2dbf, transparent 95%);
  border-color: #5c2dbf;
  color:#5c2dbf;
}

.consult-actions .btn.btn-cta-secondary i {
  font-size: 20px;
}

/* Responsive ajustes para móviles */
@media (max-width: 768px) {

  .consult .content{
    padding: 5%;
  }

  .consult .content-title
   {
    margin-top: 8%;
  }

  .consult .content-title {
    font-size: 30px;
  }

  
  .consult-actions .btn.btn-cta-secondary {
  margin-top: 1%;
}

}

/*--------------------------------------------------------------
# Video Section  
--------------------------------------------------------------*/

.video .cta-section {
  padding: 100px;

  background-image: linear-gradient(rgba(91, 45, 191, 0.278), rgba(91, 45, 191, 0.867)), url(https://s3.ethercloud.mx/ethercloud.site/public/0303030.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 2px solid #8a77fb;
}


.video .cta-section .cta-content {
  position: relative;
  z-index: 2;
}


.video .cta-section .cta-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
}

.video .cta-section h3 {
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.video .cta-section p {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  
}

.video .cta-section .cta-buttons .btn-cta-secondary  {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #8b77fbbf;
  display: grid;
  place-content: center;
  animation: grow 1s infinite;
}

.video .cta-section .cta-buttons .btn-cta-secondary i {
  color: #eee;
  font-size: 50px;
}

@keyframes grow {
  from {
    box-shadow: 0px 0px 1em #000000b3;
  }
  to {
    box-shadow: 0px 0px 3em #0000009e;
  }
}



@media (max-width: 576px) {
  .video .cta-section .cta-buttons {
    margin-bottom: 8%;
  }

  .video .cta-section h3{
    font-size: 30px;
  }

  .video .cta-section p{
    font-size: 14px;
  }

}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, #5c2dbf, transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: #5c2dbf;
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: #5c2dbf;
  color: #fff;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: #5c2dbf;
}



.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 20px 25px 0 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, #5c2dbf, transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c2dbf;
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c2dbf;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}


.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 10px 0 0 0;
  color: color-mix(in srgb, #000, transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item  {
    padding: 20px;
    gap: 15px;
    margin-top: 5%;
  }


  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}


.contact .contact-info-panel {
  background: #5c2dbf;
  color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header  i{
  font-size: 40px;
  color: #fff;
}


.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff ;
  margin-top: 20px;
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 25px;
  color: #fff;
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}


/* ------------------------------
   Blog Section
------------------------------ */

#blog {
  display: none;
}


.blog-section .section-title {

  padding-bottom: 40px;
  
}

.blog-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Tarjeta individual */
.blog-section .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 
}

.blog-section .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-section .card-body {
  padding: 20px;
  margin-top: 5px;
}

.blog-section .card-title {
  font-size: 19px;
  font-weight: 400;
  color: #5c2dbf;
}

.blog-section .card-text {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.blog-section .btn {
  margin-top: 10px;
  background-color: #5c2dbf;
  border: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
  font-size: 12px;
}

.blog-section .btn:hover {
  background-color: #0a2bc9;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .blog-section .card-img-top {
    height: 180px;
  }
  
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .main-contact-wrapper {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 80px color-mix(in srgb, #333, transparent 94%);
  border: 1px solid color-mix(in srgb, #5c2dbf, transparent 92%);
}

.contact .info-box {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(180deg, color-mix(in srgb, #5c2dbf, transparent 95%), transparent);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, #5c2dbf, transparent 88%);
  height: 100%;
  transition: all 0.3s ease;
}


.contact .info-box:hover .icon-wrap {
  background: #5b2dbf;
  transform: scale(1.1);
}

.contact .info-box:hover .icon-wrap i {
  color: #fff;
}

.contact .info-box .icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, #a293f6, transparent 70%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact .info-box .icon-wrap i {
  font-size: 24px;
  color: #5c2dbf;
  transition: all 0.3s ease;
}

.contact .info-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.contact .info-box p {
  font-size: 15px;
  font-weight: 500;
  color: #5c2dbf;
  margin-bottom: 6px;
}

.contact .info-box .availability {
  font-size: 12px;
  color: color-mix(in srgb, #000, transparent 20%);
  display: block;
}

.contact .mapa {
  margin-top: 10px;
  padding-top: 40px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
}

#footer .footer-top {
  padding: 10px 0 40px 0;
}

#footer .footer-top img {
  max-width: 30%;
  height: auto;
}


#footer .footer-bottom   {
  background-color: #5c2dbf;
}


#footer .footer-bottom  .copyright {
  padding-top: 5px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}


@media (max-width: 768px) {
  
  #footer .footer-top img {
  max-width: 60%;
  height: auto;
}

}

/*--------------------------------------------------------------
# CLOUD BACKUP - HTML
--------------------------------------------------------------*/

.hero-backup {
  padding: 180px 0;
  background: linear-gradient(0.25turn, #5b2dbf, #5b2dbfe8, #5b2dbf), url(https://s3.ethercloud.mx/ethercloud.site/public/image.png) top center; background-size: cover;
}

.hero-backup .content-section h4 {
  font-size: 35px;
  font-weight: 300;
  color: #e4d7ff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-backup .content-section h2 {
  font-size: 45px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-backup .content-section p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


.hero-backup .cta-actions .btn {
  white-space: nowrap; /* evita que el texto se corte */
}


.hero-backup .cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center; /* centra los botones */
}


.hero-backup .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.hero-backup .cta-actions .btn.btn-cta-primary {
  background: #8a77fb;
  font-weight: 300;
  color: #fff;
  padding: 0.80rem 2rem;
  font-size: 1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, #bc9dff, transparent 85%), 0 0 0 0 #a175ffaa;
}

.hero-backup .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, #8a77fb, transparent 80%), 0 0 0 3px color-mix(in srgb, #8a77fb, transparent 60%);
}

/* En móviles */
@media (max-width: 576px) {
  .hero-backup .cta-actions {
    flex-direction: column;
    align-items: center; /* opcional: centra los botones */
  }

  .hero-backup .cta-actions .btn {
    width: 100%; /* opcional: botones de ancho completo */
    max-width: 300px; /* opcional: límite para que no se vean gigantes */
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about .intro-content .headline {
  font-weight: 500;
  line-height: 1.2;
  font-size: 2.8rem;
  margin: 0 0 24px 0;
  color: #000;
}

.about .intro-content .lead {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, #000, transparent 10%);
  margin-bottom: 24px;
}

.about .intro-content p {
  line-height: 1.8;
  margin-bottom: 24px;
  color: color-mix(in srgb, #000, transparent 5%);
}

.about .intro-content p span {
  font-weight: 600;
}

.about .intro-content .cta-group {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}


.about .profile-figure {
  margin: 0;
}


.about .profile-figure .profile-caption {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about .skill-item {
  padding: 24px;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  border: 1px solid color-mix(in srgb, #5c2dbf, transparent 88%);
  height: 100%;
}

.about .skill-item i {
  font-size: 24px;
  color: #5b2dbf;
  margin-bottom: 16px;
  display: inline-block;
}

.about .skill-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 500;
}

.about .skill-item p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, #000000, transparent 25%);
}

.about .skill-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, #5c2dbf, transparent 10%);
  box-shadow: 0 10px 30px color-mix(in srgb, #873cf0, transparent 75%);
}


/* Tablets y pantallas más grandes */
@media (max-width: 481px) {
  .about .intro-content .headline {
    font-size: 32px;
  }



}

/*--------------------------------------------------------------
# Consult Section - Cloud backup
--------------------------------------------------------------*/

.consult-backup .content {
  background: linear-gradient(0.25turn, rgb(230, 227, 223), rgb(236, 239, 238),rgb(238, 243, 248) );
  width: 100%;
  color: #000;
}

.consult-backup .img-overlap {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}


.consult-backup .content-title {
  font-weight: 700;
  font-size: 32px;
  text-align: left;
}

.consult-backup  .content-one {
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  color: #8a77fb;
  text-transform: uppercase;
}


.consult-backup p {
  font-size: 16px;
}

/* Lista con iconos */
.consult-backup ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}


.consult-backup .consult-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap; /* asegura buen acomodo en móviles */
}


.consult-backup .consult-actions .btn.btn-cta-secondary {
  background: #5b2dbf;
  color: #fff;
  border: 2px solid color-mix(in srgb, #fff, transparent 70%);
  padding: 0.70rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.consult-backup .consult-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, #5b2dbf, transparent 10%);
  border-color: #5b2dbf;
  color:#fff;
}

.consult-backup .consult-actions .btn.btn-cta-secondary i {
  font-size: 20px;
}

/* Responsive ajustes para móviles */
@media (max-width: 768px) {

  .consult-backup .content{
    padding: 5%;
  }

  .consult-backup .content-title
   {
    margin-top: 8%;
  }

  .consult-backup .content-title {
    font-size: 30px;
  }

  
  .consult-backup .consult-actions .btn.btn-cta-secondary {
  margin-top: 1%;
}

}


/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .process-container {
  max-width: 800px;
  margin: 0 auto;
}

.steps .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.steps .process-item:last-child {
  padding-bottom: 0;
}

.steps .process-item .content {
  width: 100%;
  position: relative;
  background: #faf9ff;
  border: 2px solid color-mix(in srgb, #5b2dbf, transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.steps .process-item .content:hover .step-icon {
  background: #8a77fb;
  transform: rotate(10deg);
}

.steps .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.steps .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 800;
  color: #8a77fb;
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.steps .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.steps .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #5b2dbf;
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, #000, transparent 90%);
}

.steps .process-item .step-icon i {
  font-size: 2rem;
  color: #fff;
}


.steps .process-item .step-content h3 {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.steps .process-item .step-content p {
  color: color-mix(in srgb, #000, transparent 5%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}


@media (max-width: 767.98px) {
  .steps .process-container {
    padding: 1rem 0;
  }

  .steps .process-item {
    padding-bottom: 2rem;
  }

  .steps .process-item .content {
    border-width: 1px;
  }

  .steps .process-item .content:hover {
    transform: translateY(-5px);
  }

  .steps .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .steps .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .steps .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .steps .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .steps .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .steps .process-item .step-content h3 {
    font-size: 1.25rem;
  }

}

/*--------------------------------------------------------------
# Hero Email bussines
--------------------------------------------------------------*/

.hero-email {
  position: relative;
  padding: 50px 0;

  /* Fondo lila */
  background-color: #b2a4ff;

  /* Tus 2 imágenes PNG */
  background-image: 
    url('https://s3.ethercloud.mx/ethercloud.site/public/6.png'),
    url('https://s3.ethercloud.mx/ethercloud.site/public/7.png');

  background-repeat: no-repeat, no-repeat;

  /* Ajusta posiciones */
  background-position: left top, right bottom;

  /* Ajusta tamaños */
  background-size: 700px, 700px;
}
.hero-email .content-section {
  position: relative;
  z-index: 2;
}

.hero-email .content-section h3 {
  font-size: 25px;
  font-weight: 300;
  color: #d5ceff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-email .content-section h2 {
  font-size: 45px;
  font-weight: 500;
  color: #5c2dbf;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-email .content-section p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


.hero-email .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.hero-email .cta-actions .btn.btn-cta-primary {
  background: #5c2dbf;
  font-weight: 400;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, #bc9dff, transparent 65%), 0 0 0 0 #a175ff;
}

.hero-email .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, #8a77fb, transparent 80%), 0 0 0 3px color-mix(in srgb, #8a77fb, transparent 40%);
}


.hero-email .image-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-email .image-section .main-image-wrapper {
  position: relative;
  max-width: 100%;
}

.hero-email .image-section .main-image-wrapper .main-img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}


.hero-email .stats-card {
  margin: 2%;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ICONO */
.hero-email .stat-icon {
  width: 45px;
  height: 45px;
  background: #a293f62f;
  color: #5c2dbf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* TEXTO */
.hero-email .stat-content h6 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.hero-email .stat-content span {
  font-size: 0.85rem;
  color: #a293f6;
}


/*--------------------------------------------------------------
# Consult Section - Email Business
--------------------------------------------------------------*/

.consult-email .content {
  background: rgba(139, 119, 251, 0.1);
  width: 100%;
  color: #000;
  padding: 1px;
}

/* Imagen */
.consult-email .img-overlap {
  max-width: 100%;
  height: auto;
  margin-top: -70px;
}

/* Título */
.consult-email .content-title {
  font-weight: 700;
  font-size: 32px;
  text-align: left;
  margin-bottom: 15px;
}

/* Texto */
.consult-email p {
  font-size: 16px;
  line-height: 1.6;
}

/* Lista */
.consult-email ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* Acciones */
.consult-email .consult-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Botón */
.consult-email .consult-actions .btn.btn-cta-secondary {
  background: #5b2dbf;
  color: #fff;
  border: 2px solid color-mix(in srgb, #fff, transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.consult-email .consult-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, #5b2dbf, transparent 10%);
  border-color: #5b2dbf;
  color: #fff;
}

.consult-email .consult-actions .btn.btn-cta-secondary i {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

/* Tablets */
@media (max-width: 992px) {
  .consult-email .content {
    padding: 40px;
  }

  .consult-email .content-title {
    font-size: 28px;
    text-align: center;
    margin-top: 20px;
  }

  .consult-email p {
    text-align: center;
  }

  .consult-email .consult-actions {
    justify-content: center;
  }
}

/* Móviles */
@media (max-width: 768px) {

  .consult-email .content {
    padding: 25px;
    text-align: center;
  }

  .consult-email .img-overlap {
    margin-top: 0; /* evita que se corte en móvil */
  }

  .consult-email .content-title {
    font-size: 24px;
    margin-top: 15px;
  }

  .consult-email p {
    font-size: 15px;
  }

  .consult-email .consult-actions .secondary-action {
    flex-direction: column;
    gap: 15px;
  }

  .consult-email .consult-actions .btn.btn-cta-secondary {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .consult-email .content-title {
    font-size: 22px;
  }

  .consult-email p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid #5b2dbf36;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.pricing .pricing-card.popular {
  background: #5b2dbf;
  color: #fff;
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: #bc9dff;
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: #fff;
}

.pricing .pricing-card.popular .features-list li {
  color: #fff;
}

.pricing .pricing-card.popular .features-list li i {
  color: #d5ceff;
}

.pricing .pricing-card.popular .btn-light {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  border: 1px solid #fff;
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, #8a77fb, transparent 30%);
  color: #fff;
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #5c2dbf;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, #5b2dbf, transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: #8a77fb;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pricing .pricing-card .btn.btn-primary {
  background: #5b2dbf;
  border: none;
  color: #fff;
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, #8a77fb, transparent 15%);
}


/*--------------------------------------------------------------
# Hero Nextcloud
--------------------------------------------------------------*/

.hero-nube {
  position: relative;
  padding: 0;
  background-color: #ffffff;
}

.hero-nube .content-section {
  position: relative;
  z-index: 2;
  padding: 5%;
}



.hero-nube .content-section h2 {
  font-size: 40px;
  font-weight: 500;
  color: #5c2dbf;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-nube .content-section p {
  font-size: 1rem;
  color: #000;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


.hero-nube .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.hero-nube .cta-actions .btn.btn-cta-primary {
  background: #5c2dbf;
  font-weight: 400;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, #bc9dff, transparent 65%), 0 0 0 0 #a175ff;
}

.hero-nube .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, #8a77fb, transparent 80%), 0 0 0 3px color-mix(in srgb, #8a77fb, transparent 40%);
}


.hero-nube .image-section .main-image-wrapper {
  position: relative;
  max-width: 100%;
}

.hero-nube .image-section .main-image-wrapper .main-img {
  position: relative;
  z-index: 2;
}

/* Tablets y pantallas más grandes */
@media (max-width: 481px) {
  .hero-nube .content-section h2  {
    font-size: 32px;
  }

  .hero-nube .content-section p {
  font-size: 16px;
}

.hero-nube .cta-actions .btn.btn-cta-primary {
 
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
}


}

/*--------------------------------------------------------------
# Features Alt Section
--------------------------------------------------------------*/
.features-alt {
  padding-top: 30px;
  padding-bottom: 60px;
}

.features-alt .nav-tabs {
  border: none;
}

.features-alt .nav-tabs .nav-item {
  margin-bottom: 25px;
}

.features-alt .nav-tabs .nav-link {
  padding: 5%;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

/* 🔥 FIX BORDE NEGRO */
.features-alt .nav-tabs .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.features-alt .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features-alt .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, #a293f6, transparent 90%);
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: #5b2dbf;
  transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #000;
  transition: all 0.4s ease;
}

.features-alt .content-box .image-box img {
 max-width: 80%;
 border-radius: 18px;
 border: 1px solid #5b2dbf;

}

/* Hover */
.features-alt .nav-tabs .nav-link:hover .icon-box {
  background: #5b2dbf;
}

.features-alt .nav-tabs .nav-link:hover .icon-box i {
  color: #fff;
}

/* Active */
.features-alt .nav-tabs .nav-link.active {
  background: #b2a4ff59;
  border: none;
}

.features-alt .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, #5b2dbf, transparent 10%);
}

.features-alt .nav-tabs .nav-link.active .icon-box i {
  color: #fff;
}

.features-alt .nav-tabs .nav-link.active h4 {
  color: #5c2dbf;
}

/* 🔥 FIX AQUÍ */
.features-alt .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, #000, transparent 20%);
}

/* Text */
.features-text h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 1%;
}

.features-text p {
  font-size: 18px;
  margin-bottom: 5%;
}

/* Content */
.features-alt .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #5b2dbf;
}

.features-alt .tab-content .content-box p {
  color: color-mix(in srgb, #000, transparent 20%);
  font-size: 16px;
  line-height: 1.6;
}

.features-alt .tab-content .content-box .features-list {
  list-style: none;
}

.features-alt .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
}

.features-alt .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features-alt .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: #5c2dbf;
  margin-right: 12px;
}

.features-alt .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, #000, transparent 20%);
}

/* Animación tabs */
.features-alt .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features-alt .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .features-alt .nav-tabs {
    margin-bottom: 30px;
  }

  .features-alt .nav-tabs .nav-link {
    padding: 15px;
  }

  .features-alt .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features-alt .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features-alt .tab-content .content-box {
    padding: 30px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features-alt .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features-alt .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features-alt .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features-alt .tab-content .content-box {
    padding: 25px;
  }

  .features-alt .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features-alt .tab-content .content-box p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Consult Section - Cloud bussines
--------------------------------------------------------------*/

.consult-bussines .content {
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 4%, rgba(139, 119, 251, 0.4) 89%);  
  width: 100%;
  color: #000;
}

.consult-bussines .img-overlap {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}


.consult-bussines .content-title {
  font-weight: 700;
  font-size: 32px;
  text-align: left;
}


.consult-bussines p {
  font-size: 16px;
}

/* Lista con iconos */
.consult-bussines ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}


.consult-bussines .consult-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap; /* asegura buen acomodo en móviles */
}


.consult-bussines .consult-actions .btn.btn-cta-secondary {
  background: #5b2dbf;
  color: #fff;
  border: 2px solid color-mix(in srgb, #fff, transparent 70%);
  padding: 0.70rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.consult-bussines .consult-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, #5b2dbf, transparent 10%);
  border-color: #5b2dbf;
  color:#fff;
}

.consult-bussines .consult-actions .btn.btn-cta-secondary i {
  font-size: 20px;
}

/* Responsive ajustes para móviles */
@media (max-width: 768px) {

  .consult-bussines .content{
    padding: 5%;
  }

  .consult-bussines.content-title
   {
    margin-top: 8%;
  }

  .consult-bussines .content-title {
    font-size: 30px;
  }

  
  .consult-bussines .consult-actions .btn.btn-cta-secondary {
  margin-top: 1%;
}

}


/*--------------------------------------------------------------
# CLOUD VPS - HTML
--------------------------------------------------------------*/

.hero-vps {
  padding: 180px 0;
  background: linear-gradient(180deg,rgb(91, 45, 191), rgba(91, 45, 191, 0.784), rgba(91, 45, 191, 0.911)), url(https://s3.ethercloud.mx/ethercloud.site/public/VPS.jpg) top center; background-size: cover;
  
  
}

.hero-vps .content-section h4 {
  font-size: 35px;
  font-weight: 300;
  color: #e4d7ff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-vps .content-section h2 {
  font-size: 45px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-vps .content-section p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


.hero-vps .cta-actions .btn {
  white-space: nowrap; /* evita que el texto se corte */
}


.hero-vps .cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center; /* centra los botones */
}

.hero-vps .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.hero-vps .cta-actions .btn.btn-cta-primary {
  background: #8a77fb;
  font-weight: 300;
  color: #fff;
  padding: 0.80rem 2rem;
  font-size: 1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, #bc9dff, transparent 85%), 0 0 0 0 #a175ffaa;
}

.hero-vps .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, #8a77fb, transparent 80%), 0 0 0 3px color-mix(in srgb, #8a77fb, transparent 60%);
}

/* En móviles */
@media (max-width: 576px) {
  .hero-vps .cta-actions {
    flex-direction: column;
    align-items: center; /* opcional: centra los botones */
  }

  .hero-vps .cta-actions .btn {
    width: 100%; /* opcional: botones de ancho completo */
    max-width: 300px; /* opcional: límite para que no se vean gigantes */
  }
}

/* ================================
   INTRO SECTION
================================ */

.intro {
  position: relative;
  background: url("https://s3.ethercloud.mx/ethercloud.site/public/hero-vps.jpg") center/cover no-repeat;
  padding: 2rem;
  border-radius: 15px;
  
  overflow: hidden;
  z-index: 0;
}

/* Overlay */
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(91, 45, 191, 0.80), rgb(91, 45, 191), rgba(91, 45, 191, 0.80));
  z-index: 1;
}

/* Contenido arriba del overlay */
.intro .container,
.intro .intro-content,
.intro .features-list {
  position: relative;
  z-index: 2;
}

/* En móviles */
@media (max-width: 576px) {
  .intro {
    border-radius: 0;
  }


}


/* ================================
   TEXTOS
================================ */

.intro h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #fff;
}

.intro .intro-content p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
}

.intro-center{
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ================================
   LISTA
================================ */

.intro .features-list {
  margin-top: 0;
}

.intro .features-list .feature-item {
  margin-bottom: 5px;
}

.intro .features-list .feature-item ul {
  margin: 0;
  padding: 0;
}

.intro .features-list .feature-item li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.intro .features-list .feature-item i {
  font-size: 1.2rem;
  color: #fff;
  margin-right: 12px;
  flex-shrink: 0;
}

/* ================================
   BOTÓN
================================ */

.intro .intro-content .btn-grad {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 32px;
  background: #8a77fb;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.intro .intro-content .btn-grad:hover {
  background-color: #8b77fbbc;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .intro {
    padding: 1.5rem;
  }

  .intro h2 {
    font-size: 1.8rem;
    text-align: left;
  }

  .intro .intro-content p {
    text-align: left;
  }

  .intro .intro-content {
    margin-bottom: 40px;
  }
}



/*--------------------------------------------------------------
# Boton de Whatsapp
--------------------------------------------------------------*/
/* Contenedor flotante */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px; /* espacio entre texto e ícono */
}

/* Mensaje */
.whatsapp-msg {
  background: #ffffff;
  color: #000000;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  max-width: 215px;
  line-height: 1.3;
  word-wrap: break-word;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative; /* necesario para posicionar la X */
}

/* X redonda como en tu imagen */
.close-msg {
  position: absolute;
  top: -12px;      /* súbela/bájala */
  right: -10px;    /* muévela izquierda/derecha */
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #16773a;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.457);
  user-select: none;
  line-height: 0;
  transition: transform 0.15s ease;
}

.close-msg:hover {
  transform: scale(1.05);
}

/* Botón WhatsApp */
.whatsapp-float {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Sin efectos raros al pasar el cursor */
.whatsapp-float:hover {
  background-color: #25d366;
  color: #fff;
}
