
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #fff;
  line-height: 1.6;
  padding-top: 70px; 
  
}

.nav-container {
  display: flex;
  justify-content: center;
  padding: 15px 40px;
  background-color:#020f2986; 
  backdrop-filter: none; 
  position: fixed;
  top: 15px; 
  left: 0;
  width: 100%;
  min-height: 90px;
  z-index: 4000;
  transition: 0.4s ease-in-out; 
}


.nav-container.scrolled {
  background-color: rgba(15, 15, 15, 0.80); 
  backdrop-filter: blur(6px); 
  top: 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* Nav */
nav#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

/* Logo */
.logo img {
  width: 125px;
  height: auto;
  margin-right: 55px;
  transition: 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.04);
}

/* ========== MENÚ PRINCIPAL ========== */
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.menu li {
  position: relative;
  padding-bottom: 15px;
}

/* Enlaces */
.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 18px 26px;
  display: block;
  position: relative;
  transition: 0.25s ease-in-out;
}

/* Hover suave */
.menu a:hover {
  color: #00C853;
  transform: translateY(-2px);
}

/* Línea animada debajo */
.menu a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00C853;
  transition: width 0.35s ease, left 0.35s ease;
}

.menu a:hover::after {
  width: 100%;
  left: 0;
}

/* ========== SUBMENÚ ========== */
.submenu {
  display: none;
  position: absolute;
  top: 78px;
  left: 0;
  background: rgba(10, 10, 10, 0.95);
  padding: 10px 0;
  border-radius: 6px;
  width: 250px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  list-style: none;
  animation: fadeIn 0.25s ease-in-out;
  z-index: 5000;
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mostrar submenú */
.menu > li:hover .submenu {
  display: block;
}

/* Submenú enlaces */
.submenu li a {
  padding: 10px 22px;
  color: #fff;
  display: block;
  font-weight: 500;
  transition: 0.25s ease;
}

/* Hover en submenú */
.submenu li a:hover {
  background-color: #1F2A40;
  border-radius: 5px;
  color: #00C853;
}


/* ========== MENÚ HAMBURGUESA ========== */

.menu-toggle {
  display: none;
  cursor: pointer;
  background: rgba(255,255,255,0.1); /* vidrio semitransparente */
  backdrop-filter: blur(6px); /* efecto glass */
  border-radius: 12px;
  padding: 10px;
  position: relative;
  z-index: 6000;
  transition: background 0.3s;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.menu-toggle .bar {
  display: block;
  width: 28px;
  height: 4px;
  background: #00C853; /* color verde brillante */
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}


/* ======== MÓVIL ======== */
@media (max-width: 900px) {

  
  .menu-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 5001;
  }

 
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding-top: 120px;
    padding-left: 25px;
    transition: 0.4s ease-in-out;
    gap: 5px;
    z-index: 5000;
  }


  .menu.active {
    right: 0;
  }

  /* Estilo de las opciones */
  .menu li {
    width: 100%;
  }

  .menu a {
    font-size: 1.2rem;
    padding: 15px 10px;
    display: block;
    width: 100%;
  }

  /* Ocultar submenús por defecto */
  .submenu {
    display: none;
    position: relative;
    top: 0;
    background: #0f0f0fe1;
    box-shadow: none;
    padding-left: 15px;
    width: 100%;
  }

  /* Abrir submenú al tocar */
  li.open-mobile > .submenu {
    display: block;
  }

  /* Animación del botón hamburguesa (X) */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Estilo de botones */
.cta-button, .btn-main, .primary-button {
  background-color: rgb( 0, 32, 36);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button:hover, .btn-main:hover, .primary-button:hover {
  background-color: #bfff0054;
}

/* ===== HERO VIDEO ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  padding-top:71px;
}

/* Slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Oscurecer fondo para legibilidad */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Contenido */
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;

  /* Animación */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}


.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}


.slide-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  text-shadow: 0 5px 20px rgba(0,0,0,0.9);
}

.slide-content p {
  max-width: 650px;
  margin: 15px 0 30px;
  font-size: 1.15rem;
  color: #e5e7eb;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
}



