
    

    body {
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5 {
  color: #11276d; /* Azul oscuro del menú */
  font-weight: 700;
}
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
    }
    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    main {
      flex: 1;
    }
    .encabezado-decorativo {
      position: relative;
      padding: 20px 0 10px;
      background-color: #fff;
    }

    
    .encabezado-rosa {
    background: linear-gradient(90deg, #7b00b3, #d83264);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 0 40px 40px 0;
    width: 85%;
    text-align: center;
    position: relative;
    z-index: 2;
}
.encabezado-blanco {
    background: white;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 15px 30px;
    border-radius: 0 40px 40px 0;
    width: 85%;
    text-align: center;
    position: relative;
    z-index: 2;
}

     
    .circulos_encabezado,
    .burbujas-arriba,
    .burbuja-derecha,
    .mancha-fondo,
    .mancha-izquierda {
      position: absolute;
      z-index: 1;
      max-width: 100px;
      pointer-events: none;
    }
    .circulos_encabezado { top: 0; right: 0; }
    .burbujas-arriba { top: 1200px; left: 10px; }
    .mancha-fondo { bottom: -1100px; right: 0; }
    .burbuja-derecha { right: -30px; bottom: 20px; }
    .mancha-izquierda { bottom: 10px; }
    .footer-imagen {
      width: 100%;
      height: auto;
      max-height: 260px;
      object-fit: contain;
    }
    footer {
      margin-top: auto;
    }
    @media (max-width: 768px) {
      .encabezado-rosa {
        font-size: 1.2rem;
        padding: 12px 20px;
      }
      .circulos_encabezado,
      .burbujas-arriba,
      .burbuja-derecha,
      .mancha-fondo,
      .mancha-izquierda {
        max-width: 60px;
        opacity: 0.5;
      }
    }

 .navbar a.nav-link,
.navbar .dropdown-menu a.dropdown-item {
  color: white;
}

.navbar .dropdown-menu {
  background-color: #11276d;
}

.navbar .dropdown-item:hover {
  background-color: #0d1e4a;
  color: white;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
.card-img-top {
  object-fit: cover;
  height: 180px;
}
     .descripcion-acero {
      color: #000;
      text-align: justify;
      font-size: 0.95rem;
    }

    .section-title-bar {
      background-color: #212529;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-bottom: 2rem;
    }

    .scroll-cards {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 1rem;
      padding-bottom: 1rem;
    }

    .scroll-cards .card {
      min-width: 250px;
      max-width: 250px;
      flex: 0 0 auto;
      border: none;
    }

    .card-img-top {
      border-radius: 0.5rem;
    }
    .responsive-table {
    overflow-x: auto;
    display: block;
    width: 100%;
  }
  .scroll-cards::-webkit-scrollbar {
    height: 8px;
  }
  .scroll-cards::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
   .navbar-toggler-icon {
    filter: invert(1); /* blanco sobre fondo oscuro */
  }

.tabla-contenedor {
    width: 100%;
    max-width: 1400px; /* ancho máximo visible */
    height: 1000px; /* alto visible */
    overflow: auto; /* habilita scroll horizontal y vertical */
    border: 2px solid #ccc;
    border-radius: 8px;
  }

  table {
    border-collapse: collapse;
    width: 1000px; /* más ancho que el contenedor */
  }

  th, td {
    border: 1px solid #999;
    padding: 8px;
    text-align: center;
    min-width: 100px;
  }

  th {
    background-color: #f2f2f2;
  }

  .navbar .nav-link {
  font-size: 1.3rem; /* Ajusta el tamaño */
  font-weight: 300;  /* Opcional: más grueso */
}

/* Aumentar tamaño de los elementos del dropdown */
.navbar .dropdown-menu .dropdown-item {
  font-size: 1.1rem;
}

/* Botones */
.btn-recubrimiento {
  min-width: 140px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  border: 2px solid #11276d;
  color: #11276d;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-recubrimiento:hover {
  background-color: #11276d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

ul.list-unstyled.d-flex {
  gap: 0.5rem !important;
}

.offcanvas-header .offcanvas-title {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    line-height: 1.2;
}

img.shadow {
  box-shadow: none !important; /* Quita cualquier sombra */
}