.nosotros-hero-banner {
  position: relative;
  background-image: url("../img/lcdhDesdeArriba.png");
}

.nosotros-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* mejora la legibilidad */
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros-hero-title {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 600;
  padding: 0 1em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.nosotros-hero-title.animate.active {
  opacity: 1;
  transform: translateY(0);
}
/* Sección de Navegación */
.subnav-nosotros {
  width: 80%;
  margin: 0 auto;
  position: sticky;
  top: 60px;
  background: #fff;
  padding: 1rem;
  z-index: 10;
  border-bottom: 1px solid #eee;
  display: none;
}

@media (min-width: 768px) {
  .subnav-nosotros {
    display: block;
  }
}

.subnav-nosotros ul {
  max-width: 100%;
  display: flex;
  justify-content: end;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.subnav-nosotros a {
  font-size: smaller;
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.subnav-nosotros a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff7403; /* Podés cambiarlo por el color corporativo */
  transition: width 0.3s ease;
}

.subnav-nosotros a:hover {
  color: #ff7403;
}

.subnav-nosotros a:hover::after {
  width: 100%;
}

/* Sección Sobre Nosotros */
.sobre-nosotros {
  padding: 60px 20px;
}

.sobre-nosotros .container {
  max-width: 1000px;
  margin: 0 auto;
}

.sobre-nosotros h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.sobre-nosotros p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/*Seccion de linea de tiempo*/

.timeline-minimal {
  max-width: 1000px;
  margin: 0px auto;
  padding: 0 20px;
}

.timeline-minimal h2 {
  margin-bottom: 40px;
  font-size: x-large;
  color: #333;
}

.timeline-minimal ul {
  list-style: none;
  padding-left: 0;
  border-left: 2px solid #dcdcdc;
  margin-left: 10px;
}

.timeline-minimal li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 25px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.timeline-minimal li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
}

.timeline-minimal .year {
  font-weight: 600;
  color: #007bff;
  display: inline-block;
  margin-bottom: 4px;
}

/* Sección Valores de la Empresa */

.valores-empresa {
  padding: 60px 20px;
  
}
.contenedor-valores,
.contenedor-numeros {
  max-width: 1000px;
  margin: 0 auto;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hex-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.hex-flip {
  width: 150px;
  height: 150px;
  margin: auto;
  perspective: 1000px;
}

.hex-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.hex-flip:hover .hex-card {
  transform: rotateY(180deg);
}

.hex-card .front,
.hex-card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(
    25% 5.77%,
    75% 5.77%,
    100% 50%,
    75% 94.23%,
    25% 94.23%,
    0% 50%
  );
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-card .back {
  transform: rotateY(180deg);
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 50px;
}

/* Sección Números de la Empresa */
.numeros-empresa {
  padding: 60px 20px;
}
.numeros-empresa .contenedor img{
  width: 100%;
}
/* .numeros-empresa .contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 0rem;
  padding: 3rem 1rem;
} */

.stat {
  text-align: center;
  padding: 0 1rem;
  border-left: 2px solid #686868;
  border-right: 2px solid #686868;
  flex: 1;
}

/* Si es el primero, le quitamos el borde izquierdo */
.stat:first-child {
  border-left: none;
}

/* Si es el último, le quitamos el borde derecho */
.stat:last-child {
  border-right: none;
}

.stat h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.stat p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0.5rem 0 0;
  text-transform: uppercase;
}

.ssa-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.ssa-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ssa-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.ssa-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.ssa-grid {
display: flex;
  justify-content: center;
  align-items: end;
  gap: 70px;
}

.ssa-card {
  width: 260px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ssa-card:hover {
  transform: translateY(-5px);
}

.ssa-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.ssa-icon img {
  width: 100px;
}

.ssa-card h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.ssa-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .ssa-grid {
    flex-direction: column;
    align-items: center;
  }
}

.quality-section {
  padding: 60px 20px;
}

.quality-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* .quality-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
} */

.quality-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.quality-list {
  margin: 0 auto;
  max-width: 700px;
  list-style: none;
  padding: 0;
}

.quality-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  color: #555;
}

.quality-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #009de0;
  font-size: 1rem;
}

/* .iso-logo {
  margin-top: 30px;
  width: 120px;
  height: auto;
} */