/* Botones */
.slide-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-main {
  padding: 14px 34px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  padding: 14px 34px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== Botones slider ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Movil */
@media (max-width: 768px) {
  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 4;
}

.dot {
  width: 22px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.dot.active {
  background: rgba(6, 182, 212, 0.35);
}


.dot .progress {
  height: 100%;
  width: 0%;
  background: #06b6d4;
}

/* Animación solo en dot activo */
.dot.active .progress {
  animation: progressBar 6s linear forwards;
}


@keyframes progressBar {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.1rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-buttons {
    flex-direction: column;
  }
}


/*============ SECCIÓN DE CURSOS =================*/

.courses {
  padding: 80px 40px;
  background: linear-gradient(135deg, #0077ff, #001e33);
  text-align: center;
  color: #fff;
}


.courses h2 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}

.courses h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #00C853);
  margin: 12px auto 0;
  border-radius: 3px;
}


.section-description {
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

/* Contenedor de cursos */
.course-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* Tarjeta principal */
.course-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Nombre del curso */
.course-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Imagen */
.course-card img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.course-card img:hover {
  transform: scale(1.04);
}

/* Descripción */
.description {
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.95rem;
  color: #dcdcdc;
  display: none;
}

/* Texto visible cuando no hay descripción dinámica */
.course-card p {
  color: #e4e4e4;
}

/* Botones */
.buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Botón base */
.btn-temario,
.btn-pagar,
.btn-curso {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

/* Temario */
.btn-temario {
  background: #1d1d1d;
  color: #fff;
}

.btn-temario:hover {
  background: #333;
  transform: translateY(-3px);
}

/* Botón pagar */
.btn-pagar {
  background: #00C853;
  color: #fff;
}

.btn-pagar:hover {
  background: #00a846;
  transform: translateY(-3px);
}

/* Botón especial de plataforma */
.btn-curso {
  background: linear-gradient(135deg, #6a11cb, #00C853);
  color: white;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  margin-top: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-curso:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #00C853, #6a11cb);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .courses {
    padding: 60px 20px;
  }

  .courses h2 {
    font-size: 2.4rem;
  }

  .course-card {
    padding: 20px;
  } 
}




/*=========== SECCIÓN CONÓCENOS ====================*/

.conocenos {
  color: #fff;
  background: #1f1f33;
  padding: 60px 20px;
}

.info-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  padding: 40px;
  background: #2a2a44;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.conocenos-slider-container {
  width: 600px;
  max-width: 100%;
  height: 315px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform .4s ease;
}

.conocenos-slider-container:hover {
  transform: scale(1.02);
}

.conocenos-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.conocenos-slide.active {
  opacity: 1;
}

.conocenos-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/*==============================
    TEXTO / CONTENIDO
===============================*/

.content {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/*==============================
    ACORDEÓN PRO 2025
===============================*/

.accordion {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #22223b;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.accordion-item {
  border-bottom: 1px solid #2f2f4a;
}

.accordion-button {
  width: 100%;
  background: #1f1f3a;
  color: #fff;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background .3s ease, padding .3s ease;
}

.accordion-button:hover {
  background: #27274a;
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  transition: transform .3s ease;
}

.accordion-button.active {
  background: #30305a;
}

.accordion-button.active::after {
  content: '-';
  transform: rotate(180deg);
}

/* Contenido */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #2a2a44;
  color: #cfcfe8;
  padding: 0 20px;
  transition: max-height .35s ease, padding .3s ease;
  line-height: 1.6;
  font-size: 0.95rem;
}

.accordion-content p {
  margin: 12px 0 18px;
}

/* Imagen dinámica dentro del accordion */
#vision-image-container {
  margin-top: 15px;
  text-align: center;
}

#vision-image-container img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.35);
}

/*======  RESPONSIVE ===========*/

