/* =============================================================
   ALLEGRO HEALTH FITNESS — Premium CSS
   Hugo / Blowfish theme override
   by descomplica-te.pt
   ============================================================= */

/* ── Design Tokens ── */
:root {
  --a-gold:         #C9A84C;
  --a-gold-light:   #E8D08A;
  --a-gold-pale:    rgba(201,168,76,0.15);
  --a-gold-glow:    rgba(201,168,76,0.30);
  --a-dark:         #0a0906;
  --a-dark-2:       #120f09;
  --a-dark-3:       #1c1810;
  --a-cream:        #F5EDD8;
  --a-cream-muted:  rgba(245,237,216,0.72);
  --a-text:         rgba(245,237,216,0.90);
  --a-text-muted:   rgba(245,237,216,0.58);

  --a-font-impact:  'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --a-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --a-font-body:    'Inter', system-ui, sans-serif;

  --a-radius:       8px;
  --a-radius-lg:    14px;
  --a-radius-pill:  999px;

  --a-shadow:       0 24px 64px rgba(0,0,0,0.70);
  --a-shadow-gold:  0 8px 36px rgba(201,168,76,0.28);
  --a-trans:        0.35s cubic-bezier(0.4,0,0.2,1);

  --scene-dim:   0.22;
  --scene-blur:  0px;
  --scene-scale: 1.03;
  --scene-y:     0px;
}

/* ── Base — anular Blowfish/Tailwind ── */
body {
  height: auto !important;
  min-height: 100svh !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  font-family: var(--a-font-body) !important;
  background: var(--a-dark) !important;
  color: var(--a-text) !important;
}

body > .relative.flex.flex-col.grow,
body > div[class*="relative"] {
  max-width: 100% !important;
  padding: 0 !important;
}

h1, h2, h3, h4 {
  font-family: var(--a-font-display) !important;
  color: var(--a-cream) !important;
}

/* Barra dourada no topo */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.25) 20%,
    var(--a-gold) 40%,
    var(--a-gold-light) 50%,
    var(--a-gold) 60%,
    rgba(201,168,76,0.25) 80%,
    transparent 100%);
  z-index: 200;
}

/* ── Navegação pill glass ── */
.main-menu {
  position: sticky;
  top: 14px;
  z-index: 80;
  margin: 14px auto 10px;
  padding: 10px 18px;
  border-radius: var(--a-radius-pill);
  background: rgba(10,9,6,0.94) !important;
  border: 1px solid rgba(201,168,76,0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.05);
}

html.allegro-scrolled .main-menu {
  background: rgba(8,7,5,0.98) !important;
  border-color: rgba(201,168,76,0.28);
}

.main-menu nav a {
  font-family: var(--a-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,237,216,0.85) !important;
  padding: 8px 14px;
  border-radius: var(--a-radius-pill);
  transition: var(--a-trans);
}

.main-menu nav a:hover {
  color: var(--a-gold-light) !important;
  background: rgba(201,168,76,0.09);
}

/* Nome da marca no menu */
.main-menu > a {
  font-family: var(--a-font-display) !important;
  font-size: 0.88rem;
  letter-spacing: 0.10em;
  color: var(--a-gold) !important;
  font-style: italic;
}

@media (min-width: 1024px) {
  .main-menu { max-width: 1180px; }
}

/* Dropdown */
.menuhide > div {
  background: rgba(10,9,6,0.98) !important;
  border: 1px solid rgba(201,168,76,0.18) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.75) !important;
  border-radius: var(--a-radius) !important;
  backdrop-filter: none !important;
}

.menuhide a {
  color: rgba(245,237,216,0.82) !important;
}

.menuhide a:hover {
  background: rgba(201,168,76,0.10) !important;
  color: var(--a-gold-light) !important;
  border-radius: 0.5rem !important;
}

/* ── Fundo parallax fixo ── */
.allegro-scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.allegro-scene-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center 25%;
  transform: scale(var(--scene-scale, 1.03)) translateY(var(--scene-y, 0px));
  filter: brightness(calc(1 - var(--scene-dim, 0.22))) blur(var(--scene-blur, 0px));
  transition: filter 0.08s linear;
  background-color: var(--a-dark-2);
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(60,40,10,0.55), transparent),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(30,20,5,0.40), transparent);
}

.allegro-scene-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,9,6,0.38) 0%,
    rgba(10,9,6,0.08) 30%,
    rgba(10,9,6,0.52) 68%,
    rgba(10,9,6,0.96) 100%
  );
}

