/* ── OVS Portal — Stylesheet principal ──────────────────────────────────────── */
/* Paleta: azul-marinho #0d1b3e + dourado #b8972a + creme #f7f4ee               */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:        #0d1b3e;
  --navy-dark:   #080f24;
  --navy-mid:    #132040;
  --gold:        #b8972a;
  --gold-light:  #d4af50;
  --gold-pale:   #e8d48a;
  --cream:       #f7f4ee;
  --cream-dark:  #ede9df;
  --white:       #ffffff;
  --text:        #1a1a2e;
  --muted:       #5a6070;
  --border:      #ddd8cc;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  --max-w: 1100px;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(13,27,62,.08);
  --shadow-lg: 0 8px 40px rgba(13,27,62,.14);
}

/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utilitários ─────────────────────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ── Navegação ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(184,151,42,.15);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-brand-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.25; }
.nav-brand-title {
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 500;
  color: var(--white);
}
.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 300;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.nav-links {
  display: flex; gap: .25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: .45rem .85rem;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.72);
  border-radius: var(--radius);
  transition: color .18s, background .18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-links a.active { color: var(--gold-pale); }
.nav-btn {
  display: flex; align-items: center; gap: .45rem;
  padding: .5rem 1.1rem;
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-size: 13px; font-weight: 500;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background .18s;
}
.nav-btn:hover { background: var(--gold-light) !important; }
.nav-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* Menu hamburger mobile */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: .4rem;
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 5rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  border: 1px solid rgba(184,151,42,.1);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -40px; right: 20px;
  width: 320px; height: 320px;
  border: 1px solid rgba(184,151,42,.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-desc {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.6rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 13.5px; font-weight: 500;
  border-radius: var(--radius);
  transition: background .18s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.6rem;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.9);
  font-size: 13.5px; font-weight: 400;
  border-radius: var(--radius);
  transition: border-color .18s, background .18s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }

/* ── Barra de estatísticas ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.4rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-label {
  font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted);
}

/* ── Secções genéricas ───────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }

.section-header { margin-bottom: 3rem; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 10.5px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-label::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--gold);
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}
.section-navy h2 { color: var(--white); }
.section-intro {
  font-size: 15px; font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-top: .75rem;
}
.section-navy .section-intro { color: rgba(255,255,255,.6); }

/* ── Cards de destaque ───────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-icon {
  width: 42px; height: 42px;
  background: rgba(13,27,62,.05);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem;
}
.feature-card p {
  font-size: 13.5px; font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Plano curricular ────────────────────────────────────────────────────────── */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.curriculum-sem {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.curriculum-sem-header {
  background: var(--navy);
  padding: .85rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.curriculum-sem-header h3 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold-pale);
}
.curriculum-sem-header span {
  font-size: 11px; color: rgba(255,255,255,.45);
}
.curriculum-uc {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
  gap: .75rem;
}
.curriculum-uc:last-child { border-bottom: none; }
.curriculum-uc-name {
  font-size: 13.5px; font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}
.curriculum-uc-ects {
  font-size: 11.5px; font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  background: rgba(184,151,42,.08);
  padding: .2rem .55rem;
  border-radius: 20px;
  flex-shrink: 0;
}

/* ── Docentes ────────────────────────────────────────────────────────────────── */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.faculty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow .2s;
}
.faculty-card:hover { box-shadow: var(--shadow); }
.faculty-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--gold);
  letter-spacing: .5px;
}
.faculty-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400;
  color: var(--navy);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.faculty-card p {
  font-size: 12px; font-weight: 300;
  color: var(--muted);
}
.faculty-card .faculty-tag {
  display: inline-block;
  margin-top: .6rem;
  font-size: 11px;
  color: var(--gold);
  background: rgba(184,151,42,.08);
  padding: .2rem .6rem;
  border-radius: 20px;
}

/* ── Notícias / destaques ────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-img svg { width: 40px; height: 40px; stroke: rgba(255,255,255,.15); fill: none; stroke-width: 1; }
.news-card-body { padding: 1.25rem; }
.news-card-date {
  font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: .5rem;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: .5rem;
}
.news-card p {
  font-size: 13px; font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Timeline de candidaturas ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,151,42,.15));
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2rem;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-date {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: .3rem;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400;
  color: var(--navy);
  margin-bottom: .3rem;
}
.timeline-item p {
  font-size: 13.5px; font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Requisitos de admissão ───────────────────────────────────────────────────── */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.req-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.req-card h3 {
  font-size: 13.5px; font-weight: 500;
  color: var(--navy);
  margin-bottom: .4rem;
}
.req-card p {
  font-size: 13px; font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Mapa e contactos ────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-item {
  display: flex; gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(13,27,62,.06);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.contact-item h3 {
  font-size: 12.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--muted);
  margin-bottom: .3rem;
}
.contact-item p, .contact-item a {
  font-size: 14px; font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }
.map-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  color: var(--muted);
}
.map-placeholder svg { width: 36px; height: 36px; stroke: var(--border); fill: none; stroke-width: 1.5; }
.map-placeholder p { font-size: 13px; }

/* ── Formulário de contacto ───────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .18s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-form {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 2rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  border: none; border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s;
  align-self: flex-start;
}
.btn-form:hover { background: var(--navy-mid); }

/* ── CTA Banner ──────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .6rem;
}
.cta-banner p {
  font-size: 14.5px; font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-bottom: 2rem;
  max-width: 440px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
}
.footer-brand-mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold-pale);
  margin-bottom: .9rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.45);
  transition: color .18s;
}
.footer-col ul a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.28);
}
.footer-portal {
  font-size: 12px; font-weight: 400;
  color: var(--gold);
  display: flex; align-items: center; gap: .4rem;
}
.footer-portal:hover { color: var(--gold-light); }
.footer-portal svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── Alerta / Mensagem ───────────────────────────────────────────────────────── */
.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin-bottom: 1.25rem;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error   { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd9; }
.alert-info    { background: rgba(13,27,62,.05); color: var(--navy); border: 1px solid var(--border); }

/* ── Page header interno ─────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 0 3rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,151,42,.3), transparent);
}
.page-breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.page-breadcrumb a { color: rgba(255,255,255,.4); }
.page-breadcrumb a:hover { color: rgba(255,255,255,.7); }
.page-breadcrumb span { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.8;
}

/* ── Tabela ──────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px;
}
thead th {
  padding: .7rem 1rem;
  background: var(--navy);
  color: var(--gold-pale);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase; letter-spacing: .8px;
  text-align: left;
}
tbody td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--cream); }

/* ── Responsivo ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 99;
  }
  .nav-links.open + .nav-btn { display: flex; margin: 0 1rem 1rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ── Animações de entrada ────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .55s ease both; }
.fade-up-2 { animation: fadeUp .55s .1s ease both; }
.fade-up-3 { animation: fadeUp .55s .2s ease both; }
.fade-up-4 { animation: fadeUp .55s .3s ease both; }
