/* =================================
   HERO / JUMBOTRON PRINCIPAL
================================= */

.custom-jumbotron {

  /* Imagen de fondo */
  background-image: url("../mtcorrectivo/fondomtcorrectivo.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  position: relative;

  /* Layout profesional */
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 60px 40px;
  min-height: 380px;

}


/* =================================
   CONTENIDO DEL HERO
================================= */

.custom-jumbotron .content {

  background-color: rgba(0, 0, 0, 0.6);

  padding: 25px;
  border-radius: 10px;

  max-width: 650px;

  /* importante: alineación correcta */
  text-align: left;

}


/* Títulos y texto */

.custom-jumbotron h1 {

  font-size: 42px;
  margin-bottom: 15px;

}

.custom-jumbotron p {

  font-size: 18px;
  line-height: 1.6;

}


/* =================================
   CARD BENEFICIOS (lado derecho)
================================= */

.info-card {

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);

  padding: 25px;
  border-radius: 12px;

  max-width: 300px;
  margin-left: 30px;

  text-align: left;

  animation: fadeInRight 0.8s ease;

}


/* Animación profesional */

@keyframes fadeInRight {

  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}


/* Título card */

.info-card h4 {

  color: white;
  margin-bottom: 15px;
  font-size: 22px;

}


/* Lista beneficios */

.info-card ul {

  list-style: none;
  padding: 0;
  margin: 0;

}

.info-card li {

  color: white;

  margin-bottom: 12px;

  font-size: 16px;

  display: flex;
  align-items: center;
  gap: 8px;

}


/* =================================
   SECCIÓN BENEFICIOS INFERIOR
================================= */

.beneficios-section {

  background: #3a3f4d;

  color: white;

  padding: 70px 20px;

  text-align: center;

  margin-top: 80px;

  border-radius: 12px;

}

.beneficios-section h2 {

  margin-bottom: 25px;

}

.beneficios-lista {

  list-style: none;
  padding: 0;

}

.beneficios-lista li {

  margin: 12px 0;
  font-size: 1.1rem;

}


/* =================================
   RESPONSIVE — CELULAR
================================= */

@media (max-width: 768px) {

  /* Hero cambia a vertical */

  .custom-jumbotron {

    flex-direction: column;

    align-items: flex-start;

    padding: 40px 20px;

    min-height: auto;

  }

  /* Contenido ocupa todo el ancho */

  .custom-jumbotron .content {

    max-width: 100%;
    width: 100%;

    margin-bottom: 20px;

    text-align: left;

  }

  /* Título más pequeño */

  .custom-jumbotron h1 {

    font-size: 28px;

  }

  /* Texto más cómodo */

  .custom-jumbotron p {

    font-size: 16px;

  }

  /* Card pasa debajo */

  .info-card {

    max-width: 100%;
    width: 100%;

    margin-left: 0;
    margin-top: 15px;

  }

  /* Sección beneficios móvil */

  .beneficios-section {

    padding: 40px 15px;

  }

  .beneficios-lista li {

    font-size: 1rem;

  }

}


/* =================================
   PROTECCIÓN GLOBAL
================================= */

html, body {

  overflow-x: hidden;

}
/* =================================
   VENTAJAS MANTENIMIENTO CORRECTIVO
================================= */

.ventajas-section {

background: #2c2f36;

padding: 80px 20px;

margin-top: 40px;

}

.ventajas-container {

max-width: 1200px;

margin: auto;

/* alineación profesional */
text-align: left;

}

.ventajas-titulo {

color: white;

font-size: 32px;

margin-bottom: 50px;

font-weight: 600;

}

.ventajas-grid {

display: grid;

grid-template-columns: repeat(4, 1fr);

gap: 25px;

}

.ventaja-card {

background: rgba(255,255,255,0.05);

backdrop-filter: blur(10px);

padding: 30px 25px;

border-radius: 12px;

color: white;

transition: 0.3s;

border: 1px solid rgba(255,255,255,0.08);

/* alineación izquierda */
text-align: left;

}

.ventaja-card:hover {

transform: translateY(-8px);

background: rgba(255,255,255,0.08);

border: 1px solid rgba(255,255,255,0.15);

}

.ventaja-icono {

font-size: 30px;

color: #00c853;

margin-bottom: 15px;

}

.ventaja-card h4 {

margin-bottom: 10px;

font-weight: 600;

}

.ventaja-card p {

font-size: 15px;

opacity: 0.9;

}


/* RESPONSIVE CELULAR */

@media (max-width: 768px) {

.ventajas-grid {

grid-template-columns: 1fr;

}

.ventaja-card {

text-align: left;

}

}