/* ── Partículas douradas ── */
.allegro-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.allegro-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--a-gold);
  opacity: 0;
  animation: aParticleFloat var(--dur, 9s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes aParticleFloat {
  0%   { opacity: 0;                    transform: translateY(0) scale(0.6); }
  15%  { opacity: var(--max-op, 0.4); }
  85%  { opacity: var(--max-op, 0.4); }
  100% { opacity: 0;                    transform: translateY(-105vh) scale(1.3); }
}

/* ── Logo hero ── */
.a-hero-logo {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: aFadeUp 0.8s 0.2s ease forwards;
}

.a-hero-logo img {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.50)) brightness(1.05);
}

/* ── HERO ── */
.allegro-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.allegro-hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center 20%;
  background-color: var(--a-dark-2);
  background-image:
    radial-gradient(ellipse 90% 70% at 65% 35%, rgba(60,40,10,0.75), transparent),
    radial-gradient(ellipse 60% 80% at 15% 75%, rgba(25,15,5,0.85), transparent),
    linear-gradient(160deg, #0e0b05 0%, #1a1408 40%, #120f06 70%, #080705 100%);
  animation: aKenBurns 24s ease-in-out infinite alternate;
}

.allegro-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,6,0.12) 0%,
    rgba(10,9,6,0.18) 35%,
    rgba(10,9,6,0.70) 72%,
    rgba(10,9,6,0.97) 100%
  );
}

@keyframes aKenBurns {
  0%   { transform: scale(1.03) translate(0, 0); }
  33%  { transform: scale(1.07) translate(-0.6%, -0.4%); }
  66%  { transform: scale(1.05) translate(0.4%, -0.8%); }
  100% { transform: scale(1.04) translate(-0.3%, -0.2%); }
}

.allegro-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.allegro-hero-title {
  font-family: var(--a-font-impact) !important;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--a-cream) !important;
  margin: 0 0 1.2rem 0;
  opacity: 0;
  animation: aFadeUp 0.9s 0.5s ease forwards;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.allegro-hero-title em {
  font-style: normal;
  color: var(--a-gold);
  -webkit-text-fill-color: var(--a-gold);
}

.allegro-hero-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: aFadeUp 0.8s 0.62s ease forwards;
  width: 120px;
}

.allegro-hero-divider::before,
.allegro-hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--a-gold), transparent);
}

.allegro-hero-divider::after {
  background: linear-gradient(to left, transparent, transparent);
  display: none;
}

/* Ornament diamond */
.allegro-hero-divider-diamond {
  width: 5px;
  height: 5px;
  background: var(--a-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.allegro-hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--a-cream-muted);
  font-weight: 300;
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: aFadeUp 0.9s 0.75s ease forwards;
  font-style: italic;
}

.allegro-hero-quote {
  font-family: var(--a-font-display);
  font-style: italic;
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  color: rgba(201,168,76,0.85);
  border-left: 1px solid rgba(201,168,76,0.40);
  padding-left: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: aFadeUp 0.9s 0.88s ease forwards;
  max-width: 48ch;
  letter-spacing: 0.01em;
}

.allegro-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: aFadeUp 0.9s 0.95s ease forwards;
}

/* Urgência — badge de vagas limitadas */
.a-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.40);
  border-radius: 4px;
  padding: 0.42rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--a-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: aFadeUp 0.8s 0.18s ease forwards;
}

.a-urgency-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--a-gold);
  animation: aPulse 1.8s ease-in-out infinite;
}

@keyframes aPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.6); }
}

/* Scroll hint */
.allegro-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0;
  animation: aFadeIn 1s 1.5s ease forwards;
}

.allegro-scroll-hint span {
  font-family: var(--a-font-body);
  font-size: 0.60rem;
  letter-spacing: 0.26em;
  color: rgba(201,168,76,0.65);
  text-transform: uppercase;
}

.allegro-scroll-hint-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--a-gold), transparent);
  animation: aScrollPulse 2.2s ease-in-out infinite;
}

@keyframes aScrollPulse {
  0%, 100% { opacity: 0.20; transform: scaleY(0.6); }
  50%       { opacity: 0.9;  transform: scaleY(1); }
}

/* ── Botões ── */
.a-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.82rem 1.8rem;
  border-radius: var(--a-radius-pill);
  font-family: var(--a-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: var(--a-trans);
  cursor: pointer;
  border: none;
}

.a-btn-primary {
  background: var(--a-gold);
  color: #0a0906;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.80rem;
}

