/* ========================================
   INDEPAR - Chrome del sitio (nav + footer) para páginas de molde standalone
   Extraído de styles.v2.css (secciones NAVIGATION, FOOTER, body offset y
   sus reglas responsive) para las calculadoras: solo selectores de clase
   más el offset del body — cero colisión con los estilos propios del molde.
   Única adaptación: los font-stacks usan los fallbacks del molde
   (Merriweather,Georgia,serif · Inter,-apple-system,...) porque estas
   páginas no cargan webfonts.
   Si el nav o el footer cambian en styles.v2.css, regenera este archivo.
   ======================================== */

:root {
  --navy: #1B2A5E;
  --navy-dark: #0F1B3D;
  --gold: #B8943E;
  --gold-light: #D4B15A;
  --bg-alt: #F4F5FA;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
  --max-width: 1140px;
}

/* Enlaces del chrome (equivalente scoped del a{} global de styles.v2.css) */
.nav a,
.footer a {
  color: inherit;
  text-decoration: none;
}

.nav img,
.footer img {
  max-width: 100%;
  display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.nav__brand img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Enlace destacado del journey (IND-0022) */
.nav__link--featured {
  color: var(--navy);
  font-weight: 600;
}

.nav__link--featured::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.45rem;
  transform: translateY(-1px);
}

.nav__mobile a.nav__link--featured-mobile {
  color: var(--navy);
  font-weight: 600;
}

.nav__mobile a.nav__link--featured-mobile::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 1px;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
}

.nav__mobile.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--bg-alt);
  text-decoration: none;
}

.nav__mobile a:hover,
.nav__mobile a.nav__link--active {
  color: var(--gold);
}

/* Hamburger active state */
.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Body offset for fixed nav */
body {
  padding-top: 72px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 3px solid var(--gold);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__brand img {
  height: 48px;
  width: auto;
}

.footer__brand span {
  font-family: Merriweather, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.footer__links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   RESPONSIVE (solo reglas del chrome)
   ======================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
