.elementor-825 .elementor-element.elementor-element-7205d61{--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-825 .elementor-element.elementor-element-f551f62{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-825 .elementor-element.elementor-element-31e2ed4{--display:flex;--min-height:227px;--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-825 .elementor-element.elementor-element-d8ff806{--spacer-size:50px;}.elementor-825 .elementor-element.elementor-element-0cd1c49 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-825 .elementor-element.elementor-element-f327e86{--spacer-size:90px;}.elementor-825 .elementor-element.elementor-element-64a4b0c{--display:flex;}.elementor-825 .elementor-element.elementor-element-fa8e00f > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-825 .elementor-element.elementor-element-3a8f4c2{--display:flex;}.elementor-825 .elementor-element.elementor-element-4098ae1{--spacer-size:90px;}.elementor-825 .elementor-element.elementor-element-7481584{--spacer-size:90px;}.elementor-825 .elementor-element.elementor-element-6a97a97{--display:flex;}.elementor-825 .elementor-element.elementor-element-b68b5fc{--display:flex;}.elementor-825 .elementor-element.elementor-element-bccf94f{--spacer-size:90px;}.elementor-825 .elementor-element.elementor-element-a47c5a0{--spacer-size:90px;}.elementor-825 .elementor-element.elementor-element-4c41500{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-825 .elementor-element.elementor-element-6fe07de{--spacer-size:90px;}.elementor-825 .elementor-element.elementor-element-8cb900e{--display:flex;}@media(min-width:768px){.elementor-825 .elementor-element.elementor-element-f551f62{--content-width:1600px;}.elementor-825 .elementor-element.elementor-element-64a4b0c{--content-width:1600px;}.elementor-825 .elementor-element.elementor-element-4c41500{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-2dbf378 */section#hero {
  margin-top: -1px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#sc-header-sticky {
  display: none !important;
}

/* Removed problematic .elementor-825 .elementor-element.elementor-element-2dbf378 that might cause white line */
body {
  font-family: "Merriweather", serif;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Increased z-index to ensure header stays above search overlay */
  z-index: 3000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  /* Made header completely transparent initially to integrate seamlessly with video */
  background: linear-gradient(rgba(0, 0, 0, 0.8) /* oscuro arriba */, rgba(0, 0, 0, 0) /* transparente abajo */);
}

.header.scrolled {
  /* Solid black background when scrolled */
  background: #000000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(237, 40, 57, 0.3);
}

/* Header Content Styles */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  /* Removed margin-left to center the header content properly */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  /* Added flex-shrink to prevent logo from shrinking */
  flex-shrink: 0;
}

/* Increased logo size further for better visibility */
.logo-image {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
}

.logo-text {
  font-weight: 700;
  font-size: 1.6rem;
  color: white;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  /* Adjusted margin to position menu closer to logo as shown in image */
  gap: 1.7rem;
  align-items: center;
  margin-left: 3rem;
  /* Added flex-grow to allow menu to expand and center properly */
  flex-grow: 1;
  justify-content: flex-start;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0.25rem;
  display: flex;
  border-radius: 5px;
  position: relative;
}

.flecha {
  font-size: 0.6vw;
  margin-left: 5px;
}
/* Removed .flecha class that was creating unwanted arrow below Portafolio */

/* Removed CSS-based dropdown arrow to eliminate unwanted element below Portafolio */

/* Modified to exclude Portafolio from underline hover effect */
.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ed2839;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.dropdown-toggle::after {
  display: none;
}
/* Only show underline on hover for non-dropdown navigation items */
.nav-link:not(.dropdown-toggle):hover::after {
  width: 80%;
}

.nav-link:hover {
  color: #c6c6c6;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem 0;
  min-width: 320px;
  max-height: none;
  overflow-y: visible;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(237, 40, 57, 0.2);
  border-left-color: #ed2839;
  color: #ed2839;
}

.search-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ed2839;
  color: #ed2839;
  transform: translateY(-2px);
}

.search-btn svg {
  transition: all 0.3s ease;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Fixed hero section to eliminate white line */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Removed margin and padding to eliminate any gaps */
  margin: 0;
  padding: 0;
  /* Extended hero to start from very top to integrate with transparent header */
  padding-top: 0;
  background: linear-gradient(135deg, #ed2839 0%, #c41e3a 50%, #8b0000 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(237, 40, 57, 0.85), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
  z-index: 3;
  position: relative;
  padding-left: 3vw;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-family: "Merriweather", serif;
  font-weight: 600;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(0.5rem, 1.1rem, 2rem);
  margin-bottom: 2rem;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 200;
  line-height: 1.6;
  color: white;
  padding: 1rem 3.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.cta-button {
  background: white;
  color: black !important;
  padding: 1rem 2rem;
  border: none;
  font-size: 1.1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 900 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(237, 40, 57, 0.4);
}

/* Hover principal */
.cta-button:hover {
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(237, 40, 57, 0.6);
  background: linear-gradient(135deg, #ff4757, #ed2839);
}

/* Contenedor botones (2)*/
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Boton secundario*/
.cta-button.secondary-cta {
  background: transparent;
  color: white !important;
  border: 2px solid white;
  box-shadow: none;
}

/* Hover del secundario */
.cta-button.secondary-cta:hover {
  background: white;
  color: black !important;
  transform: translateY(-3px);
  
  
}

/* Search Overlay */
.search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  /* Reduced z-index to be below header */
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Redesigned search overlay to appear as full-width block below header */
.search-overlay {
  position: fixed;
  top: 90px; /* Position directly below header */
  left: 0;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 45vh;
  background: #ffffff;
  /* Reduced z-index to be below header */
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Search container now takes full width without centering */
.search-container {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 2rem 3rem;
  position: relative;
  overflow-y: auto;
  max-width: 1400px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  max-width: 600px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: #f8f9fa;
  border: 1px solid rgba(198, 198, 198, 0.3);
  border-radius: 8px;
  color: #000000;
  outline: none;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.search-input:focus {
  border-color: #ed2839;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(237, 40, 57, 0.1);
}

.search-input::placeholder {
  color: #c6c6c6;
  font-weight: 400;
}

.quick-links h3 {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.search-tag {
  display: inline-block;
  background: rgba(237, 40, 57, 0.08);
  color: #000000;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid rgba(198, 198, 198, 0.2);
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.search-tag:hover {
  background: #ed2839;
  color: white;
  border-color: #ed2839;
  transform: translateY(-1px);
}

/* Updated close button positioning to match Apple style */
.close-search {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #c6c6c6;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 300;
}

.close-search:hover {
  color: #ed2839;
  background: rgba(237, 40, 57, 0.1);
}

/* Added proper styling for search results with spacing and hover effects */
.search-results {
  margin-top: 1.5rem;
}

.search-result {
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  background: #f8f9fa;
  border: 1px solid rgba(198, 198, 198, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  color: #333333;
}

.search-result:hover {
  background: #ed2839;
  color: white;
  border-color: #ed2839;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(237, 40, 57, 0.2);
}

/* Added proper spacing and styling for no results section */
.no-results {
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
}

.no-results-text {
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.suggestions {
  margin-top: 1.5rem;
}

.suggestions-title {
  color: #333333;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.suggestion-item {
  display: inline-block;
  background: rgba(237, 40, 57, 0.08);
  color: #333333;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid rgba(198, 198, 198, 0.2);
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.suggestion-item:hover {
  background: #ed2839;
  color: white;
  border-color: #ed2839;
  transform: translateY(-1px);
}

/* Enhanced responsive design for all screen sizes */
@media (max-width: 1200px) {
  /* Added responsive navigation spacing for large tablets/small laptops */
  .nav-menu {
    /* Reduced margin for better spacing on smaller screens */
    margin-left: 2rem;
  }

  .search-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
    /* Reset margin for mobile menu */
    margin-left: 0;
    
    padding: 2rem;
  }
  
  

  .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .mobile-toggle {
    display: flex;
  }
/*
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(237, 40, 57, 0.1);
    margin-top: 1rem;
    max-height: none;
  }
*/
.dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(237, 40, 57, 0.1);
    margin-top: 0.5rem;
  }

  .dropdown.active {
    display: block;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 12px 0;
    justify-content: center;
    
  }

  .hero-content {
    padding: 0 1rem;
  }

  /* Mobile search overlay positioning */
  .search-overlay {
    top: 80px;
    max-height: 50vh;
  }

  .search-container {
    padding: 1.5rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .close-search {
    top: 1rem;
    right: 1rem;
    font-size: 1.6rem;
  }

  .popular-searches {
    gap: 0.5rem;
  }

  .search-tag {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .logo-image {
    height: 45px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .search-btn {
    padding: 0.5rem;
  }

  .search-btn svg {
    width: 18px;
    height: 18px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  /* Ensuring video is visible on very small screens too */
  .hero-video {
    z-index: 1 !important;
    opacity: 0.5 !important;
    display: block !important;
  }

  .hero-overlay {
    z-index: 2 !important;
  }

  .hero-content {
    z-index: 3 !important;
  }

  /* Small mobile search overlay positioning */
  .search-overlay {
    top: 70px;
    max-height: 55vh;
  }

  .search-container {
    padding: 1rem;
  }

  .search-input {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .close-search {
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
  }
}

/* Added tablet-specific navigation spacing */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    /* Optimized spacing for tablet view */
    margin-left: 1.5rem;
  }

  .search-overlay {
    top: 85px;
    max-height: 42vh;
  }

  .search-container {
    padding: 2rem 2.5rem;
  }

  .search-input {
    max-width: 500px;
  }
}

/* Added large screen navigation spacing */
@media (min-width: 1400px) {
  .nav-menu {
    /* Increased spacing for large screens to match the image layout */
    margin-left: 2rem;
  }

  .search-container {
    padding: 2.5rem 4rem;
  }

  .search-input {
    max-width: 700px;
    font-size: 1.2rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0cd1c49 */.rtb-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}


.rtb-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://cyberfusion.pe/wp-content/uploads/2023/03/service-shape.png");
  background-size: 700px;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.6; 

  z-index: 0;
}


.rtb-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;

  align-items: stretch;
  position: relative;
  z-index: 2; 
}


.rtb-image {
  height: 100%;
  position: relative;
}


.rtb-image::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(237, 40, 57, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.rtb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 1;

  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}


.rtb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rtb-eyebrow {
  color: #ed2839;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

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

.rtb-grid {
  display: grid;
  gap: 20px;
  flex-grow: 1;
}

.rtb-card {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  padding: 25px;
  border-radius: 10px;
  color: white;

  transition: all 0.4s ease;
}


.rtb-card:nth-child(2) {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.rtb-card:nth-child(3) {
  background: linear-gradient(135deg, #000000, #ed2839);
}


.rtb-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.rtb-card p {
  color: #c6c6c6;
  font-size: 0.95rem;
}


.rtb-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 10px 25px rgba(237,40,57,0.2);
}


@media (max-width: 768px) {
  .rtb-container {
    grid-template-columns: 1fr;
  }

  .rtb-title {
    font-size: 2rem;
  }

  .rtb-image img {
    height: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fa8e00f */.process-section {
  padding: 9rem 0;
  background: linear-gradient(
    135deg,
    #000000 0%,
    #0f0f10 40%,
    #1a1a1d 100%
    
  );
  
  
  color: white;

  /* Ancho total */
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.process-title {
  font-size: 2.5rem;
  font-family: "Merriweather", serif;
  margin-bottom: 60px;
}

/* FLOW */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* STEP */
.process-step {
  max-width: 220px;
  text-align: center;
}

.process-circle {
  width: 60px;
  height: 60px;
  background: #ed2839;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(237, 40, 57, 0.5);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: #c6c6c6;
}

/* LINE */
.process-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #ed2839, transparent);
}

/* MICROCOPY */
.process-microcopy {
  margin-top: 60px;
  font-size: 0.95rem;
  color: #c6c6c6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
  }

  .process-line {
    width: 2px;
    height: 40px;
  }

  .process-step {
    margin-bottom: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39f3f5b */.services-section {
  padding: 100px 20px;
  background-color: #ffffff;
  background-image: url("https://cyberfusion.pe/wp-content/uploads/2025/09/Imagen-3-Landing.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://cyberfusion.pe/wp-content/uploads/2025/09/Imagen-3-Landing.png") no-repeat center;
  background-size: cover;
  opacity: 0.6; 
  z-index: 0;
  pointer-events: none;
}


.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
  z-index: 0;
}


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

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

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

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  height: 300px;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-image {
  width: 100%;
  height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}


.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}


.service-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  text-align: left;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.9rem;
  color: #c6c6c6;
}


.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4),
              0 10px 25px rgba(237,40,57,0.25);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(237,40,57,0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c058bfd */.cases-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 8rem 20px;

  background: linear-gradient(135deg, #000000 0%, #0b132b 100%);
  color: #e5e5e5;

  position: relative;
  overflow: hidden;
}

.cases-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(237,40,57,0.18), transparent);
  top: -250px;
  left: -250px;
  z-index: 0;
}

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

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

/* TITLE */
.cases-title {
  font-size: 2.5rem;
  font-family: "Merriweather", serif;
  margin-bottom: 60px;
  color: #ffffff;
}

/* GRID */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.case-card {
  background: rgba(11, 19, 43, 0.6); /* jet */
  border: 1px solid rgba(229, 229, 229, 0.08);
  backdrop-filter: blur(12px);

  padding: 30px;
  border-radius: 3px;
  text-align: left;
  position: relative;
  overflow: hidden;

  transition: all 0.4s ease;

  /* animación entrada */
  opacity: 0;
  transform: translateY(40px);
  animation: caseFadeUp 0.8s ease forwards;
}

.case-card:nth-child(2) {
  animation-delay: 0.2s;
}
.case-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* MÉTRICA */
.case-metric {
  font-size: 0.8rem;
  color: #ed2839;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* RESULTADO */
.case-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* DESCRIPCIÓN */
.case-description {
  font-size: 0.95rem;
  color: #c6c6c6; /* plata */
  margin-bottom: 20px;
  line-height: 1.5;
}

/* FOOTER */
.case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-time {
  font-size: 0.85rem;
  color: #c6c6c6;
}

/* HOVER*/
.case-card:hover {
  transform: translateY(-12px);
  border-color: rgba(237,40,57,0.5);

  box-shadow: 
    0 20px 40px rgba(0,0,0,0.6),
    0 10px 25px rgba(237,40,57,0.25);
}

/* Línea inferior animada */
.case-card::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #ed2839, #ff4757);
  transition: width 0.4s ease;
}

.case-card:hover::after {
  width: 100%;
}

/* Micro interacción PRO */
.case-card:hover h3 {
  color: #ffffff;
}

.case-card:hover .case-metric {
  letter-spacing: 3px;
}

/* ANIMACIÓN */
@keyframes caseFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-391f0e4 */.resources-section {
  position: relative;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}


.resources-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://cyberfusion.pe/wp-content/uploads/2023/03/shape-banner1.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 800px;

  opacity: 0.2; 

  z-index: 0;
}


.resources-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;

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


.resources-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


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

.resources-title {
  font-size: 2.4rem;
  font-family: "Merriweather", serif;
  margin-bottom: 60px;
  color: #0b132b;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  align-items: stretch;
}


.resource-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: white;
  transition: all 0.4s ease;
}


.resource-card.small {
  display: flex;
  flex-direction: column;
}

.resource-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.resource-content {
  padding: 20px;
  text-align: left;
}

.resource-tag {
  font-size: 0.75rem;
  color: #c6c6c6;
  display: block;
  margin-bottom: 8px;
}

.resource-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.resource-content p {
  font-size: 0.9rem;
  color: #c6c6c6;
}


.resource-card.featured {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;

  background: linear-gradient(135deg, #ed2839, #000000);
}

.resource-card.featured .resource-content {
  text-align: center;
}

.resource-tag.highlight {
  color: #ffffff;
  font-weight: bold;
}

.resource-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-btn:hover {
  background: #000000;
  color: #ffffff;
}


.resource-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

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

  .resources-title {
    font-size: 2rem;
  }

  .resource-image img {
    height: 200px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d585912 */.alliances {
  padding: 10rem 20px;
  background: #0d0d0d;
  color: white;
  text-align: center;
   width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.alliances-container {
  width: 100%;
  padding: 0 60px; 
}


.alliances-label {
  color: #ed2839;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}

.alliances-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-family: "Merriweather", serif;
}


.alliances-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.alliances-logos img {
  height: 70px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.alliances-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* CERTS */
.alliances-certs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.alliances-certs span {
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #c6c6c6;
}

.alliances-certs span:hover {
  border-color: #ed2839;
  color: white;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aad58cb */.incident-section {
  padding: 100px 20px;
  background: white;
  width: 100%;
}


.incident-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}


.incident-label {
  color: #ed2839;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
}

.incident-title {
  font-size: 2.7rem;
  font-family: "Merriweather", serif;
  color: #0b132b;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.incident-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
  font-size: 1.05rem;
  color: #6b7280;
}

/* BADGE */
.incident-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ed2839, #ff4757);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(237, 40, 57, 0.3);
}

/* BUTTONS */
.incident-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.incident-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* PRIMARY */
.incident-btn.primary {
  background: #0b132b;
  color: white;
}

.incident-btn.primary:hover {
  background: #ed2839;
  transform: translateY(-3px);
}

/* SECONDARY */
.incident-btn.secondary {
  border: 1px solid #ccc;
  color: #333;
}

.incident-btn.secondary:hover {
  border-color: #ed2839;
  color: #ed2839;
  transform: translateY(-3px);
}

.incident-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.incident-shape {
  position: absolute;
  width: 380px;
  height: 380px;
  opacity: 0.2;
  z-index: 1;
}

.incident-image img {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

  .incident-text {
    margin: 0 auto 25px;
  }

  .incident-actions {
    justify-content: center;
  }

  .incident-image {
    margin-top: 40px;
  }

  .incident-shape {
    width: 280px;
    height: 280px;
  }
}/* End custom CSS */
/* Start custom CSS */footer
{
    background-image: none !important;
}/* End custom CSS */