.a-btn-primary:hover {
  background: var(--a-gold-light);
  box-shadow: var(--a-shadow-gold);
  transform: translateY(-2px);
  color: #0a0906;
}

.a-btn-ghost {
  background: transparent;
  color: var(--a-cream);
  border: 1px solid rgba(245,237,216,0.28);
  font-size: 0.80rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.a-btn-ghost:hover {
  background: rgba(245,237,216,0.06);
  border-color: var(--a-gold);
  color: var(--a-gold-light);
  transform: translateY(-2px);
}

/* ── Secções ── */
.a-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
}

.a-section-head {
  margin-bottom: 3.5rem;
}

.a-eyebrow {
  font-family: var(--a-font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--a-gold);
  margin-bottom: 0.8rem;
  display: block;
}

.a-section-title {
  font-family: var(--a-font-display) !important;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--a-cream) !important;
  margin: 0 0 1rem 0;
  line-height: 1.10;
  letter-spacing: -0.02em;
}

.a-section-title em {
  font-style: italic;
  color: var(--a-gold-light);
  -webkit-text-fill-color: var(--a-gold-light);
}

.a-section-sub {
  font-size: 1.08rem;
  color: var(--a-text-muted);
  max-width: 58ch;
  line-height: 1.80;
  margin: 0;
  font-style: italic;
}

/* Divisor ornamental */
.a-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.2rem 0;
  width: fit-content;
}

.a-divider::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--a-gold));
}

.a-divider::after {
  content: '◆';
  font-size: 0.45rem;
  color: var(--a-gold);
  line-height: 1;
}

/* Wrappers full-bleed */
.a-section-dark {
  background: rgba(10,9,6,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.a-section-darker {
  background: rgba(7,6,4,0.96);
}

/* ── Cards de Serviços ── */
.a-servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.a-servico-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: var(--a-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201,168,76,0.10);
  transition: var(--a-trans);
  background: var(--a-dark-2);
}

.a-servico-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--a-shadow), var(--a-shadow-gold);
}

.a-servico-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.a-servico-card:hover .a-servico-card-img {
  transform: scale(1.07);
}

.a-servico-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,6,0.08) 0%,
    rgba(10,9,6,0.28) 35%,
    rgba(10,9,6,0.92) 100%
  );
}

.a-servico-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}

.a-servico-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.30);
  filter: sepia(0.25) contrast(1.05);
}

.a-servico-card-title {
  font-family: var(--a-font-impact) !important;
  font-size: 2rem;
  font-weight: 400;
  color: var(--a-cream) !important;
  margin: 0 0 0.35rem 0;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.a-servico-card-sub {
  font-size: 0.88rem;
  color: var(--a-gold-light);
  letter-spacing: 0.04em;
  opacity: 0.85;
  font-style: italic;
}

/* ── Sobre (layout dividido) ── */
.a-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .a-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.a-about-img-wrap {
  position: relative;
  border-radius: var(--a-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--a-dark-2);
}

.a-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Borda e canto dourado */
.a-about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201,168,76,0.20);
  pointer-events: none;
}

.a-about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 56px; height: 56px;
  border-top: 1px solid var(--a-gold);
  border-left: 1px solid var(--a-gold);
  border-radius: var(--a-radius-lg) 0 0 0;
  z-index: 2;
}

.a-about-text p {
  font-size: 1.08rem;
  color: var(--a-text-muted);
  line-height: 1.88;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Estatísticas */
.a-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.a-stat { display: flex; flex-direction: column; gap: 0.2rem; }

.a-stat-num {
  font-family: var(--a-font-impact);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.a-stat-label {
  font-size: 0.72rem;
  color: var(--a-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Testemunhos ── */
.a-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.a-testimonial {
  background: rgba(18,15,9,0.70);
  border: 1px solid rgba(201,168,76,0.09);
  border-radius: var(--a-radius);
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--a-trans);
}

.a-testimonial:hover {
  border-color: rgba(201,168,76,0.32);
  transform: translateY(-3px);
  box-shadow: var(--a-shadow);
}

.a-testimonial-stars {
  color: var(--a-gold);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
  opacity: 0.85;
}

.a-testimonial-text {
  font-family: var(--a-font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--a-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.a-testimonial-author {
  font-size: 0.84rem;
  color: var(--a-text-muted);
}

.a-testimonial-author strong {
  color: var(--a-gold-light);
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

/* ── Faixa de impacto ── */
.a-impact-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(18,15,9,0.96));
  border-top: 1px solid rgba(201,168,76,0.16);
  border-bottom: 1px solid rgba(201,168,76,0.16);
  backdrop-filter: blur(12px);
  padding: 4rem 2rem;
  text-align: center;
}

.a-impact-quote {
  font-family: var(--a-font-impact);
  font-style: normal;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--a-cream);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.a-impact-quote em {
  color: var(--a-gold);
  -webkit-text-fill-color: var(--a-gold);
  font-style: normal;
}

.a-impact-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto 1rem;
  width: fit-content;
}

.a-impact-ornament::before,
.a-impact-ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.50));
}