@media (max-width: 1100px) {
  .info-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .content {
    max-width: 600px;
  }

  .accordion {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .content h2 {
    font-size: 2.2rem;
  }

  .conocenos-slider-container {
    height: 220px;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 15px 18px;
  }
}



/*============================
             Perfil                  
=============================*/
.perfil-empresa{
  background: linear-gradient(135deg,#0f766e,#10b981);
  padding:70px 20px;
  color:white;
}

.perfil-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

/* Columna izquierda */
.perfil-info{
  flex:1;
  min-width:250px;
  text-align:center;
  background:white;
  color:#064e3b;
  padding:30px 20px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.perfil-img{
  width:160px;
  height:160px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
  border:5px solid #10b981;
}

.perfil-info h2{
  margin:10px 0 5px;
}

.perfil-titulo{
  font-size:.95rem;
  margin-bottom:15px;
  opacity:.8;
}

.perfil-datos p{
  margin:5px 0;
  font-size:.9rem;
}

/* Columna derecha */
.perfil-texto{
  flex:2;
  min-width:280px;
}

.perfil-texto h1{
  font-size:2.3rem;
  margin-bottom:15px;
}

.perfil-texto p{
  line-height:1.7;
  margin-bottom:15px;
}

/* Botón */
.perfil-btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 25px;
  background:white;
  color:#065f46;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:.3s;
}

.perfil-btn:hover{
  background:#064e3b;
  color:white;
}

.perfil-subtitulo{
  margin-top:25px;
  margin-bottom:10px;
  font-size:1.6rem;
  color:#d1fae5;
}

.perfil-lista{
  margin-top:10px;
  padding-left:20px;
  display: none;
}

.perfil-lista li{
  margin-bottom:6px;
}


/* Tablet */
@media (max-width:900px){

  .perfil-container{
    gap:35px;
  }

  .perfil-texto h1{
    font-size:2rem;
  }

  .perfil-img{
    width:140px;
    height:140px;
  }
}


/* Móvil */
@media (max-width:600px){

  .perfil-empresa{
    padding:50px 15px;
  }

  .perfil-container{
    flex-direction:column;
    text-align:center;
  }

  .perfil-info{
    width:100%;
    max-width:350px;
    margin:auto;
  }

  .perfil-texto{
    width:100%;
  }

  .perfil-texto h1{
    font-size:1.7rem;
  }

  .perfil-texto p{
    font-size:.95rem;
  }

  .perfil-img{
    width:120px;
    height:120px;
  }

  .perfil-subtitulo{
    font-size:1.3rem;
  }

  .perfil-btn{
    width:100%;
    max-width:260px;
  }
}


/* Extra pequeño */
@media (max-width:400px){

  .perfil-texto h1{
    font-size:1.5rem;
  }

  .perfil-img{
    width:100px;
    height:100px;
  }

  .perfil-datos p{
    font-size:.85rem;
  }
}







/*========= Servicios ============*/

.services-section {
  background: linear-gradient(135deg, #008cff, #004c8c);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.services-section h2 {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  position: relative;
}

.services-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00c853, #8cffda);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* --- GRID DE SERVICIOS --- */
.services-container {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- TARJETA ---- */
.service-box {
  background: #ffffff10;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  list-style: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  cursor: pointer;
}

/* HOVER PROFESIONAL */
.service-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  border-color: #00c853;
}

/*bloquea el diseño del enlace para que se vea limpio*/
.service-box a {
  display: block;
  color: inherit;
  text-decoration: none;
}


/* Imagen */
.service-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: transform 0.35s ease;
}

.service-box:hover .service-img {
  transform: scale(1.06);
}

/* Títulos */
.service-box h3 {
  font-size: 20px;
  color: #00e676;
  margin-bottom: 10px;
  font-weight: bold;
  transition: color 0.35s ease;
}

.service-box:hover h3 {
  color: #00c853;
}

/* Texto */
.service-box p {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 2.2rem;
  }

  .service-box {
    padding: 20px;
  }
}


/*======= Portafolio ===========*/

.portfolio {
  padding-top: 20px;
  background-color: #008cff;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 10px auto 0;
  border-radius: 2px;
}


.filters {
  margin: 30px 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #00C853;
  color: #FFFFFF;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #16213E;
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0; /* quita el hueco */
  padding-bottom: 20px; /* si quieres un respiro visual */
}

.portfolio-item {
  width: 100%;
  max-width: 280px;
  height: auto;
  background-color: #ffffff; /* cuadro blanco */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* sombra suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px; /* espacio interno alrededor de la imagen */
  
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px; /* bordes redondeados dentro del cuadro */
}


.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hover-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* fondo semitransparente */
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.image-wrapper:hover .hover-title {
  opacity: 1;
}

/*Animaciones de portafolio*/

.portfolio-item.e-learning img {
  transition: transform 0.4s ease;
}

.portfolio-item.e-learning:hover img {
  transform: rotate(2deg) scale(1.03);
}


.portfolio-item.sitios-web img {
  transition: transform 0.3s ease;
}

.portfolio-item.sitios-web:hover img {
  animation: pulse 0.4s ease;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}


.portfolio-item.soporte-tecnico img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.portfolio-item.soporte-tecnico:hover img {
 filter: blur(2px);

}

.portfolio-item.aplicaciones-moviles img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.portfolio-item.aplicaciones-moviles:hover img {
 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
transform: scale(1.04);
}

.portfolio-item.redes-sociales img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item.redes-sociales:hover img {
 transform: scale(1.03);
filter: brightness(1.2);

}

.portfolio-item.ecommerce img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item.ecommerce:hover img {
 transform: translateY(-5px);

}

.portfolio-item.sistemas img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item.sistemas:hover img {
 transform: rotate(-2deg) scale(1.05);

}



/*========== DESCARGAS – DISEÑO MEJORADO =========*/

.software {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0f0f1e, #1A1A2E);
  text-align: center;
}

.software h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.software h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin: 12px auto 0;
  border-radius: 3px;
}

/*====== CONTENEDOR ======*/
.software-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/*====== TARJETAS ======*/
.software-card {
  background: #ffffff10;
  backdrop-filter: blur(8px);
  border: 2px solid #ffffff15;
  border-radius: 18px;
  width: 270px;
  padding: 22px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.software-card:hover {
  transform: translateY(-8px);
  border-color: #00e676;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.software-card.active {
  border-color: #00e676;
}

/*====== ICONO Y NÚMERO ======*/
.icon-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0px 0px 4px #00e67680);
}

.number {
  font-size: 26px;
  font-weight: bold;
  color: #00e676;
}

/*====== TÍTULOS DE SOFTWARE ======*/
.software-card h3 {
  color: #00e676;
  font-size: 20px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.software-card:hover h3 {
  opacity: 1;
  transform: translateY(0px);
}

/*====== IMAGEN ======*/
.software-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  border-radius: 10px;
}

