/* =========================================================
   CTP de Purral – Estilos Principales
   Colores institucionales: Azul #1a4b8c | Verde #2e7d32
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a4b8c;
  --blue-dk: #0d2f5e;
  --blue-lt: #e8f0fb;
  --green:   #2e7d32;
  --green-lt:#e8f5e9;
  --orange:  #e65100;
  --yellow:  #f9a825;
  --gray:    #f0f4f8;
  --text:    #1e2d3d;
  --muted:   #5a6a7a;
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--blue-dk);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 0.4rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,75,140,0.13);
  transition: box-shadow 0.3s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-area { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.logo { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; border: 3px solid var(--blue); box-shadow: 0 2px 10px rgba(26,75,140,0.2); }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--blue); line-height: 1.2; }
.logo-sub { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.03em; }

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active {
  background: var(--blue-lt);
  color: var(--blue);
}
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--blue); }

/* ---------- PAGES ---------- */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(150deg, var(--blue-dk) 0%, var(--blue) 50%, #1b5e20 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem 6rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  color: white;
}
.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--yellow); }
.hero-subtitle { font-size: 1.1rem; opacity: 0.88; margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { display: block; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,75,140,0.3); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-white { background: white; color: var(--blue); border: none; padding: 0.85rem 1.8rem; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.25s; }
.btn-white:hover { background: var(--yellow); }
.btn-white-outline { background: transparent; color: white; border: 2px solid white; padding: 0.85rem 1.8rem; border-radius: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.25s; }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }
.full-width { width: 100%; }

/* ---------- STATS ---------- */
.stats-bar {
  background: var(--white);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.stat {
  flex: 1;
  max-width: 220px;
  padding: 1.8rem 1rem;
  text-align: center;
  border-right: 1px solid #eee;
  transition: background 0.2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--blue-lt); }
.stat-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--blue); }
.stat-label { font-size: 0.83rem; color: var(--muted); font-weight: 500; }

/* ---------- SECTIONS ---------- */
.section { padding: 4rem 1.5rem; }
.section.bg-light { background: var(--gray); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--blue);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.news-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card.featured { grid-column: span 2; }
.news-badge { position: absolute; top: 1rem; left: 1rem; background: var(--yellow); color: var(--text); font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 20px; z-index: 1; }
.news-img { height: 160px; display: flex; align-items: center; justify-content: center; }
.news-card.featured .news-img { height: 200px; }
.news-body { padding: 1.3rem; }
.news-date { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.news-body h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; margin: 0.4rem 0 0.6rem; color: var(--text); }
.news-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.read-more { color: var(--blue); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 0.8rem; }
.read-more:hover { color: var(--green); }

/* ---------- PILLARS ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.pillar { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s; border-top: 4px solid var(--blue); }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green); }
.pillar-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.pillar h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0.5rem; color: var(--blue); }
.pillar p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ---------- CTA BOLSA ---------- */
.cta-bolsa { background: linear-gradient(135deg, var(--blue), var(--green)); padding: 3.5rem 1.5rem; color: white; }
.cta-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.8rem; margin-bottom: 0.5rem; }
.cta-content p { opacity: 0.88; max-width: 500px; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- PAGE HERO ---------- */
.page-hero { padding: 4rem 2rem; color: white; text-align: center; }
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.88; font-size: 1.1rem; }

/* ---------- ABOUT PAGE ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--blue); margin-bottom: 1rem; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-card-group { display: flex; flex-direction: column; gap: 1rem; }
.about-card { border-radius: var(--radius); padding: 1.5rem; }
.about-card.green { background: var(--green-lt); border-left: 5px solid var(--green); }
.about-card.blue { background: var(--blue-lt); border-left: 5px solid var(--blue); }
.about-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.about-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.2rem; }
.value-item { background: white; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.25s; }
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-item span { font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.value-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.value-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.team-card { background: white; border-radius: var(--radius); padding: 2rem 1rem; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1rem; }
.team-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text); }
.team-card span { font-size: 0.82rem; color: var(--muted); }

/* ---------- SPECIALTY PAGE ---------- */
.specialty-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.55rem 1.3rem; border-radius: 30px; border: 2px solid #ddd; background: white; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
.specialty-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.specialty-card { background: white; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: all 0.3s; cursor: default; }
.specialty-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.specialty-card.hidden { display: none; }
.spec-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1rem; }
.specialty-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.specialty-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.spec-info { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.spec-info span { font-size: 0.78rem; background: var(--gray); padding: 0.25rem 0.7rem; border-radius: 20px; font-weight: 600; color: var(--muted); }

/* ---------- BOLSA PAGE ---------- */
.bolsa-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.bolsa-card { background: white; border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s; cursor: pointer; border: 2px solid transparent; }
.bolsa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.bolsa-icon { font-size: 3rem; margin-bottom: 1rem; }
.bolsa-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 0.7rem; color: var(--text); }
.bolsa-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.5rem; }

