
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: #011BA6;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #011BA6;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover i {
  font-size: 28px;
  color: #011BA6;
  line-height: 0;
}

.back-to-top:hover  {
  background: #c6292900;
  border-radius: 4px;
  border: #011BA6 solid 1px;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  overflow: hidden;
  background: #ffffff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #011BA6;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

  .center{
    display: block;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .header-container {
  background: #fff;
  border-radius: 40px 40px 40px 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.208);
}


#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 35px;
}

@media (max-width: 992px) {
  #header img {
    top: 0;
    background: transparent;
    display: none;

  }
  

  #header.header-scrolled,
  #header .header-container {
    background: transparent;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0);
  }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

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


.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #36343a;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #011BA6;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #011BA6;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #fff;
  border: 1px solid #ffff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #011BA6;
  background: #011aa600;
  border: #011BA6 1px solid;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #011BA6;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 28, 31, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 30px;
  font-size: 15px;
  color: #36343a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #011BA6;

}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
} 

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #011BA6;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Hero 
  background: linear-gradient(to top, rgb(1, 26, 166), rgba(1, 26, 166, 0.619)), url("https://s3.ethercloud.mx/ethergroup/public/888.webp") center center / cover no-repeat fixed;
--------------------------------------------------------------*/
#hero {
  background: linear-gradient(to top, rgb(1, 26, 166), rgba(1, 26, 166, 0.619)), url("https://s3.ethercloud.mx/ethergroup/public/888.webp") center center / cover no-repeat fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}

#hero .hero-content {
  height: auto;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 60px;
}

.hero-content h1 span {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}

.hero-content p {
  font-size: 13px;
  letter-spacing: 3px;
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
}

.hero-content .list-social {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.hero-content .list-social li {
  margin-right: 20px;
}

.hero-content .list-social li i {
  color: #fff;
  font-size: 15px;
}

.ethergroup img {
  max-height: 100px;
  height: auto;
  width: auto;
}

/* ---------------------
   Responsive Styles
---------------------- */

/* Tablets */
@media (max-width: 991px) {
  .hero-content h1 span {
    font-size: 35px;
    text-align: center;
  }

  .hero-content p {
    font-size: 12px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-content .list-social {
    justify-content: center;
  }

  .ethergroup img {
    margin: 0 auto 20px;
    display: block;
    width: 100%;
    height: auto;
  }
}

/* Móviles */
@media (max-width: 575px) {
  #hero {
    background-attachment: scroll;
    height: auto;
    padding: 150px 0;
  }

  .hero-content h1 span {
    font-size: 35px;
  }

  .hero-content p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-content .list-social li {
    margin-right: 10px;
  }

  .ethergroup img {
    width: 100%;
    height: auto;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  background: linear-gradient(135deg, #fff 0%, color-mix(in srgb, #036dda, transparent 97%) 50%, #fff 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px color-mix(in srgb, #555555, transparent 93%), 0 0 0 1px color-mix(in srgb, #036dda, transparent 90%);
  overflow: hidden;
}

.call-to-action .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .background-pattern .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, #036dda, transparent 96%) 30%, color-mix(in srgb, #036dda, transparent 98%) 70%, transparent 100%);
  transform: skewX(-15deg) translateX(20%);
}

.call-to-action .background-pattern .geometric-shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .background-pattern .geometric-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, #036dda, transparent 85%), color-mix(in srgb, #036dda, transparent 95%));
  top: 5%;
  left: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.call-to-action .background-pattern .geometric-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, #036dda, transparent 88%), color-mix(in srgb, #036dda, transparent 96%));
  bottom: 10%;
  right: 15%;
  animation: floatRotate 6s ease-in-out infinite reverse;
}

.call-to-action .content-section {
  position: relative;
  z-index: 2;
}

.call-to-action .content-section .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #036dda, color-mix(in srgb, #036dda, transparent 10%));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px color-mix(in srgb, #036dda, transparent 85%);
}

.call-to-action .content-section .label-badge i {
  font-size: 1.1rem;
}