.software-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.software-card:hover .software-image img {
  transform: scale(1.08);
}

/*====== ETIQUETA DESCARGAR ======*/
.overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00e676;
  color: #0f0f1e;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.software-card:hover .overlay {
  display: block;
}

/*====== ANIMACIÓN ICONO ======*/
.icon-number.giro img {
  transition: transform 0.35s ease;
}

.icon-number.giro:hover img {
  transform: rotate(-10deg) scale(1.1);
}


/*=================== TEAM SECTION ===================*/

.team-section {
  background: linear-gradient(135deg, #008cff, #0066cc);  
  text-align: center;
  padding: 70px 20px;
  position: relative;
}

.team-section h2 {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.team-section h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  margin: 12px auto 0;
  border-radius: 2px;
}

.team-section .subtitle {
  font-size: 1.2rem;
  color: #e6e6e6;
  margin-bottom: 45px;
  letter-spacing: 1px;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 45px;
}

/*========== Card del miembro ==========*/
.team-member {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  width: 230px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* BRILLO ALREDEDOR CUANDO HOVER */
.team-member:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

/*========== Imagen ==========*/
.team-member img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.45s ease, filter 0.35s ease;
}

/* ZOOM SUAVE EN IMAGEN */
.team-member:hover img {
  transform: scale(1.12);
  filter: brightness(1.15);
}

/*========== Nombre & Rol ==========*/
.team-member h3 {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0055ff;
}

.team-member .role {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  margin-bottom: 15px;
}

/*========== ICONOS SOCIALES OPCIONALES ⬇ (si los agregas) ==========*/
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.social-icons i {
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-icons i:hover {
  color: #0055ff;
  transform: scale(1.2);
}

/*========== Animación de entrada (fade + slide) ==========*/
.team-animation {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.team-animation:nth-child(2) { animation-delay: 0.15s; }
.team-animation:nth-child(3) { animation-delay: 0.3s; }
.team-animation:nth-child(4) { animation-delay: 0.45s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*======================================*
 *         BOTONES FLOTANTES            
 *======================================*/
.botones-flotantes {
  position: fixed;
  bottom: 85px;
  right: 25px;
  z-index: 1000;
}
.wa-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Botón flotante */
.wa-toggle {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.wa-toggle img {
  width: 32px;
}

/* Caja del chat */
.wa-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: none;
  animation: fadeUp 0.3s ease;
}

/* Header */
.wa-header {
  background: #0a7cff;
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-header img {
  width: 30px;
}

/* Body */
.wa-body {
  padding: 15px;
}

.wa-user {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.wa-user img {
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.online {
  color: green;
  font-size: 13px;
}

/* Botón iniciar chat */
.wa-btn {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.wa-btn:hover {
  background: #1ebc5a;
}

/* Animación */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*===== Botón volver arriba =====*/

#btnTop {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 45px;                /* Botón pequeño */
  height: 45px;
  background: #ffffffd0;      /* Fondo blanco suave */
  border: 2px solid #00aaff;  /* Borde azul */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  font-size: 20px;
  color: #00aaff;             /* Flecha azul */
  z-index: 999;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Hover */
#btnTop:hover {
  transform: translateY(-5px) scale(1.1);
  background: #00aaff;        /* Azul al pasar */
  color: #fff;                /* Flecha blanca */
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}



/*======================================*
 *               FOOTER                 
 *======================================*/
.footer-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.45) saturate(1.2);
}

/* Contenedor principal */
.footer {
  color: white;
  padding: 80px 40px 40px;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.35);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  text-align: left;
}

/* Títulos */
.footer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-bar {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #9D00FF, #f7931e);
  border-radius: 3px;
  margin-bottom: 18px;
}

/* Columnas */
.footer-column h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

/* enlaces */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #dddddd;
  font-size: 0.95rem;
  display: block;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* Contacto */
.footer-column i {
  color: #f7931e;
  margin-right: 8px;
}

.btn-contacto {
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s, background .3s;
}

.btn-contacto:hover {
  transform: scale(1.07);
  background: #1da851;
}

/* Parte inferior */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #eaeaea;
}

















/*=================== BLOG =======================*/
/* ================================
   ESTILOS BASE + PALETA
================================ */
:root {
  --principal: #00aaff; 
  --acento: #0e1643;
  --negro: #0f0f0f;
  --gris: #7a7a7a;
  --blanco: #ffffff;
  --texto: #333;
}

/* ================================
   SECCIÓN BLOG
================================ */
.blog-section {
  padding: 100px 8%;
  background: linear-gradient(140deg, #00aaff, #0072cc);
  font-family: "Poppins", sans-serif;
}

/* ------------------------------
   TITULOS
-------------------------------- */
.blog-title {
  text-align: center;
  color: var(--blanco);
  margin-bottom: 60px;
  animation: fadeDown 0.8s ease;
}

.blog-title h5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.9;
}

.blog-title h2 {
  font-size: 2.6rem;
  margin-top: 10px;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* ------------------------------
   GRID BLOG
-------------------------------- */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 45px;
}

/* ------------------------------
   TARJETAS
-------------------------------- */
.blog-card {
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transition: all 0.45s ease;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(14, 22, 67, 0.35);
}

/* ------------------------------
   IMAGEN + ZOOM
-------------------------------- */
.blog-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.12);
}

/* ------------------------------
   FECHA
-------------------------------- */
.blog-date {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: var(--acento);
  color: var(--blanco);
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.blog-date span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.blog-card:hover .blog-date {
  background: #00c853;
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.6);
  transform: translateY(-4px);
}

/* ------------------------------
   CONTENIDO
-------------------------------- */
.blog-content {
  padding: 45px 25px 30px;
  color: var(--texto);
}

.blog-meta {
  color: var(--acento);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: #0072ff;
}

.blog-content p {
  color: var(--gris);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.4;
}

/* ------------------------------
   ENLACE LEER MÁS
-------------------------------- */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--acento);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.read-more i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(8px);
}

