
  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  :root {
    --primary-color:        #f13a11;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --about-bg-color:       #f9f9f9;

    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;

    --base-font-family:     'Plain', sans-serif;
    --font-weight-bold:     bold;
    --font-weight-normal:   normal;
    --font-weight-light:    300;
    --font-weight-thin:     100;

    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100%;
    --border-radius-small:  2px;
  }


  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }


  /*---------------------------------------
     typografia              
  -----------------------------------------*/

  h1 {
    color: #f13a11;
  }

  h2,h3,h4,h5,h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
  }

  h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 20px 0;
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin: 0;
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    color: var(--gray-color);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5em;
  }

  b, 
  strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
  }

  .section {

    padding: 7rem 0;
  }

  .texto {
    color: black;
  }

  /* botones */

  .custom-btn {
    background: transparent;
    border-radius: var(--border-radius-small);
    padding: 14px 24px;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    outline: none !important; 
  }

  .custom-btn:hover {
    color: var(--primary-color);
  }

  .custom-btn:focus {
    box-shadow: none;
  }

  .custom-btn:active {
    color: var(--white-color) !important; 
  }

  .custom-btn.bordered {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .custom-btn.bordered:hover,
  .custom-btn.bordered:focus {
    background: var(--white-color);
    border-color: transparent;
    color: var(--primary-color);
  }

  .custom-btn.bordered:active {
    background: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
  }

  .bg-color {
    background: var(--primary-color);
    color: var(--white-color);
  }

  .bg-color:hover,
  .bg-color:focus {
    background: #d12e0d;
    color: white;
  }

  .bg-color:active {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
  }

  .bordered {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .logo-mini {
    width: 50px;
    height: 50px;
    object-fit: contain; 
  }

  .logo-mini2 {
    width: 45px;
    height: 45px;
    object-fit: contain; 
  }

  .btn-consultar-container{
    margin: 40px !important;
    margin-left: 80px !important;
  }

  .btn-consultar{
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 15px; /* Redondea las esquinas del botón */
    padding: 10px 20px;  /* Aumenta el espacio interno: 10px arriba/abajo y 20px izquierda/derecha */
    font-size: 16px;      /* Tamaño de la fuente */
    cursor: pointer; 
    color: var(--primary-color);
  }

  .btn-consultar:hover {
    background-color: var(--primary-color);
    border: 2px solid #d12e0d;
    border-radius: 15px; /* Redondea las esquinas del botón */
    padding: 10px 20px;  /* Aumenta el espacio interno: 10px arriba/abajo y 20px izquierda/derecha */
    font-size: 16px;      /* Tamaño de la fuente */
    cursor: pointer; 
    color: #ffffff;
    outline: none !important;
    box-shadow: none !important; 
  }

  .btn-consultar:active {
    background-color: var(--primary-color);
    border: 2px solid #d12e0d;
    border-radius: 15px; /* Redondea las esquinas del botón */
    padding: 10px 20px;  /* Aumenta el espacio interno: 10px arriba/abajo y 20px izquierda/derecha */
    font-size: 16px;      /* Tamaño de la fuente */
    cursor: pointer; 
    color: #ffffff;
    outline: none !important;
    box-shadow: none !important; 
  }

  .btn-consultar:focus {
    outline: none; /* Elimina el borde celeste al enfocar */
}

  /*---------------------------------------
     general               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
  }


  /* bg overlay */

  .bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }


  /*---------------------------------------
     Modal              
  -----------------------------------------*/

  /* Estilo para el botón de cierre que ocupa toda la línea superior */
  .modal-close-line {
    display: flex;
    justify-content: flex-end;
    background-color: #f13a11;
    padding: 0px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  /* Estilo para el botón de cierre */
  .modal-close-line .close {
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    border-color: transparent;
    outline: none; /* Elimina el contorno que aparece al enfocar el botón */
    box-shadow: none; /* Elimina cualquier sombra aplicada */
  }

  /* Estilo para el contenido del modal */
  .modal-content {
    border-radius: 15px;
    background-color: #f13a11;
    color: white;
    padding: 1rem 1rem;
  }

  /* Estilo para el cuerpo del modal */
  .modal-body {
    text-align: center;
  }

  /* Estilo para los títulos dentro del modal */
  .modal-titles {
    margin-bottom: 1rem;
  }

  /* Estilo para el pie del modal */
  .modal-footer {
    border-top: none;
  }

  .consulta{
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px; /* Redondea las esquinas del botón */
    padding: 10px 20px;  /* Aumenta el espacio interno: 10px arriba/abajo y 20px izquierda/derecha */
    font-size: 16px;      /* Tamaño de la fuente */
    cursor: pointer; 
    outline: none !important;
    box-shadow: none !important;
  }

  .consulta:hover {
    background-color: #d12e0d; /* Oscurece el color de fondo al pasar el cursor */
}

  /*.membership-form a {
    color: var(--primary-color);
  }

  .card{
    background-color: #2c2c2c;
  }*/

  /*---------------------------------------
    feature          
  -----------------------------------------*/

  .feature {
    background: var(--dark-color);
    padding: 5rem 0;
  }


  /*---------------------------------------
     menu             
  -----------------------------------------*/

  .navbarDiv {
    margin: 0 !important;
  }

  .navbar {
    background: var(--dark-color);
    padding: 1rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding-top: 0;
  }

  .nav-item .nav-link {
    display: block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 2px 6px;
  }

  .nav-item .nav-link.active,
  .nav-item .nav-link:hover {
    color: var(--primary-color);
  }

  .navbar .social-icon li a {
    color: var(--white-color);
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--primary-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }

  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    background-image: url('../images/index.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }

  /* A partir del tamaño large (lg), cambia la imagen de fondo */
  @media (min-width: 992px) {
    .hero {
        background-image: url('../images/index2.jpg');
    }
    
    .logo {
      max-width: 50% !important;
    }
  }
  
  /*---------------------------------------
     CLASS               
  -----------------------------------------*/

  .class-info {
    background: var(--white-color);
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    border-radius: 0 0 2px 2px;
    padding: 1rem 2rem;
    position: relative;
  }

  .class-info img {
    border-radius: 2px 2px 0 0;
  }

  .class-info strong {
    color: var(--gray-color);
  }

  .class-price {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
  }


  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
    text-align: center;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
    text-align: center;
  }

  .schedule-table strong {
    color: var(--white-color);
  }

  .schedule-table span {
    color: var(--gray-color);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

  .table td, .table th {
    padding: 1rem;
  }


  /*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

  /*.about {
    background: var(--about-bg-color);
  }*/

  .about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }

  .class {
    background: var(--about-bg-color);
  }

  .class-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .class-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }

  /*.training {
    background: var(--about-bg-color);
  }*/

  .training-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .training-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }


  .team-thumb {
    position: relative;
  }

  .team-info {
    background: transparent;
    border-radius: 0 0 2px 2px;
    padding: 20px;
    position: relative;
  }

  .team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
  }

  .team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .team-info .social-icon li {
    display: block;
  }


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .webform input,
  button#submit-button {
    height: calc(2.25rem + 20px);
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

  button#submit-button {
    background: var(--dark-color);
    border-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  button#submit-button:hover {
    background: var(--primary-color);
  }

  .contact h2 + p {
    max-width: 90%;
  }

  .google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .google-map iframe {
    width: 100%;
  }

  .fa-location-dot{
    color: var(--primary-color);
  }

  .fa-envelope{
    color: var(--primary-color);
  }
  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    border-top: 1px solid #efebeb;
    padding: 3rem 0;
  }

  .site-footer a {
    color: var(--p-color);
    font-weight: var(--font-weight-light);
  }

  .site-footer p {
    font-size: var(--base-font-size);
  }

  .contact .fa,
  .site-footer .fa {
    color: var(--primary-color);
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin: 5px 10px;
    text-align: center;
  }

  .social-icon li a:hover {
    color: var(--primary-color);
  }


  /*---------------------------------------
    RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 992px) {

    .section {
      padding: 5rem 0;
    }

    .nav-item .nav-link {
      padding: 6px;
    }

    .navbar .social-icon {
      margin-top: 22px;
    }

    .navbar-collapse,
    .site-footer {
      text-align: center;
    }

    .schedule-table {
      display: block;
    }

    /*.modal-content {
      padding: 2rem;
    }*/

    .logo {
      max-width: 50% !important;
    }
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 38px;
    }

    .about-working-hours {
      border-left: 0;
      padding: 22px 0 0 0;
    }

    .contact h2 span {
      display: block;
    }

    .logo {
      max-width: 50% !important;
    }
  }

  @media (max-width: 1400px) and (min-width: 1200px) {
    .navbar-nav .nav-link {
      font-size: 13px;
      padding-left: 0.7rem;
      padding-right: 0.7rem;
    }
    .navbar .social-icon li a {
      font-size: 18px;
      margin: 5px 5px;
    }
    .logo {
      max-width: 30% !important;
    }
  }

  @media screen and (max-width: 576px) {
    /* Títulos */
    h1 {
      font-size: 24px;
    }
  
    h2 {
      font-size: 20px;
    }
  
    h3 {
      font-size: 18px;
    }
  
    h4, h5, h6 {
      font-size: 16px;
    }
  
    p, .texto {
      font-size: 14px;
    }
  
    /* About section */
    .about-working-hours {
      border-left: 0;
      padding: 22px 0 0 0;
    }
  
    /* Contact section */
    .contact h2 span {
      display: block;
    }
  
    /* Imágenes */
    img {
      height: auto;
    }
  
    /* Botones */
    .btn, .btn-consultar {
      font-size: 14px;
      padding: 10px 15px;
    }
  
    /* Modal */
    .modal-dialog {
      margin: 10vh auto;
    }
  
    /* Navbar */
    .navbar-nav .nav-item .nav-link {
      font-size: 14px;
      padding: 5px;
    }
  
    /* Secciones */

    .section {
      padding: 3rem 0;
    }
  
    /* Footer */
    .site-footer {
      padding: 2rem 0;
      text-align: center;
    }
  
    /* Container */
    .container {
      padding-left: 60px; 
      padding-right: 60px; 
    }
  
    .logo {
      max-width: 30% !important;
    }

    .team {
      width: 50%;
    }
  }

  /*---------------------------------------
     pagination            
  -----------------------------------------*/

  .pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0; /* Puedes ajustar este margen según tus necesidades */
}

