* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;  /* Usando Montserrat en todo el sitio */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: linear-gradient(135deg, #e36a2e 0%, #c95a27 25%, #164b6f 65%, #0f3a5a 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.img-logo {
  width: 100px;
}

.logo-text {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Beige suave */
.logo-text .beige {
  color: #f2e6d8;
}

/* Naranja del logo */
.logo-text .orange {
  color: #164b6f;
}

/* Ocultar frase en móvil */
@media (max-width: 768px) {
  .logo-text {
    display: none;
  }
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #e36a2e;
  bottom: -6px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-donar {
  background-color: #e36a2e;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.btn-donar:hover {
  background-color: #ff8448;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0f3a5a;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* ===== SECCIÓN NOSOTROS ===== */
.about-hero {
  padding: 80px 20px;
  background-color: #0f3a5a;  /* Fondo oscuro del hero */
  color: #ffffff;
  text-align: center;
}

.about-hero h2 {
  font-size: 36px;
}

.about-hero p {
  font-size: 18px;
  font-style: italic;
}

.about-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 20px;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h3 {
  font-size: 28px;
  color: #0f3a5a;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Sección Misión y Visión */
.mission-vision-section {
  padding: 40px 20px;
  background-color: #f9fafb;
}

.mv-card {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mv-card h4 {
  font-size: 24px;
  color: #0f3a5a;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
}

/* ===== FOOTER ===== */

footer {
  background-color: #1e293b;  /* Fondo oscuro pero no tan intenso */
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;  /* Fuente coherente */
  border-top: 4px solid #e36a2e;  /* Línea sutil naranja en el borde superior */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  padding: 10px;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.social-links li {
  display: inline-block;
  margin: 0 15px;
}

.social-links a {
  color: #f9f9f9;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #e36a2e;  /* Hover en naranja suave */
}

.footer-quote {
  font-style: italic;
  font-size: 18px;
  color: #f2e6d8;
  margin: 20px 0;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li {
  display: inline-block;
  margin: 0 15px;
}

.legal-links a {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.legal-links a:hover {
  color: #e36a2e;
}

footer p {
  font-size: 16px;
  color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    margin-bottom: 20px;
  }

  .social-links a {
    margin: 0 10px;
    font-size: 18px;
  }

  .legal-links a {
    font-size: 14px;
  }
}