/* ------------------------------
   BOTÓN "VER MÁS"
-------------------------------- */
.blog-btn {
  text-align: center;
  margin-top: 70px;
}

.btn-vermas {
  background: var(--acento);
  color: var(--blanco);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(14, 22, 67, 0.5);
  letter-spacing: 1px;
}

.btn-vermas:hover {
  background: var(--blanco);
  color: var(--acento);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

/* ------------------------------
   ANIMACIONES
-------------------------------- */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}














/*==================== Contacto =========================*/

:root {
  --azul-claro: #00aaff;
  --azul-oscuro: #0e3b43;
  --blanco: #fff;
  --negro: #000;
  --gris: #666;
}

.contact-section {
  background: var(--azul-claro);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.contact-container {
  width: 90%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: var(--blanco);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Formulario */
.contact-form {
  padding: 50px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--negro);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.input-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: var(--azul-oscuro);
  box-shadow: 0 0 8px rgba(14, 59, 67, 0.2);
}

.btn-send {
  background: var(--azul-oscuro);
  color: var(--blanco);
  padding: 14px 35px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: var(--blanco);
  color: var(--azul-oscuro);
  border: 2px solid var(--azul-oscuro);
}

/* Panel derecho */
.contact-info {
  background: var(--azul-oscuro);
  color: var(--blanco);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--blanco);
  border-radius: 50%;
  color: var(--blanco);
  margin-right: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--blanco);
  color: var(--azul-oscuro);
}

/* Efecto reveal scroll */
.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 850px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/*Mapa*/

.mapa-section {
  text-align: center;
  padding: 80px 0;
  background: #00aaff;
  color: #fff;
}

.mapa-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.mapa-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}









/* ================================
   HERO E-LEARNING PERSONALIZADO 
   ================================ */

.service-hero {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  margin: 40px auto;
  max-width: 1250px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Fondo con imagen */
.service-hero-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75); /* oscurecer para que destaque el texto */
  transform: scale(1.03);
}

/* Difuminado + contenido */
.service-hero-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  /* Difuminado Glass-effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  background: rgba(255, 255, 255, 0.15);
  padding: 25px 45px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.service-elearning-title {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  margin: 0;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 900px) {
  .service-hero {
    height: 350px;
  }

  .service-elearning-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .service-hero {
    height: 300px;
    border-radius: 20px;
  }

  .service-hero-text {
    padding: 18px 25px;
  }

  .service-elearning-title {
    font-size: 1.5rem;
  }
}

/* ================================
   Sección E-Learning Mejorada
==================================*/

.elearning-section {
  position: relative;
  padding: 80px 10%;
  background: #0d1b2a; /* Menos brillante, azul oscuro elegante */
  color: #fff;
  overflow: hidden;
}

/* Fondo difuminado */
.elearning-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/Imagen/Servicios/E-learning/bg-pattern.webp');
  background-size: cover;
  background-attachment: fixed;
  filter: blur(10px) brightness(0.4);
  z-index: 0;
}

/* Circulo decorativo */
.elearning-half-circle {
  position: absolute;
  top: -180px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 1;
}

