@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

:root {
  --primary: #1B2D6B;
  --primary-light: #2a4299;
  --primary-dark: #111d45;
  --accent: #F5C400;
  --accent-light: #FFD740;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-900: #0f172a;
  --gray-950: #060e1f;
  --glass-bg: rgba(27, 45, 107, 0.25);
  --glass-border: rgba(245, 196, 0, 0.18);
  --glass-blur: blur(16px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--gray-950);
  color: var(--white);
  overflow-x: hidden;
}

.text-accent { color: var(--accent); }

/* ─── HEADER ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), background 0.3s;
  background: rgba(6, 14, 31, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(245,196,0,0.12);
}

#header.hidden-header { transform: translateY(-100%); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  white-space: nowrap;
}

.logo-e {
  color: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-left: 0.35rem;
  align-self: center;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(245,196,0,0.08);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,196,0,0.3);
}

.btn-whatsapp:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,196,0,0.45);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.menu-btn:hover { background: rgba(255,255,255,0.08); }

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 31, 0.92) 0%,
    rgba(27, 45, 107, 0.75) 50%,
    rgba(6, 14, 31, 0.88) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes float {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-30px) scale(1); }
  80% { opacity: 0.3; transform: translateY(-120px) scale(0.7); }
  100% { opacity: 0; transform: translateY(-200px) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.logo-e-hero {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(245,196,0,0.6);
}

.hero-sub {
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 1.25rem auto 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 30px rgba(245,196,0,0.4);
}

.btn-cta:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,196,0,0.55);
}

.btn-outline {
  display: flex;
  align-items: center;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245,196,0,0.08);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 2s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ─── SECTIONS COMMON ─── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── SOBRE ─── */
.section-sobre {
  background: linear-gradient(180deg, var(--gray-950) 0%, #0a1428 100%);
  position: relative;
  overflow: hidden;
}

.section-sobre::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,45,107,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sobre-text p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 0.97rem;
}

.sobre-mvv {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mvv-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s, border-color 0.3s;
}

.mvv-card:hover {
  transform: translateX(6px);
  border-color: rgba(245,196,0,0.4);
}

.mvv-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(245,196,0,0.12);
  border: 1px solid rgba(245,196,0,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.mvv-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.mvv-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
  padding: 1rem;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  font-weight: 500;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(245,196,0,0.15);
  flex-shrink: 0;
}

/* ─── SERVIÇOS ─── */
.section-servicos {
  background: linear-gradient(180deg, #0a1428 0%, #0d1a3a 100%);
  position: relative;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,196,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 24px;
}

.servico-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245,196,0,0.45);
  box-shadow: 0 20px 60px rgba(27,45,107,0.5), 0 0 0 1px rgba(245,196,0,0.15);
}

.servico-card:hover::before { opacity: 1; }

.servico-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(245,196,0,0.1);
  border: 1.5px solid rgba(245,196,0,0.25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  transition: background 0.3s, transform 0.3s;
}

.servico-card:hover .servico-icon-wrap {
  background: rgba(245,196,0,0.2);
  transform: scale(1.08) rotate(-3deg);
}

.servico-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.servico-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.servico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.servico-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.2);
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* ─── GALERIA ─── */
.section-galeria {
  background: linear-gradient(180deg, #0d1a3a 0%, var(--gray-950) 100%);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galeria-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  animation-delay: var(--delay);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  display: block;
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,107,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.galeria-overlay span {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}

.galeria-item:hover img { transform: scale(1.08); }
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* ─── CONTATO ─── */
.section-contato {
  background: linear-gradient(180deg, var(--gray-950) 0%, #0a1428 100%);
  position: relative;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245,196,0,0.15);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}

.info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--accent);
}

.info-list li svg { flex-shrink: 0; margin-top: 0.1rem; }

.info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}

.info-value {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.btn-contato-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(245,196,0,0.3);
}

.btn-contato-whatsapp:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,196,0,0.45);
}

.contato-mapa {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 500px;
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.1);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid rgba(245,196,0,0.12);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-info {
  text-align: center;
}

.footer-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-links span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-privacy-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s;
}

.footer-privacy-btn:hover { color: var(--accent-light); }

/* ─── MODAL ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.hidden { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 31, 0.88);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: #0d1a3a;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.3s cubic-bezier(.4,0,.2,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(245,196,0,0.12);
}

.modal-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.modal-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 0.4rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
}

.modal-close:hover {
  background: rgba(245,196,0,0.15);
  color: var(--accent);
}

.modal-body {
  padding: 1.75rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.modal-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .contato-mapa { min-height: 350px; }
  .contato-mapa iframe { min-height: 350px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-whatsapp span { display: none; }
  .menu-btn { display: flex; margin-left: auto; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6,14,31,0.97);
    backdrop-filter: var(--glass-blur);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(245,196,0,0.12);
    z-index: 999;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .header-inner { gap: 1rem; }
  .servicos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stats-row { gap: 0; }
  .stat-divider { height: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { align-items: center; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-cta, .btn-outline { width: 100%; justify-content: center; }
  .stat-item { min-width: 80px; }
  .stats-row { gap: 0; }
}