.elementor-3738 .elementor-element.elementor-element-241d2f2{--display:flex;}.elementor-3738 .elementor-element.elementor-element-47b7b26{width:100%;max-width:100%;}.elementor-3738 .elementor-element.elementor-element-47b7b26 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-3738 .elementor-element.elementor-element-f586444{--display:flex;}.elementor-3738 .elementor-element.elementor-element-d2b0e83{width:100%;max-width:100%;}.elementor-3738 .elementor-element.elementor-element-d2b0e83 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-3738 .elementor-element.elementor-element-36257d4{--display:flex;}.elementor-3738 .elementor-element.elementor-element-331544d{width:100%;max-width:100%;}.elementor-3738 .elementor-element.elementor-element-331544d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-3738 .elementor-element.elementor-element-7e18e5f{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-3738 .elementor-element.elementor-element-c9348ea{width:100%;max-width:100%;}.elementor-3738 .elementor-element.elementor-element-3f89831{--display:flex;}.elementor-3738 .elementor-element.elementor-element-3c862e8{width:100%;max-width:100%;}.elementor-3738 .elementor-element.elementor-element-3c862e8 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-3738 .elementor-element.elementor-element-f586444{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-47b7b26 */.iam-hero {
  --red: #ed2839;
  --bg: #05050a;
  --text: #ffffff;
  --muted: #8a8a9a;

  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Open Sans", sans-serif;
}


.iam-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237,40,57,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,40,57,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 12s linear infinite;
  z-index: 0;
}

/*FORMA DETRÁS DE LA PERSONA*/
.iam-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237,40,57,0.15), transparent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}


.iam-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* TEXTO */
.iam-title {
  font-family: "Merriweather", serif;
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.iam-title span {
  color: var(--red);
}

.iam-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}

/* IMAGEN */
.iam-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 0.8s ease 0.3s forwards;
}

/* IMAGEN DE FONDO (ATRÁS) */
.iam-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  filter: brightness(0.6) contrast(1.1);
  z-index: 1;
}

/* PERSONA (DELANTE) */
.iam-person {
  position: relative;
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  z-index: 3;

  /* efecto flotante */
  animation: float 2s ease-in-out infinitE;
}

/* glow detrás de la persona */
.iam-image::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(237,40,57,0.35), transparent 70%);
  z-index: 2;
  filter: blur(40px);
}

/* animación flotante */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* glow */
.iam-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(237,40,57,0.25) 0%, transparent 70%);
  z-index: -1;
}

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

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

/* movimiento fondo */
@keyframes moveGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 50px 50px, 50px 50px;
  }
}


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

  .iam-sub {
    margin: 0 auto;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d2b0e83 */.iam-architecture {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}

.iam-architecture::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 700px;
  height: 700px;

  background-image: url("https://cyberfusion.pe/wp-content/uploads/2025/09/Imagen-3-2da-version-Landing-scaled.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1; 

  z-index: 0;
}

.iam-architecture::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 20% 30%, rgba(0,0,0,0.04), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(237,40,57,0.06), transparent 60%);

  z-index: 0;
}


.iam-architecture-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.iam-architecture-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.iam-architecture-title {
  font-size: 2.5rem;
  font-family: "Merriweather", serif;
  margin-bottom: 80px;
  color: #0b132b;
}

.iam-architecture-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}


.iam-node {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: white;
  padding: 30px 25px;
  border-radius: 5px;
  width: 220px;
  position: relative;
  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(40px);
}

.iam-node span {
  font-size: 0.8rem;
  color: #ed2839;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.iam-node h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.iam-node p {
  font-size: 0.9rem;
  color: #c6c6c6;
}


.iam-node:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3),
              0 10px 25px rgba(237,40,57,0.25);
}


.iam-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #ed2839, transparent);
}

.iam-architecture.active .iam-node {
  animation: fadeUp 0.6s ease forwards;
}

.iam-architecture.active .iam-node:nth-child(1) { animation-delay: 0.2s; }
.iam-architecture.active .iam-node:nth-child(3) { animation-delay: 0.4s; }
.iam-architecture.active .iam-node:nth-child(5) { animation-delay: 0.6s; }
.iam-architecture.active .iam-node:nth-child(7) { animation-delay: 0.8s; }

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