.pagination a {
    background-color: black; /* Color de fondo negro por defecto */
    color: white; /* Texto blanco */
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #4d4d4d; /* Borde naranja */
    margin: 0; /* Sin márgenes entre los enlaces */
    transition: background-color 0.3s, color 0.3s;
    min-width: 40px; /* Asegurarse de que tenga un ancho mínimo constante */
    height: 40px; /* Asegurar la altura constante */
    display: flex; /* Usar flexbox para alinear el texto */
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
}

.pagination a:hover {
    background-color: #f13a11; /* Fondo naranja al pasar el ratón */
    color: white; /* Texto blanco al pasar el ratón */
}

.pagination a.active {
    background-color: #f13a11 !important; /* Fondo naranja para la página activa */
    color: white; /* Texto blanco para la página activa */
    border: 1px solid #f13a11; /* Borde naranja para la página activa */
}

/*modificar*/

.page-item.disabled .page-link {
  min-width: 40px; /* Asegurarse de que tenga un ancho mínimo constante */
  height: 40px; /* Asegurar la altura constante */
  background-color: black; /* Fondo negro para los elementos deshabilitados */
  color: #4d4d4d; /* Color gris para el texto deshabilitado */
  border-color: #4d4d4d; /* Borde gris para los elementos deshabilitados */
  pointer-events: none; /* Evitar clics en los elementos deshabilitados */
}

