
body {
  font-family: 'Century Gothic', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #00427B;
}

header {
  text-align: center;
  padding: 2em;
  background-color: #f4f7fb;
}

.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1em;
}

.slogan {
  font-size: 1.1em;
  color: #8FA2B0;
}

nav {
  background-color: #00427B;
  text-align: center;
  position: relative;
}

nav .menu {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-icon {
  display: none;
  font-size: 2em;
  color: white;
  padding: 1em;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 0;
}

#menu-toggle {
  display: none;
}

section {
  padding: 2em;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  color: #00427B;
}

ul li {
  padding: 0.5em 0;
}

.main-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-top: 2em;
  border-radius: 8px;
}

.main-image.reduced {
  max-width: 600px;
  margin-top: 3em;
}

form {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

form input, form textarea {
  width: 90%;
  max-width: 500px;
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Century Gothic', sans-serif;
}

form textarea {
  height: 120px;
  resize: vertical;
}

form button {
  background-color: #00427B;
  color: white;
  border: none;
  padding: 0.8em 2em;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #00315a;
}

footer {
  text-align: center;
  padding: 1.5em;
  background-color: #00427B;
  color: white;
}

/* Sección Misión Visión Valores */
#nosotros {
  background-color: #f9fafd;
  padding: 2em 1em;
}

.mvv-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}

.mvv-item {
  border: 1px solid #8FA2B0;
  border-radius: 10px;
  padding: 1.5em;
  flex: 1 1 250px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0,66,123,0.05);
}

.mvv-item h3 {
  color: #00427B;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 1.2em;
}

.mvv-item p {
  color: #00427B;
  text-align: justify;
  line-height: 1.5;
}

.mvv-item ul {
  color: #00427B;
  text-align: left;
  line-height: 1.6;
  padding-left: 1.2em;
  list-style-type: none;
  margin: 0;
}

.mvv-item ul li::before {
  content: "•";
  color: #FF9900;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.mvv-item ul li strong {
  font-weight: bold;
  color: #00427B;
}

/* Responsive */
@media (max-width: 768px) {
  nav .menu {
    display: none;
    flex-direction: column;
    gap: 1em;
    background-color: #00427B;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  section {
    padding: 1.5em 1em;
  }

  .main-image,
  .main-image.reduced {
    max-width: 90%;
  }

  form input, form textarea {
    width: 95%;
  }

  form button {
    width: 80%;
  }

  .mvv-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.4em;
  }

  .slogan {
    font-size: 0.95em;
  }

  nav a {
    font-size: 0.95em;
  }
}