@media (max-width: 900px) {
  .iam-architecture-flow {
    flex-direction: column;
  }

  .iam-connector {
    width: 2px;
    height: 40px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-331544d */.iam-visibility {
  position: relative;
  padding: 120px 0; 
  background: #05050a;
  color: white;
  overflow: hidden;
  width: 100%;
}


.iam-visibility::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(237,40,57,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,40,57,0.05) 1px, transparent 1px);

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

.iam-visibility::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  right: -150px;

  background: radial-gradient(circle, rgba(237,40,57,0.25), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}


.iam-visibility-container {
  position: relative;
  z-index: 2;

  width: 100%;
  padding: 0 80px; 

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


.iam-visibility-image {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
}

.iam-visibility-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}


.iam-visibility-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(237,40,57,0.2), transparent 70%);
  z-index: -1;
}


.iam-visibility-content {
  max-width: 600px;
  opacity: 0;
  transform: translateX(60px);
}

.iam-visibility-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.iam-visibility-title {
  font-size: 2.8rem;
  font-family: "Merriweather", serif;
  margin-bottom: 20px;
}

.iam-visibility-text {
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 30px;
}


.iam-visibility-points div {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #e5e5e5;
}

.iam-visibility-points div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #ed2839;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(237,40,57,0.6);
}


.iam-visibility.active .iam-visibility-image {
  animation: fadeLeft 0.8s ease forwards;
}

.iam-visibility.active .iam-visibility-content {
  animation: fadeRight 0.8s ease 0.2s forwards;
}

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

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


@media (max-width: 1200px) {
  .iam-visibility-container {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .iam-visibility-container {
    grid-template-columns: 1fr;
    padding: 0 25px;
    text-align: center;
  }

  .iam-visibility-content {
    max-width: 100%;
  }

  .iam-visibility-image img {
    height: 350px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c9348ea */.iam-risks {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}


.iam-risks::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(0,0,0,0.05), transparent 70%);
  z-index: 0;
}

.iam-risks::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(237,40,57,0.06), transparent 70%);
  z-index: 0;
}

.iam-risks-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.iam-risks-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.iam-risks-title {
  font-size: 2.5rem;
  font-family: "Merriweather", serif;
  margin-bottom: 80px;
  color: #0b132b;
}


.iam-risks-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}


.iam-risk-item {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: white;
  padding: 35px;
  border-radius: 12px;
  text-align: left;
  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(40px);
}


.r1 { transform: translateY(0); }
.r2 { transform: translateY(60px); }
.r3 { transform: translateY(-40px); }
.r4 { transform: translateY(30px); }


.iam-risk-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25),
              0 10px 25px rgba(237,40,57,0.25);
}


.iam-risk-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.iam-risk-item p {
  color: #c6c6c6;
  font-size: 0.95rem;
}

.iam-risks.active .iam-risk-item {
  animation: fadeUp 0.6s ease forwards;
}

.iam-risks.active .r1 { animation-delay: 0.2s; }
.iam-risks.active .r2 { animation-delay: 0.4s; }
.iam-risks.active .r3 { animation-delay: 0.6s; }
.iam-risks.active .r4 { animation-delay: 0.8s; }

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


@media (max-width: 768px) {
  .iam-risks-layout {
    grid-template-columns: 1fr;
  }

  .r2, .r3, .r4 {
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3c862e8 */.grc-compare {
  position: relative;
  width: 100%;
  padding: 120px 40px;
  background: #ffffff;
  overflow: hidden;
}

/* fondo sutil */
.grc-compare-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://cyberfusion.pe/wp-content/uploads/2025/09/Imagen-3-2da-version-Landing-scaled.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 900px;
  opacity: 0.04;
  z-index: 0;
}

.grc-compare::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.05), transparent 70%);
  z-index: 0;
}

/* contenedor */
.grc-compare-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.grc-compare-label {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.grc-compare-title {
  font-size: 2.6rem;
  font-family: "Merriweather", serif;
  margin-bottom: 80px;
  color: #0b132b;
}

/* comparación */
.grc-compare-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* lados */
.compare-side {
  padding: 60px 40px;
  text-align: left;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* vulnerable */
.compare-side.vulnerable {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: white;
}

/* protegida */
.compare-side.secure {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  color: #0b132b;
}

/* títulos */
.compare-side h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
}

/* listas */
.compare-side ul {
  list-style: none;
  padding: 0;
}

.compare-side li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

/* bullets */
.compare-side.vulnerable li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ed2839;
}

.compare-side.secure li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* animación */
.grc-compare.active .compare-side {
  opacity: 1;
  transform: translateY(0);
}

.grc-compare.active .vulnerable {
  transition-delay: 0.2s;
}

.grc-compare.active .secure {
  transition-delay: 0.4s;
}

/* hover pro */
.compare-side:hover {
  transform: scale(1.02);
  z-index: 3;
}

/* responsive */
@media (max-width: 900px) {
  .grc-compare-wrapper {
    grid-template-columns: 1fr;
  }

  .compare-side {
    text-align: center;
  }
}/* End custom CSS */