.elearning-left {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.elearning-left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.elearning-left p {
  margin-bottom: 18px;
  color: #d8dee9;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================================
   Tarjetas de servicios
==================================*/

.elearning-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.elearning-card {
  position: relative;
  padding: 25px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-image: var(--bg);
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* Oscurecer imagen */
.elearning-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
  transition: all 0.35s ease;
  z-index: 0;
}

/* Hover profesional */
.elearning-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.elearning-card:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

/* Textos */
.elearning-card h3,
.elearning-card p {
  position: relative;
  z-index: 2;
}

.elearning-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.elearning-card p {
  font-size: 0.95rem;
  color: #e5e5e5;
}

/* =========================================================
   SECCIÓN DE PLANES (Estilo oscuro elegante)
   ========================================================= */
.pricing-section {
  background: linear-gradient(135deg, #060a1a 0%, #0d1330 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.pricing-card .icon {
  font-size: 3rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,191,255,0.15); /* Azul suave translúcido */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px auto;      /* Centrado + separación */
  backdrop-filter: blur(3px);
}


.section-title {
  font-size: 2.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #69b7ff;    /* azul más suave */
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* =========================================================
   TARJETAS DE PLAN
   ========================================================= */
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  /* Imagen de fondo (cámbiala por la tuya) */
  background-image: url('/Imagen/Fondos/abstract-dark-blue.jpg');
  background-size: cover;
  background-position: center;

  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.35s ease;
}

/* Capa oscura */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.pricing-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
}

/* Contenido */
.pricing-card > * {
  position: relative;
  z-index: 2;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 10px 0;
}

.price {
  font-size: 2.3rem;
  color: #4eb7ff; /* azul más apagado */
  font-weight: bold;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 8px 0;
  padding-left: 20px;
  color: #e2e2e2;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #47a3ff;
  font-size: 0.9rem;
}

/* BOTÓN */
.pricing-card .btn {
  display: inline-block;
  margin-top: auto;
  padding: 12px 25px;
  border: 1px solid #4eb7ff;
  border-radius: 10px;
  color: #4eb7ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-card .btn:hover {
  background: #4eb7ff;
  color: #0d1330;
  box-shadow: 0px 0px 12px rgba(78, 183, 255, 0.5);
}

/* PLAN DESTACADO */
.pricing-card.popular::before {
  background: rgba(0, 140, 255, 0.45);
}

.pricing-card.popular .btn {
  border-color: white;
  color: white;
}

.pricing-card.popular .btn:hover {
  background: white;
  color: #007be6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-card {
    padding: 25px 20px;
  }
}




/* ===== CONTENEDOR GENERAL ===== */
.servicios-sitioweb {
  padding: 80px 50px;
  background: linear-gradient(135deg, #0a0f2c, #151b40);
  color: #fff;
}

.servicios-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== TEXTO ===== */
.servicios-texto h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00bfff;
}

.servicios-texto p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #d6d6d6;
}

/* ===== GRID ===== */
.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== TARJETAS ===== */
.sitio-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #101735;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Imagen de fondo */
.sitio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-image) center/cover no-repeat;
  opacity: 0.4;
  transition: 0.3s;
}

/* Oscurecimiento al hover */
.sitio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  border-radius: inherit;
}

.sitio-card:hover::before {
  opacity: 0.15;
}

.sitio-card:hover::after {
  background: rgba(0, 0, 0, 0.7);
}

/* Texto dentro de las tarjetas */
.sitio-card h3 {
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
  z-index: 2;
}

.sitio-card p {
  position: relative;
  z-index: 2;
  color: #cfcfcf;
}

/* Hover con elevación */
.sitio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.5);
}

/* ========== FAQ SECTION (Diseño Mejorado) ========== */
.faq-section {
  background: linear-gradient(135deg, #071428, #0a1d3a);
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-subtitle {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #00bfff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

/* LISTA GENERAL */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
}

/* TARJETA FAQ */
.faq-item {
  flex: 1 1 calc(50% - 20px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER DE TARJETA */
.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.25);
}

/* PREGUNTA */
.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: #00bfff;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.5px;
}

/* ICONO */
.faq-icon {
  font-size: 1.7rem;
  font-weight: bold;
  color: #00d0ff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-icon {
  color: #ffffff;
}

/* RESPUESTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(10, 20, 50, 0.6);
  padding: 0 22px;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  transition: max-height 0.4s ease, padding 0.4s ease;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 18px 22px;
}

/* ICONO ANIMADO AL ABRIR */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ffffff;
}

.faq-answer ul {
  margin: 12px 0 15px 20px;
  padding: 0;
  list-style: none;
}

.faq-answer ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #d8e6ff;
  font-size: 0.95rem;
}

/* CHECK PERSONALIZADO */
.faq-answer ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c3ff;
  font-weight: bold;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-item {
    flex: 1 1 100%;
  }

  .faq-title {
    font-size: 2rem;
  }
}







/* ======= Sección Soporte ======= */
.service-soporte-section {
  background: #0a0f2c;
  color: #fff;
  padding: 80px 20px;
}

/* Encabezado simple */
.service-soporte-header {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.service-soporte-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 15px;
}

.service-soporte-description {
  font-size: 1.1rem;
  color: #cfd6e1;
  line-height: 1.7;
}

/* Subtítulos */
.service-soporte-subtitle,
.service-soporte-caracteristicas-title {
  text-align: center;
  color: #00bfff;
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

/* Texto principal */
.service-soporte-text p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #d7dff2;
}