.jobs-search { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.jobs-search input, .jobs-search select {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border 0.2s;
}
.jobs-search input:focus, .jobs-search select:focus { border-color: var(--blue); }

.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-item {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s;
  border-left: 5px solid var(--blue);
}
.job-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.job-icon { font-size: 2.5rem; min-width: 50px; text-align: center; }
.job-info { flex: 1; }
.job-info h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 0.2rem; }
.job-info .company { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-tag { font-size: 0.75rem; padding: 0.2rem 0.7rem; border-radius: 20px; font-weight: 600; }
.tag-blue { background: var(--blue-lt); color: var(--blue); }
.tag-green { background: var(--green-lt); color: var(--green); }
.tag-orange { background: #fff3e0; color: var(--orange); }
.job-apply { min-width: 100px; }

/* ---------- CONTACT PAGE ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-bottom: 2rem; }
.contact-info h2, .contact-form-box h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--blue); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-icon { width: 44px; height: 44px; background: var(--blue-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.5; }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn { padding: 0.5rem 1.1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; text-decoration: none; font-family: 'Montserrat', sans-serif; transition: opacity 0.2s; }
.social-btn:hover { opacity: 0.85; }
.fb { background: #1877f2; color: white; }
.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.yt { background: #ff0000; color: white; }

.contact-form-box { background: var(--gray); border-radius: var(--radius); padding: 2rem; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ---------- FORMS ---------- */
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border 0.2s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); margin: 1rem 0; cursor: pointer; }
.checkbox-label a { color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- MODALS ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }
.modal {
  background: white;
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  margin: auto;
}
.modal-small { max-width: 420px; }
.modal-header {
  padding: 2rem;
  color: white;
  text-align: center;
}
.modal-header.blue { background: linear-gradient(135deg, var(--blue), var(--blue-dk)); }
.modal-header.green { background: linear-gradient(135deg, var(--green), #1b5e20); }
.modal-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; border: 3px solid rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.modal-header h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; margin-bottom: 0.3rem; }
.modal-header p { opacity: 0.88; font-size: 0.9rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border: none; border-radius: 50%; color: white;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal { position: relative; }
.modal-form { padding: 1.8rem; max-height: 70vh; overflow-y: auto; }
.modal-footer-text { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.modal-footer-text a { color: var(--blue); font-weight: 600; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--green); color: white;
  padding: 1rem 1.5rem; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---------- FOOTER ---------- */
.footer { background: var(--blue-dk); color: rgba(255,255,255,0.85); padding: 3rem 2rem 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: flex-start; gap: 0.9rem; }
.footer-logo { width: 55px; height: 55px; object-fit: contain; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); flex-shrink: 0; }
.footer-brand strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0.3rem; color: white; }
.footer-brand p { font-size: 0.82rem; line-height: 1.5; }
.footer-links h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: white; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-links a, .footer-links span { display: block; font-size: 0.84rem; margin-bottom: 0.5rem; color: rgba(255,255,255,0.75); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.2rem 0; text-align: center; font-size: 0.8rem; opacity: 0.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 1; }
}
@media (max-width: 700px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: var(--shadow); padding: 1rem; gap: 0.2rem; }
  .nav.open { display: flex; }
  .hamburger { display: block; }
  .header-inner { position: relative; }
  .stats-bar { flex-wrap: wrap; }
  .stat { min-width: 40%; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-content { text-align: center; }
  .topbar { justify-content: center; gap: 1rem; font-size: 0.72rem; }
  .hero { min-height: 70vh; }
}
@media (max-width: 480px) {
  .bolsa-options { grid-template-columns: 1fr; }
  .modal { margin: 0; border-radius: 16px 16px 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}