.page-item.active .page-link{
  min-width: 40px; /* Asegurarse de que tenga un ancho mínimo constante */
  height: 40px; /* Asegurar la altura constante */
  background-color: #f13a11 !important; /* Fondo naranja para la página activa */
  border-color: #4d4d4d !important; /* Borde naranja para la página activa */
  color: #ffffff !important; /* Texto blanco para la página activa */
}

.pagination a:focus {
  outline: none; /* Elimina el borde de enfoque predeterminado */
}

/*   INSTAGRAM    */

.team-info a.fa-instagram {
  text-decoration: none;
  color: inherit;
}

.team-info a.fa-instagram:active,
.team-info a.fa-instagram:focus {
  outline: none;
  color: inherit;
}


/*   BOTON FLOTANTE DE WHATSAPP    */
.whatsapp-float {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: #e71414; /* Cambiado a rojo */
  color: white;
  border-radius: 50px 50px 0 0; /* Redondeado solo en la parte superior */
  width: 60px;
  height: 80px; /* Un poco más alto para la forma */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px; /* Para centrar el ícono en la parte redondeada */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #d12e0d; /* Rojo más oscuro al hacer hover */
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  font-size: 28px;
  margin-top: -10px; /* Para ajustar la posición del ícono */
}

/*   IMAGENES DE ENTRENAMIENTOS    */
.img-po {
  margin-top: 30px;
  width: 80px;       /* Tamaño fijo */
  height: 80px;      /* Mismo alto que ancho (ajusta según necesites) */
  object-fit: contain; /* Mantiene proporción sin recortar */
  flex-shrink: 0;    /* Evita que se encojan en flexbox */
}

/* Ajustar el modal para que no se superponga con el navbar */
.modal-dialog {
  margin-top: 10vh; /* Ajusta este valor según la altura del navbar */
}

.modal-backdrop {
  z-index: 1040; /* Asegurar que el fondo del modal esté detrás del contenido */
}

.modal-content {
  z-index: 1050; /* Asegurar que el contenido del modal esté por encima */
}

/* Fondo general */
.scroll-background {
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23000000' stroke-width='0.5' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cuse fill='%23242424' href='%23s' y='2'/%3E%3Cuse fill='%23242424' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23333333' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23333333' href='%23s'/%3E%3Cuse fill='%233e3e3e' href='%23s' x='2'/%3E%3Cuse fill='%233e3e3e' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23484848'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23484848'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23515151'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23000000'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23585858'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23F60'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23F60'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='scale(6.95) translate(-856.12 -642.09)'%3E%3Cg fill='%23F60'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Contenedor general con fondo fijo */
.background-container {
  background-image: url('../images/index.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Todas las secciones tienen fondo translúcido */
.about, .coporative, .training, .teachers {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.about::before,
.coporative::before,
.training::before,
.teachers::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.8); /* fondo blanco translúcido */
  z-index: 0;
  pointer-events: none;
}

/* Asegura que el contenido esté por encima del fondo */
.about .container,
.coporative .container,
.training .container,
.teachers .container {
  position: relative;
  z-index: 1;
}

/* 💡 Efecto de aparición suave solo para la sección 'about' */
.about {
  animation: backgroundFadeIn 1.5s ease-out forwards;
  opacity: 0;
}

@keyframes backgroundFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-success-ethos {
    background-color: #f13a11 !important;
    color: #fff !important;
    border-radius: 15px;
}