/* ===== Tarjetas ===== */
.service-soporte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.service-soporte-item {
  position: relative;
  padding: 25px;
  border-radius: 15px;
  background: #111a3b;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  min-height: 200px;

  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Capa oscura */
  box-shadow: 0px 10px 25px rgba(0,0,0,0.35);
}

.service-soporte-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  transition: 0.3s ease-in-out;
}

.service-soporte-item:hover::before {
  background: rgba(0,0,0,0.25);
}

/* Contenido */
.service-soporte-item h3,
.service-soporte-item p {
  position: relative;
  z-index: 2;
}

.service-soporte-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #00bfff;
}

.service-soporte-item p {
  color: #d7dff2;
  font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-App-section {
  background: linear-gradient(135deg, #070a1a, #0b596d);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-App-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 14px;
  max-width: 500px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.4);
}

.contact-App-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 25px;
  color: #00bfff;
  font-weight: 600;
  letter-spacing: 1px;
}

/* WhatsApp botón */
.contact-App-whatsapp {
  display: block;
  text-align: center;
  background: #00b050;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.3s;
}

.contact-App-whatsapp:hover {
  background: #009046;
  transform: translateY(-3px);
}

.contact-App-whatsapp .icon {
  margin-right: 8px;
}

/* Campos */
.contact-App-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-App-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #0d1230;
  border: 1px solid #1d2a55;
  border-radius: 10px;
  padding: 10px 12px;
}

.contact-App-field:hover {
  border-color: #00bfff;
}

.contact-App-field .icon {
  color: #00bfff;
  font-size: 1.3rem;
  margin-right: 10px;
}

.contact-App-field input,
.contact-App-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
}

.textarea-field {
  align-items: flex-start;
  padding-top: 14px;
}

/* Botón */
.contact-App-btn {
  margin-top: 10px;
  background: #00bfff;
  border: none;
  padding: 14px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-App-btn .icon {
  margin-right: 8px;
  font-size: 1.3rem;
}

.contact-App-btn:hover {
  background: #009cd1;
  transform: translateY(-3px);
}











/* ===================== */
/*  SECCIÓN APLICACIONES */
/* ===================== */

.services-App-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0f2c, #151b40);
  color: #fff;
  text-align: center;
  position: relative;
}

/* Título */
.services-App-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Descripción */
.services-App-description {
  max-width: 850px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  color: #cfd6e1;
  line-height: 1.7;
}

/* ===================== */
/*       GRID ITEMS      */
/* ===================== */

.services-App-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Tarjeta */
.service-App-item {
  position: relative;
  padding: 0;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: var(--bg);

  display: flex;
  align-items: flex-end;
  justify-content: flex-start;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Oscurecer con overlay */
.service-App-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 30, 0.55);
  transition: background 0.4s ease;
}

/* Hover: oscurece más */
.service-App-item:hover::before {
  background: rgba(0, 0, 0, 0.75);
}

/* Hover: levanta la tarjeta */
.service-App-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.55);
}

/* Contenido */
.service-App-content {
  position: relative;
  padding: 20px;
  text-align: left;
  z-index: 3;
}

.service-App-content .number {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 5px;
  display: block;
}

.service-App-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.service-App-content p {
  font-size: 0.95rem;
  color: #cfd6e1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-App-title {
    font-size: 2.2rem;
  }

  .service-App-item {
    height: 220px;
  }
}


/* ===== CONTACTO APPS ===== */

.contact-App-section {
  background: linear-gradient(135deg, #0a0f2d, #0d1a4a);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-App-container {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.contact-App-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.contact-App-title i {
  color: #00c3ff;
  margin-right: 10px;
}

/* === WHATSAPP BUTTON === */
.contact-App-whatsapp {
  display: inline-block;
  background: #0dbb4c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  transition: 0.3s;
}

.contact-App-whatsapp i {
  margin-right: 8px;
}

.contact-App-whatsapp:hover {
  background: #0a9c3b;
  transform: translateY(-3px);
}

/* === FORM === */

.contact-App-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-App-field {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-App-field i {
  color: #00c3ff;
  font-size: 1.2rem;
  margin-right: 10px;
}

.contact-App-field input,
.contact-App-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.contact-App-field textarea {
  resize: none;
}

.contact-App-btn {
  background: #00c3ff;
  color: #0a0f2d;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-App-btn i {
  margin-right: 8px;
}

.contact-App-btn:hover {
  background: #00e1ff;
  transform: translateY(-3px);
}















/* ===== Redes Sociales ===== */
.service-redes {
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  background: #0a0f24;
}

/* HERO */
.service-redes-hero {
  max-width: 900px;
  margin: 0 auto;
}

.service-redes-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* ICONOS GRANDES */
.service-redes-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.15);
  background: rgba(255,255,255,0.15);
}

/* Colores específicos */
.tiktok  { color: #00f2ea; }
.facebook{ color: #1877f2; }
.instagram{
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf);
  color: white;
}

/* TEXTO */
.service-redes-description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #c6cee8;
  line-height: 1.6;
}

