.elementor-3846 .elementor-element.elementor-element-4e4e15d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3846 .elementor-element.elementor-element-001d369{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3846 .elementor-element.elementor-element-7de26cc{--display:flex;}.elementor-3846 .elementor-element.elementor-element-38ff0cd{--spacer-size:90px;}.elementor-3846 .elementor-element.elementor-element-a4c81c7{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3846 .elementor-element.elementor-element-ae70b87{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-ddb2a87 */.net-hero {
  position: relative;
  min-height: 100vh;
  background: #05050a;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.net-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}


.net-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237,40,57,0.2), transparent 70%);
  filter: blur(80px);
}


.net-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}




.net-title {
  font-size: clamp(2.5rem, 4.3vw, 3.8rem);
  font-family: "Merriweather", serif;
  line-height: 1.1;
  margin-bottom: 20px;
}

.net-title span {
  color: #ed2839;
}

.net-desc {
  color: #9ca3af;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 500px;
}

/* ===== DERECHA ===== */
.net-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.net-right img {
  width: 110%;
  height: 90vh;
  object-fit: contain;

  max-width: none;

  transform: translateX(40px); 
  filter: drop-shadow(0 35px 70px rgba(0,0,0,0.7));
}

/* efecto de particulas rojas flotando */
.net-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.net-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ed2839;
  border-radius: 50%;
  opacity: 0;
  animation: netFloat 6s infinite ease-in-out;
}

@keyframes netFloat {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(-60px); opacity: 0; }
}


@media (max-width: 900px) {
  .net-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .net-desc {
    margin: 0 auto;
  }

  .net-right {
    justify-content: center;
  }

  .net-right img {
    width: 90%;
    height: auto;
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-16af398 */.net-intro {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* capa 1 seccion visibilidad */
.net-intro::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(237,40,57,0.06), transparent 70%);
  z-index: 0;
}

/* capa 2 */
.net-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  
}

/* contenedor */
.net-intro-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGEN */
.net-intro-left {
  display: flex;
  align-items: center; 
  justify-content: center;

  opacity: 0;
  transform: translateX(-40px);
}

.net-intro-left img {
  width: auto;
  height: 100%;
  max-height: 420px; 

  object-fit: contain;
  display: block;

  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.2));
}

/* TEXTO */
.net-intro-right {
  opacity: 0;
  transform: translateX(40px);
}

.net-intro-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.net-intro-title {
  font-size: 2.4rem;
  font-family: "Merriweather", serif;
  color: #0b132b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.net-intro-title span {
  color: #ed2839;
}

.net-intro-desc {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* LISTA */
.net-intro-list {
  list-style: none;
  padding: 0;
}

.net-intro-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #0b132b;
  padding-left: 22px;
  position: relative;
}

/* check limpio */
.net-intro-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ed2839;
}

.net-intro.active .net-intro-left {
  animation: fadeLeft 0.8s ease forwards;
}

.net-intro.active .net-intro-right {
  animation: fadeRight 0.8s ease forwards;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media (max-width: 900px) {
  .net-intro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .net-intro-left img {
    margin-bottom: 20px;
  }

  .net-intro-right {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-08aa1e0 */.net-hidden {
  position: relative;
  padding: 140px 20px;
  background: #05050a;
  color: #fff;
  overflow: hidden;
}

.net-hidden-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(237,40,57,0.15), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05), transparent 60%);
  z-index: 0;
}

/* contenedor */
.net-hidden-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* textos */
.net-hidden-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.net-hidden-title {
  font-family: "Merriweather", serif;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  margin-bottom: 20px;
}

.net-hidden-title span {
  color: #ed2839;
}

.net-hidden-desc {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-size:1.1rem;
}

/* GRID */
.net-hidden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ITEMS */
.net-hidden-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(6px);

  opacity: 0;
  transform: translateY(30px);
  transition: 0.4s;
  position: relative; /* 🔥 necesario */
  overflow: hidden;
}
.net-hidden-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0%;
  background: #7a0f18; /* 🔥 rojo oscuro */
  transition: height 0.3s ease;
}
.net-hidden-item:hover::before {
  height: 100%;
}
.net-hidden-item:hover {
  border-color: rgba(237,40,57,0.4);
  transform: translateY(-8px);
}

/* puntos animados */
.net-hidden-item .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ed2839;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 rgba(237,40,57,0.6); }
  70% { box-shadow: 0 0 10px rgba(237,40,57,0.9); }
  100% { box-shadow: 0 0 0 rgba(237,40,57,0.6); }
}

/* textos */
.net-hidden-item h3 {
  font-family: "Merriweather", serif;
  margin-bottom: 10px;
    font-size: 1.2rem;

}

.net-hidden-item p {
  font-size: 1rem;
  color: #9ca3af;
}

/* NODOS FONDO */
.net-hidden-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.net-node {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ed2839;
  border-radius: 50%;
  opacity: 0;
  animation: floatNode 6s infinite ease-in-out;
}

@keyframes floatNode {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(-80px); opacity: 0; }
}

/* animación entrada */
.net-hidden.active .net-hidden-item {
  animation: fadeUp 0.6s ease forwards;
}

.net-hidden.active .net-hidden-item:nth-child(1) { animation-delay: 0.2s; }
.net-hidden.active .net-hidden-item:nth-child(2) { animation-delay: 0.4s; }
.net-hidden.active .net-hidden-item:nth-child(3) { animation-delay: 0.6s; }
.net-hidden.active .net-hidden-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 768px) {
  .net-hidden-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7299b0c *//* ===== SECTION ===== */
.net-process {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* fondo sutil (no plano) */
.net-process::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  z-index: 0;
}

.net-process::after {
  content: "";
  position: absolute;
  inset: 0;

  background-size: 60px 60px;
  z-index: 0;
}

/* contenedor */
.net-process-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* textos */
.net-process-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.net-process-title {
  font-size: 2.9rem;
  font-family: "Merriweather", serif;
  color: #0b132b;
  margin-bottom: 80px;
}

/* timeline */
.net-process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* línea central */
.net-process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ed2839, rgba(0,0,0,0.1));
  transform: translateX(-50%);
}

/* step */
.net-step {
  position: relative;
  width: 50%;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(30px);
}

/* alternar lados */
.net-step:nth-child(odd) {
  align-self: flex-start;
  text-align: right;
}

.net-step:nth-child(even) {
  align-self: flex-end;
  text-align: left;
}

/* punto */
.net-dot {
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 14px;
  background: #ed2839;
  border-radius: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 0 10px rgba(237,40,57,0.5);
}

.net-step:nth-child(even) .net-dot {
  left: 0;
}

/* contenido */
.net-content h3 {
  font-family: "Merriweather", serif;
  margin-bottom: 8px;
  color: #0b132b;
    font-size: 1.45rem;

}

.net-content p {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
}

/* animación */
.net-process.active .net-step {
  animation: fadeUp 0.6s ease forwards;
}

.net-process.active .net-step:nth-child(1) { animation-delay: 0.2s; }
.net-process.active .net-step:nth-child(2) { animation-delay: 0.4s; }
.net-process.active .net-step:nth-child(3) { animation-delay: 0.6s; }
.net-process.active .net-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 768px) {
  .net-process-timeline::before {
    left: 10px;
  }

  .net-step {
    width: 100%;
    padding-left: 30px;
    text-align: left !important;
  }

  .net-dot {
    left: 10px !important;
  }
}/* End custom CSS */