.call-to-action .content-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.call-to-action .content-section p {
  font-size: 1.125rem;
  color: color-mix(in srgb, #555555, transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-to-action .features-grid .feature-item .feature-icon {
  color: #011BA6;
  font-size: 1.25rem;
}

.call-to-action .features-grid .feature-item span {
  font-weight: 500;
  color: #000000;
  font-size: 0.95rem;
}

.call-to-action .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.call-to-action .cta-actions .btn.btn-cta-primary {
  background: linear-gradient(135deg, #011BA6, color-mix(in srgb, #011BA6, transparent 15%));
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, #011BA6, transparent 85%), 0 0 0 0 #011BA6;
}

.call-to-action .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, #036dda, transparent 80%), 0 0 0 3px color-mix(in srgb, #036dda, transparent 80%);
}

.call-to-action .cta-actions .btn.btn-cta-secondary {
  background: transparent;
  color: #036dda;
  border: 2px solid color-mix(in srgb, #036dda, transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, #036dda, transparent 95%);
  border-color: #036dda;
}

.call-to-action .cta-actions .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.call-to-action .cta-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action .cta-actions .secondary-action .note {
  font-size: 0.85rem;
  color: color-mix(in srgb, #555555, transparent 40%);
  font-style: italic;
}

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

.call-to-action .image-section .main-image-wrapper {
  position: relative;
  max-width: 450px;
}

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

.call-to-action .image-section .main-image-wrapper .overlay-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, #036dda, transparent 85%), color-mix(in srgb, #036dda, transparent 95%));
  top: -20px;
  right: -30px;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, color-mix(in srgb, #036dda, transparent 88%), color-mix(in srgb, #036dda, transparent 96%));
  bottom: -15px;
  left: -25px;
  animation: pulse 3s ease-in-out infinite;
}

.call-to-action .image-section .stats-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px color-mix(in srgb, #555555, transparent 90%), 0 0 0 1px color-mix(in srgb, #036dda, transparent 90%);
  z-index: 3;
}

.call-to-action .image-section .stats-card .stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #011aa6, color-mix(in srgb, #036dda, transparent 20%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.call-to-action .image-section .stats-card .stat-content h6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1;
}

.call-to-action .image-section .stats-card .stat-content span {
  font-size: 0.85rem;
  color: color-mix(in srgb, #000000, transparent 30%);
  font-weight: 500;
}

.call-to-action .image-section .stats-card.card-1 {
  top: 15%;
  left: -20px;
  animation: float1 6s ease-in-out infinite;
}

.call-to-action .image-section .stats-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 3rem 2rem;
  }

  .call-to-action .content-section h2 {
    font-size: 2.25rem;
  }

  .call-to-action .content-section p {
    font-size: 1rem;
  }

  .call-to-action .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .call-to-action .cta-actions .btn.btn-cta-primary {
    width: 100%;
  }

  .call-to-action .cta-actions .secondary-action {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .call-to-action .image-section {
    margin-top: 3rem;
  }

  .call-to-action .image-section .stats-card.card-1 {
    top: 10%;
    left: 0;
  }

  .call-to-action .image-section .stats-card.card-2 {
    bottom: 10%;
    right: 0;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .call-to-action .content-section h2 {
    font-size: 1.875rem;
  }

  .call-to-action .content-section .label-badge {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .call-to-action .stats-card {
    padding: 0.75rem 1rem;
  }

  .call-to-action .stats-card .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .call-to-action .stats-card .stat-content h6 {
    font-size: 1.1rem;
  }

  .call-to-action .stats-card .stat-content span {
    font-size: 0.8rem;
  }

  .call-to-action .overlay-circle {
    transform: scale(0.8);
  }
}

/* Intro Section  background: url("../img/111.jpg") center/cover;
------------------------------*/
.intro {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #011aa6;
  z-index: 1;
}

.intro .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .intro .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.intro  h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .intro .intro-content h2 {
    font-size: 2rem;
  }
}

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

.intro .intro-content  {
  margin-top: 5px;
}

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

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

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

.intro .features-list .feature-item span {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}



@media (max-width: 768px) {
  .intro h2   {
    font-size: 28px;
    text-align: left;
  }

  .intro .intro-content p  {
    font-size: 16px;
  }

  .intro .features-list {
    display: none;
  }
}



/* Sophos Section
------------------------------*/
.sophos{  
  background:linear-gradient(rgba(0, 34, 205, 0.9), rgba(10, 36, 106, 0.8)), url(https://s3.ethercloud.mx/ethergroup/public/02.webp) no-repeat center;
  background-size: cover;

}

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

.sophos .content h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sophos .content p {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 25px;
}

.img-sophos img{
 width: 100%;
 height: auto;
 text-align: center;
 display: block;
}




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

.sophos .content .read-more:hover  {
  background: color-mix(in srgb, #fff, transparent 95%);
  border-color: #fff;
}

.sophos .content .read-more:hover  i {
  font-size: 20px;
}


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

.sophos .content .read-more:hover {
  background: color-mix(in srgb, #fff, transparent 95%);
  border-color: #fff;
}

.sophos .content .read-more i {
  font-size: 20px;
}


.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.content-list i {
  color: #fff; /* Color del icono */
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .sophos-center {
    flex-direction: column;
  }

  .sophos .content h1 {
    font-size: 28px;
  }

  .sophos .content p {
    font-size: 18px;
  }

  .content-list li {
    justify-content: center;
    text-align: left;
  }

 
}

@media (max-width: 576px) {
  .sophos .content h1 {
    font-size: 28px;
  }

  .sophos .content p {
    font-size: 18px;
  }

  .content-list li {
    font-size: 16px;
  }

  .sophos .content .read-more {
    font-size: 15px;
    padding: 0.6rem 1.2rem;
  }

  .sophos .content .read-more i {
    font-size: 18px;
  }
}

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

@media (max-width: 768px) {
  .img-sophos img {
    max-width: 75%; /* o el tamaño que desees */
    margin: 0 auto;
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Soluciones Section
--------------------------------------------------------------*/
.soluciones{
  padding: 80px 0 80px 0;
}

.soluciones .content h2 {
  font-size: 38px;
  color: #011BA6;
  font-weight: 600;
}

.soluciones .content p:last-child {
  margin-bottom: 0;
  font-size: 22px;
  color: #000000;
}

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

  .soluciones .content p:last-child  {
    font-size: 16px;
  }
}

.soluciones .icon-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #011BA6;
}

.soluciones .icon-box p {
  margin-bottom: 0;
  font-size: 14px;
}



.soluciones .icon-box {
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.soluciones .icon-box:hover {
  box-shadow: 0 16px 32px color-mix(in srgb, #036dda, transparent 80%), 0 0 0 3px color-mix(in srgb, #036dda, transparent 80%);
}


.soluciones .icon-box i {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, #036dda, transparent 92%);
  color: #011aa6;
  font-size: 26px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-radius: 50px;
}

/* Para asegurar que todas las columnas de icon-box tengan el mismo alto */
.icon-boxes > div {
  display: flex;
}

/* Forzamos que el contenido del icon-box se estire */
.icon-box {
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}




/*--------------------------------------------------------------
# Consult Section  
.soluciones .icon-box i {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 0;
  color: #011BA6;
}

--------------------------------------------------------------*/
.consult {
  padding: 90px 0 0 0;
}

.consult .content {
  background: #011BA6;
  color: white;
  padding: 4rem 0;
}

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

.consult .content-title,
.consult .content-subtitle,
.consult p,
.consult a {
  margin-left: 55px;
  margin-right: 20px;
}

.consult .content-title {
  font-weight: 600;
  font-size: 38px;
  text-align: left;
}

.consult .content-subtitle {
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}

.consult p {
  font-size: 18px;
  font-weight: 300;
}

.consult a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-top: 15px;
}

/* Responsive ajustes para móviles */
@media (max-width: 768px) {
  .consult .img-overlap {
    margin-top: 0;
  }

  .consult .content-title,
  .consult .content-subtitle,
  .consult p,
  .consult a {
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
  }

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

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

.consult-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

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


/* Responsive: en móviles, columna y centrado */
@media (max-width: 767px) {
  .consult-actions .secondary-action {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .img-overlap {
    display: none;
  }
}


/*--------------------------------------------------------------
# Industrias Section 3, 111, 218
--------------------------------------------------------------*/


.team .swiper-wrapper {
  height: auto !important;
}

.team .section-title {
  text-align: left;
  padding: 0%;
}

.team .section-title h2 {
  color: #011BA6;
  font-size: 38px;
  font-weight: 600;
}

.team .section-title p {
  color: black;
  font-size: 18px;
  text-align: justify;
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, #036dda, transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: #011aa6;
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #011aa6, transparent 20%);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #011aa6 80%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  text-align: center;
}

.team .team-image .title-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  color: #fff;
  max-width: 90%;
}

.team .team-image .title-team h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
}

.team .team-image .title-team p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.4;
}

.team .team-content {
  padding: 20px;
  text-align: center;
}


@media (max-width: 768px) {
  .team .section-title h2 {
    font-size: 28px;
  }

  .team .section-title p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .team  .team-card {
    margin-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Tech Section
--------------------------------------------------------------*/


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

.tech{
  padding: 60px 0 60px 0;
  position: relative;
}

.tech .content h2 {
  font-weight: 600;
  font-size: 38px;
  color: #011BA6;
}



.tech .content-final h2 {
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  margin-top: 25px;
}

.tech .content-final p {
  color: #ffffffdd;
  font-size: 16px;
  text-align: justify;
}


.tech .content-final{
  background: linear-gradient( 135deg, #011aa6 55%, color-mix(in srgb, #036dda, white 0%) 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 50px;
  margin-bottom: 20px;
 
 
}

.tech .content-final .btn.btn-cta-secondary {
  background: #fff;
  color: #036dda;
  border: 2px solid color-mix(in srgb, #fff, transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  
  transition: all 0.3s ease;
  font-weight: 600;
}

.tech .content-final .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, #036dda, transparent 85%);
  border-color: #fff;
  color: #fff;
}

.tech .content-final .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.tech .content-final .secondary-action {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;
  gap: 1rem;
}

.tech .content img {
  border-radius: 5%;
  width: 100%;
  height: auto;
}


.tech .content p:last-child {
  margin-bottom: 0;
  font-size: 22px;
}

@media (max-width: 768px) {
  .tech .content h2 {
    font-size: 26px;
  }

  .tech .content p:last-child {
    font-size: 18px;
  }
}


.tech .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, #011aa6, transparent 85%);
}

.tech .nav-pills li+li {
  margin-left: 40px;
}

.tech .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: #444444;
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  text-transform: uppercase;
}

.tech .nav-link.active {
  color: #011BA6;
  background: none;
  border-bottom: 3px solid #011aa6;
}

@media (max-width: 575px) {
  .tech .nav-link {
    font-size: 16px;
  }
}

/* Ocultar imagen en tablet y móvil */
@media (max-width: 991px) {
  .tech .content img {
    display: none;
  }
}



/*--------------------------------------------------------------
# Tecnologias lista Section
--------------------------------------------------------------*/
.list .list-item {
  background-color: #036fda16;
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, #036dda, transparent 90%);
  position: relative;
  border-radius: 6px;
}

.list .list-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.list .list-item h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 15px;
}

.list .list-item h3  {
  color: #011BA6;
  transition: 0.3s;
}

.list .list-item:hover {
  border-color: #011aa6;
}


/*--------------------------------------------------------------
# Ubicaciones
--------------------------------------------------------------*/

.ubicaciones .content{
  text-align: center;

}

.ubicaciones h2{
  color: #011aa6;
  font-weight: 600;
  font-size: 38px;

}

.ubicaciones p{
  font-size: 22px;
  margin-bottom: 15px;
  color: #000000;

}

.ubicaciones .content img{
  width: 85%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.zoom-image {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoom-image:hover {
  transform: scale(1.02);
}

.modal-content {
  background-color: transparent;
}

.modal .btn-close {
  filter: invert(1); /* hace la X blanca si está sobre fondo oscuro */
}


@media (max-width: 768px) {
  .ubicaciones h2 {
    font-size: 28px;
  }

  .ubicaciones p {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Contacto section

--------------------------------------------------------------*/

.contacto .content-bg{
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.144) 0px 7px 29px 0px;
}

.contacto .contacto-title h2{
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #011BA6;
  margin-bottom: 25px;
}

.contacto h2 {
  color: #011BA6;
  font-size: 35px;
  margin-bottom: 15px;
}

.contacto .content-center{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}


.content-icon{
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, #036dda, transparent 85% );
  border-radius: 50px;
  transition: 0.3s;
}

.content-icon i {
 font-size: 1.5rem;
 color: #011aa6;
}

.content-contact {
 flex-grow: 1;
}


.content-contact h3{
  font-size: 18px;
  text-align: left;
  font-weight: 500;
  color: #011aa6;
}

.content-contact p{
  font-size: 12px;
  text-align: left;
  color: #000000;
}

.contacto .content{
  align-items: center;
  padding: 60px;
}

.contacto .content .content-link ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacto .content .content-link p{
  font-size: 18px;
}

.contacto .content-link ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}


.contacto .content .content-link ul a{
  font-size: 16px;
}

.contacto .content .content-link ul a{
  font-size: 18px;
  color: #000000;
}

.contacto .content .content-link .active{
  font-size: 18px;
  color: #011aa6;
  font-weight: 600;
}



.contacto .content .content-link ul a:hover{
  font-size: 18px;
  color: #011aa6;
}


@media (max-width: 991px) {
  .contacto .content {
    padding: 30px;
    text-align: center;
  }

  .contacto .content .content-link {
    margin-bottom: 30px;
  }

  .contacto .content-link ul li {
    justify-content: center;
  }

  .content-contact h3,
  .content-contact p {
    text-align: center;
  }

  .content-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #ffffff;
  font-size: 14px;
  background: #011aa6;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #011aa6;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #ffffff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #036dda;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffffffa6;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #6cb6ff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #036fda91;
  color: #ffffffdf;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #036fda91;
}

#footer .social-links a:hover {
  background: #011BA6;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero about
--------------------------------------------------------------*/
#hero-about {
  background: linear-gradient(to top,  rgb(1, 26, 166), rgba(1, 26, 166, 0.558)), url("https://s3.ethercloud.mx/ethergroup/public/6666.webp") center center / cover no-repeat fixed;
  height: 60vh;
  width: 100%;
}

#hero-about .hero-content {
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}


/* Intro about Section 
------------------------------*/
.intro-about {
  position: relative;
  overflow: hidden;
}

.intro-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 1;
}

.intro-about .container {
  position: relative;
  z-index: 2;
}

.intro-about .intro-content {
  padding-right: 30px;
}

.intro-about .intro-content h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
  color: #011aa6;
}

.intro-about .intro-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #011aa6;
}

.intro-about .intro-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: color-mix(in srgb,#000000, transparent 20%);
  line-height: 1.4;
}

.intro-about .intro-image {
  position: relative;
}

.intro-about .intro-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}



/*--------------------------------------------------------------
# MVV Section
--------------------------------------------------------------*/
.mvv{
  padding:30px;
}

.mvv .content h2 {
  font-size: 38px;
  color: #011BA6;
  font-weight: 600;
}

.mvv .content p:last-child {
  margin-bottom: 0;
  font-size: 22px;
  color: #000000;
}

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

  .mvv .content p:last-child  {
    font-size: 16px;
  }
}

.mvv .icon-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #011BA6;
}