/* SUBTÍTULO */
.service-redes-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin: 50px 0 30px;
}

/* GRID */
.service-redes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* TARJETAS */
.service-redes-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  background: #0d132f;
  border: 1px solid rgba(255,255,255,0.1);
}

.card-bg {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover no-repeat;
  filter: brightness(0.4);
  transition: 0.3s;
}

.service-redes-card:hover .card-bg {
  filter: brightness(0.25);
  transform: scale(1.05);
}

/* CONTENIDO */
.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.card-content p {
  font-size: 0.95rem;
  color: #d6d9e8;
}







/* ====== SECCIÓN GENERAL ====== */
.service-Ecommerce-section {
    background: #0a0f1c;
    padding: 0;
    margin: 0;
    color: #dce7f7;
    font-family: "Poppins", sans-serif;
}

/* ====== BANNER ====== */
.service-Ecommerce-banner {
    position: relative;
    background: url('/Imagenes/Servicios/Ecommerce/ServicioBanner.jpeg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-Ecommerce-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(10, 15, 28, 0.7),
        rgba(4, 20, 45, 0.9)
    );
}

.banner-content {
    position: relative;
    max-width: 800px;
    color: #e5f1ff;
}

.banner-content h2 {
    font-size: 48px;
    color: #4ecdfd;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(78, 205, 253, 0.4);
}

.banner-content p {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ====== GRID DE SERVICIOS ====== */
.service-Ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 50px 5%;
}

/* ====== ITEMS ====== */
.service-Ecommerce-item {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.service-Ecommerce-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(78, 205, 253, 0.3);
}

/* Overlay oscuro con iluminación azul */
.service-Ecommerce-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(4, 40, 60, 0.85)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #dce7f7;
    transition: background 0.3s ease;
}

.service-Ecommerce-item:hover .overlay {
    background: linear-gradient(
        rgba(0, 50, 80, 0.3),
        rgba(0, 100, 160, 0.8)
    );
}

.overlay i {
    font-size: 30px;
    color: #4ecdfd;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(78, 205, 253, 0.5));
}

.overlay h3 {
    font-size: 20px;
    color: #bfe9ff;
}

.overlay p {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 5px;
}











/* ======= SECCIÓN PRINCIPAL ======= */
.service-Sistemas-section {
  padding: 60px 5%;
  background: #061631;
}

/* ======= TEXTO ======= */
.service-Sistemas-header {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.service-Sistemas-left {
  max-width: 900px;
}

.service-Sistemas-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2c67ce;
  font-weight: bold;
}

.service-Sistemas-text {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ======= TARJETAS ======= */
.service-Sistemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-Sistemas-item {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  cursor: pointer;
  transition: transform .4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Overlay azul oscuro */
.service-Sistemas-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 95, 0.70);
  transition: .4s ease;
}

/* Texto dentro de las tarjetas */
.service-Sistemas-item h3 {
  position: relative;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.service-Sistemas-item p {
  position: relative;
  font-size: 1rem;
  opacity: 0.9;
}

/* ======= HOVER ======= */
.service-Sistemas-item:hover {
  transform: translateY(-8px) scale(1.03);
}

.service-Sistemas-item:hover .service-Sistemas-overlay {
  background: rgba(10, 40, 95, 0.45);
}





/*=============== CONTACTO SISTEMAS ===============*/

.contact-Sistemas-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  background: #060f22;
}

.contact-Sistemas-container {
  max-width: 650px;
  width: 100%;
  background: #0a102b;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-left: 5px solid #0044cc;
  animation: fadeUp 0.6s ease-in-out;
}

.contact-Sistemas-title {
  text-align: center;
  font-size: 2rem;
  color: #003399;
  font-weight: 700;
  margin-bottom: 25px;
}

/*==== WhatsApp ====*/
.contact-Sistemas-whatsapp {
  display: block;
  text-align: center;
  background: #25d366;
  padding: 12px 20px;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 12px;
  margin-bottom: 25px;
  font-weight: bold;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-Sistemas-whatsapp i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.contact-Sistemas-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

/*==== Formulario ====*/
.contact-Sistemas-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-Sistemas-field {
  position: relative;
  background: #000f31;
  border-radius: 12px;
  padding: 12px 15px 12px 45px;
  display: flex;
  align-items: center;
  border: 1px solid #d0dbff;
}

.contact-Sistemas-field i {
  position: absolute;
  left: 15px;
  font-size: 1.2rem;
  color: #003399;
}

.contact-Sistemas-field input,
.contact-Sistemas-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: #003366;
}

.contact-Sistemas-field.textarea {
  padding-top: 20px;
}

/*==== Botón ====*/
.contact-Sistemas-btn {
  width: 100%;
  padding: 15px;
  background: #003cc8;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.contact-Sistemas-btn i {
  margin-right: 8px;
}

.contact-Sistemas-btn:hover {
  background: #002c96;
  transform: translateY(-3px);
}

/*==== Animación ====*/
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
