/* === ESTILOS GENERALES === */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0f0f0f;
  color: #f2f2f2;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  background: linear-gradient(90deg, #ff5a00, #ffb200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

header img {
  height: 60px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover,
nav a.activo {
  color: #222;
}

/* === SECCIÓN EMPRESA (QUIÉNES SOMOS) === */
.empresa {
  padding: 80px 12%;
  text-align: center;
}

.empresa h1 {
  color: #ff5a00;
  margin-bottom: 20px;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.empresa p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* === MISIÓN Y VISIÓN === */
.mision-vision {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 60px 10%;
  background: #1a1a1a;
  border-top: 3px solid #ff5a00;
  border-bottom: 3px solid #ffb200;
}

.mision,
.vision {
  flex: 1 1 400px;
  background: #141414;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(255, 90, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mision:hover,
.vision:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 145, 0, 0.3);
}

.mision h2,
.vision h2 {
  color: #ffb200;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mision p,
.vision p {
  color: #ddd;
  font-size: 1rem;
}

/* === VALORES === */
.valores {
  padding: 80px 10%;
  text-align: center;
}

.valores h2 {
  color: #ff5a00;
  margin-bottom: 40px;
  font-size: 2rem;
  letter-spacing: 1px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.valor {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 90, 0, 0.3);
}

.valor:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(255, 145, 0, 0.3);
}

.valor h3 {
  color: #ffb200;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.valor p {
  color: #ccc;
  font-size: 0.95rem;
}

/* === SECCIÓN IMPACTO === */
.impacto {
  padding: 80px 10%;
  background: linear-gradient(180deg, #141414, #0f0f0f);
  text-align: center;
}

.impacto h2 {
  color: #ff5a00;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.impacto p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* === FOOTER === */
footer {
  background: #1a1a1a;
  text-align: center;
  padding: 20px;
  color: #bbb;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  nav {
    margin-top: 10px;
  }

  .empresa h1 {
    font-size: 2rem;
  }

  .empresa p,
  .impacto p {
    font-size: 1rem;
  }

  .mision-vision {
    flex-direction: column;
    gap: 30px;
  }
}