/* ============================================================
   Super Squad Reviva — CSS Global
   Paleta Verde Bandeira + Light/Dark Mode
   Inspirado em Tailwind CSS Design Language
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Verde Bandeira e família */
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;

  /* Verde Bandeira do Brasil (institucional) */
  --brand-primary:   #009c3b;   /* Verde Bandeira */
  --brand-dark:      #007a2e;
  --brand-darker:    #005f24;
  --brand-light:     #00c44b;
  --brand-pale:      #d1fae5;
  --brand-accent:    #ffd700;   /* Amarelo ouro sutil */

  /* Neutros */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Tokens semânticos — Light Mode */
  --bg-base:        #ffffff;
  --bg-subtle:      #f8fafc;
  --bg-muted:       #f1f5f9;
  --bg-card:        #ffffff;
  --bg-overlay:     rgba(0,0,0,0.4);

  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;
  --text-inverse:   #ffffff;
  --text-brand:     #007a2e;

  --border-default: #e2e8f0;
  --border-subtle:  #f1f5f9;
  --border-brand:   #009c3b;

  --shadow-sm:   0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-brand: 0 4px 14px rgba(0,156,59,0.25);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --sidebar-width: 300px;
  --navbar-height: 68px;

  --transition: all 0.2s ease;
  --transition-slow: all 0.35s ease;
}

/* ---------- Dark Mode Tokens ---------- */
[data-theme="dark"] {
  --bg-base:        #0f172a;
  --bg-subtle:      #1e293b;
  --bg-muted:       #1e293b;
  --bg-card:        #1e293b;
  --bg-overlay:     rgba(0,0,0,0.6);

  --text-primary:   #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted:     #94a3b8;
  --text-inverse:   #0f172a;
  --text-brand:     #4ade80;

  --border-default: #334155;
  --border-subtle:  #1e293b;
  --border-brand:   #22c55e;

  --shadow-sm:   0 1px 2px 0 rgba(0,0,0,0.3);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -2px rgba(0,0,0,0.3);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.4);
  --shadow-brand: 0 4px 14px rgba(34,197,94,0.2);

  --brand-pale:  #052e16;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-muted); }
::-webkit-scrollbar-thumb { background: var(--border-default); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-primary); }

/* ---------- Typography Utilities ---------- */
.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-6xl  { font-size: 3.75rem; }

.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-brand  { color: var(--brand-primary); }

/* ---------- Layout Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1.5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }

.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,156,59,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
}
.btn-ghost:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-icon {
  width: 2.5rem; height: 2.5rem; padding: 0;
  border-radius: var(--radius-md);
  background: var(--bg-muted);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}
.btn-icon:hover {
  background: var(--brand-pale);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); }

.card-body { padding: 1.5rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-green {
  background: var(--brand-pale);
  color: var(--brand-dark);
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-muted);
}

/* ---------- Form Elements ---------- */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); }

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0,156,59,0.12);
}
.form-input::placeholder { color: var(--text-muted); }

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-default);
}

/* ---------- Avatar ---------- */
.avatar {
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--brand-primary);
}
.avatar-sm  { width: 2rem; height: 2rem; }
.avatar-md  { width: 2.75rem; height: 2.75rem; }
.avatar-lg  { width: 4rem; height: 4rem; }
.avatar-xl  { width: 5.5rem; height: 5.5rem; border-width: 3px; }
.avatar-2xl { width: 8rem; height: 8rem; border-width: 4px; }

/* ---------- Status Dot ---------- */
.status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}
.status-online  { background: #22c55e; }
.status-busy    { background: #f59e0b; }
.status-offline { background: var(--slate-400); }

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #00c44b 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section utilities ---------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: var(--transition-slow);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .navbar.scrolled {
  background: rgba(15,23,42,0.92);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar-brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.navbar-brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.navbar-link:hover {
  color: var(--brand-primary);
  background: var(--brand-pale);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
  padding-top: var(--navbar-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--brand-primary);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #ffd700;
  bottom: -100px; left: -100px;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: var(--brand-light);
  top: 40%; left: 30%;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-pale);
  color: var(--brand-dark);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0,156,59,0.2);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-default);
}
.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image-card {
  position: relative;
  background: linear-gradient(135deg, var(--green-50) 0%, #fff 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: 100%;
}
[data-theme="dark"] .hero-image-card {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--slate-800) 100%);
}
.hero-image {
  width: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-default);
}
[data-theme="dark"] .hero-image-badge {
  background: rgba(30,41,59,0.95);
}
.hero-image-badge-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--brand-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-floating-card {
  position: absolute;
  top: 1.5rem; right: -1rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.hero-floating-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

/* ---------- Features / Squad Section ---------- */
.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.squad-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.squad-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-light));
  opacity: 0;
  transition: var(--transition);
}
.squad-card:hover::before { opacity: 1; }
.squad-card:hover {
  border-color: rgba(0,156,59,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.squad-card-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: var(--brand-pale);
  color: var(--brand-primary);
}
.squad-card-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.squad-card-role { font-size: 0.8rem; color: var(--brand-primary); font-weight: 600; margin: 0.2rem 0 0.75rem; }
.squad-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Projects Section ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
}
.project-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.project-card-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.project-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.project-card-icon {
  width: 2.75rem; height: 2.75rem;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.project-card-title { font-size: 1.05rem; font-weight: 700; }
.project-card-body { padding: 1.5rem; }
.project-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  background: var(--brand-pale);
  color: var(--brand-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 3rem 0 2rem;
}
[data-theme="dark"] .footer {
  background: var(--slate-950);
}
.footer-brand { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.82rem; color: var(--slate-500); }
.footer-link {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: var(--transition);
  display: block;
  padding: 0.15rem 0;
}
.footer-link:hover { color: var(--brand-light); }
.footer-divider { border: none; border-top: 1px solid var(--slate-800); margin: 2rem 0 1.5rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition);
}
.mobile-nav {
  position: fixed;
  top: var(--navbar-height);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-default);
  padding: 1rem 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .navbar-link { padding: 0.75rem 1rem; }

/* ---------- Toggle Theme Button ---------- */
.theme-toggle {
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-muted);
  border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 1rem;
}
.theme-toggle:hover {
  background: var(--brand-pale);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-description { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrapper { justify-content: center; }
  .hero-image-card { max-width: 380px; }
  .hero-floating-card { right: 0; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  :root { --navbar-height: 60px; }
  .hero { padding-top: 60px; }
  .hero-title { font-size: 2.25rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-image-card { max-width: 300px; }
  .hero-floating-card { display: none; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-description { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
  .squad-grid, .projects-grid { grid-template-columns: 1fr; }
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer > .container > div:first-child {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer > .container > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
