/*!**********************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/styles.css?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************/
/* ================================
   RESET GENERAL
================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f9;
  overflow-x: hidden;
}

/* ================================
   HEADER / NAVBAR
================================ */
.main-header {
  width: 100%;
  background-color: #0b2a4a;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.nav-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

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

.nav-container a.active {
  text-decoration: underline;
}

/* ================================
   CONTENIDO PRINCIPAL
================================ */
.main-content {
  padding-top: 20px;
}

/* ================================
   LOGO GLOBAL (si existe en app.html)
================================ */
.logo-container {
  display: flex;
  justify-content: center;
  margin: 20px 0 15px;
}

.main-logo {
  width: 120px;
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* ================================
   LOGO DENTRO DE LAS PÁGINAS
================================ */
.logo {
  display: block;
  margin: 0 auto 20px auto;
  height: 60px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

/* ================================
   PÁGINAS INTERNAS
================================ */
.page-content {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #f4f6f9;
}

.content-box {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.intro {
  max-width: 750px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
  color: #333;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
}

.contact-info {
  margin-top: 25px;
  font-size: 16px;
}

/* ================================
   FOOTER
================================ */
.footer {
  background-color: #0b2a4a;
  color: white;
  text-align: center;
  padding: 15px 0;
  width: 100%;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .content-box {
    padding: 30px 20px;
  }

  .main-logo {
    width: 90px;
  }

  .logo {
    height: 50px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}


/*# sourceMappingURL=styles.css.map*/