.mvv .icon-box p {
  margin-bottom: 0;
  font-size: 14px;
}


.mvv .icon-box {
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.mvv .icon-box:hover {
  box-shadow: 0 16px 32px color-mix(in srgb, #036dda, transparent 80%), 0 0 0 3px color-mix(in srgb, #036dda, transparent 80%);
}


.mvv .icon-box i {
  width: 72px;
  height: 72px;
  background-color: color-mix(in srgb, #036dda, transparent 92%);
  color: #011aa6;
  font-size: 26px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-radius: 50px;
}

/* Para asegurar que todas las columnas de icon-box tengan el mismo alto */
.mvv .icon-boxes > div {
  display: flex;
}

/* Forzamos que el contenido del icon-box se estire */
.mvv .icon-box {
  flex: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


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

.why .why-hero-banner .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why .why-hero-banner .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why .why-hero-banner .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, #011aa6, transparent 20%) 0%, color-mix(in srgb, #000000, transparent 30%) 100%);
}

.why .why-hero-banner .hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.why .why-hero-banner .hero-content .instructor-avatar {
  position: relative;
  flex-shrink: 0;
}

.why .why-profile .why-hero-banner .hero-content .instructor-info h2 {
  color: var(--contrast-color);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 70%);
}

.why-profile .why-hero-banner .hero-content .why-info .title {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.9;
  font-weight: 500;
}

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

#blog {
  display: none;
}


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

.blog-section .section-title {
  font-size: 38px;
  color: #011BA6;
  text-align: center;
  font-weight: 600;
}

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, #fff, transparent 0%), color-mix(in srgb, #fff, #136ad5 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, #011aa6, transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb,#136ad5, transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, #136ad5, transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb,#136ad5, transparent 80%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, #136ad5, transparent 90%);
  color: #136ad5;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, #011aa6, #036dda);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, #000000, transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: #011aa6;
  color: white;
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, #011aa6, transparent 50%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: #011aa6;
  border: 2px solid color-mix(in srgb, #011aa6, transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  box-shadow: 0 5px 15px color-mix(in srgb, #011aa6, transparent 50%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, #fff, #036dda 10%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #011aa6;
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: #011aa6;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: #011aa6;
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}
