@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap');

/* Reset básico */
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Estilo para el header */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  background-color: white;
}

/* Logo adaptativo */
.logo-container {
  text-align: center;
  margin-bottom: 10px;
}

.logo-img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

/* Navegación */
.main-nav {
  background-color: #3d4451;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.main-nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Manrope', sans-serif;
}

.main-nav a:hover {
  color: #00cfe8;
}

/* Responsive para celular */
@media screen and (max-width: 768px) {
  .logo-img {
    width: 120px;
  }

  .main-nav a {
    display: inline-block;
    margin: 10px 8px;
    font-size: 14px;
  }
}

/* SECCIONES GENERALES */
section.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}
section h1, section h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: #222;
  text-align: center;
}
section h1 {
  font-size: 28px;
  margin-bottom: 30px;
}
section h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.container p, ul {
  font-size: 16px;
  line-height: 1.6;
}
ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 8px;
}

/* MISIÓN y VISIÓN */
.visionmision {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 30px;
  flex-wrap: wrap;
}
.visionmision img {
  max-width: 100%;
  border-radius: 10px;
}
.visionmision .phrase {
  font-size: 16px;
  text-align: justify;
}

/* EQUIPO */
.team-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.team-member {
  background-color: #ffffff;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.team-member img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #00CEE3;
}
.team-member h2 {
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
}
.team-member p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* FOOTER */
footer {
  background-color: #4f5966;
  color: white;
  text-align: center;
  padding: 30px 10px;
  margin-top: 60px;
}
footer a img {
  margin: 10px 8px;
  transition: transform 0.3s ease;
}
footer a img:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .visionmision {
    flex-direction: column;
    text-align: center;
  }
  .visionmision img {
    margin: 20px 0;
  }
  .team-member {
    max-width: 90%;
  }
}
