body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f9fafb;
  color: #1f2937;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111827;
}

nav a {
  margin: 0 1rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

.cta-btn {
  background-color: #ea580c;
  color: #fff;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.cta-btn.blanco {
  background: white;
  color: #ea580c;
  border: 1px solid #ea580c;
}


.encabezado {
  background: #f97316;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.titulo-animado {
  font-size: 2.5rem;
  margin: 0;
  animation: fadeInDown 1s ease forwards;
}

.subtitulo {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.seccion-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.seccion-info .texto {
  flex: 1 1 400px;
}

.seccion-info .imagen {
  flex: 1 1 400px;
}

.seccion-info .imagen img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mision-vision {
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mision-vision > div {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 10px;
}

.valores {
  background: #f97316;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.valores ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.valores li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer {
  background: #111827;
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col .contacto li {
  color: #d1d5db;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.icono-footer {
  color: #f97316;
  margin-right: 0.5rem;
}