.a-impact-ornament::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.50));
}

.a-impact-attr {
  font-size: 0.72rem;
  color: rgba(201,168,76,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── CTA Final ── */
.a-cta-wrap {
  position: relative;
  z-index: 1;
}

.a-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.a-cta h2 {
  font-family: var(--a-font-impact) !important;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  color: var(--a-cream) !important;
  margin-bottom: 1rem;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.a-cta h2 em {
  color: var(--a-gold);
  -webkit-text-fill-color: var(--a-gold);
  font-style: normal;
}

.a-cta p {
  color: var(--a-text-muted);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.a-cta-scarcity {
  font-size: 0.80rem;
  color: rgba(201,168,76,0.72);
  font-weight: 500;
  margin-bottom: 2.5rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.a-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Galeria ── */
.a-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.a-gallery-item {
  border-radius: var(--a-radius);
  overflow: hidden;
  background: var(--a-dark-2);
  border: 1px solid rgba(201,168,76,0.07);
  transition: var(--a-trans);
}

.a-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.a-gallery-item:hover {
  border-color: rgba(201,168,76,0.28);
}

.a-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.a-gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .a-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .a-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ── Redes sociais (fixo lateral) ── */
.a-social {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.a-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,9,6,0.92);
  border: 1px solid rgba(201,168,76,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a-gold);
  transition: var(--a-trans);
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.a-social a:hover {
  background: var(--a-gold);
  border-color: var(--a-gold);
  color: #0a0906;
  transform: scale(1.12);
  box-shadow: var(--a-shadow-gold);
}

/* ── Texto com shimmer dourado ── */
.a-gold-text {
  background: linear-gradient(135deg, #A8862F 0%, var(--a-gold-light) 40%, var(--a-gold) 60%, var(--a-gold-light) 80%, #A8862F 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aShimmer 5s linear infinite;
}

/* Alias compatibilidade */
.a-pink-text { color: var(--a-gold); }

@keyframes aShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

/* ── Scroll reveal ── */
.a-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.a-reveal-delay-1 { transition-delay: 0.10s; }
.a-reveal-delay-2 { transition-delay: 0.22s; }
.a-reveal-delay-3 { transition-delay: 0.34s; }
.a-reveal-delay-4 { transition-delay: 0.46s; }

/* ── Animações base ── */
@keyframes aFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes aFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Página de Serviço individual ── */
.a-servico-single {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.a-servico-single-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.a-servico-single-icon {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.45));
}

.a-servico-single-title {
  font-family: var(--a-font-display) !important;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--a-cream) !important;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.a-servico-single-sub {
  font-size: 1.1rem;
  color: var(--a-text-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.75;
  font-style: italic;
}

.a-servico-single-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--a-gold), transparent);
  margin: 2rem auto;
}

.a-servico-single-body {
  font-size: 1.05rem;
  color: var(--a-text-muted);
  line-height: 1.88;
  margin-bottom: 3rem;
}

.a-servico-single-body h2,
.a-servico-single-body h3 {
  color: var(--a-cream) !important;
  margin-top: 2rem;
}

.a-servico-single-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.a-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--a-gold);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: var(--a-trans);
  letter-spacing: 0.04em;
}

.a-back-link:hover {
  color: var(--a-gold-light);
  gap: 0.7rem;
}

/* ── Página de Contacto ── */
.a-contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.a-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

@media (max-width: 700px) {
  .a-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.a-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.a-contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.a-contact-info-label {
  font-family: var(--a-font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--a-gold);
  margin-bottom: 0.3rem;
  display: block;
}

.a-contact-info-value {
  font-size: 1rem;
  color: var(--a-text);
  text-decoration: none;
  transition: color 0.2s;
}

a.a-contact-info-value:hover { color: var(--a-gold-light); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .a-section { padding: 3.5rem 1.25rem; }
  .a-servicos-grid { grid-template-columns: 1fr; }
  .allegro-hero-actions { flex-direction: column; }
  .a-stats { gap: 1.75rem; }
  .a-cta { padding: 4rem 1.25rem; }
}
