/* ============================================================
   FJ Sinteco — CSS Premium v2
   Visual: mais claro, mais limpo, contemporâneo
   Fontes: Outfit + Fraunces + Lora
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,600;0,700;1,300;1,600&family=Outfit:wght@300;400;500;600;700&family=Lora:wght@400;500&display=swap');

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

:root {
  --gold:         #C8922A;
  --gold-light:   #E0A83C;
  --gold-bright:  #F0C060;
  --gold-dark:    #9A6E1A;
  --gold-pale:    #F5E8CC;

  --black:        #0E0E0E;
  --dark:         #181818;
  --surface-1:    #1E1E1E;
  --surface-2:    #252525;
  --surface-3:    #2E2E2E;
  --surface-card: #282828;

  --gray:         #666;
  --gray-light:   #AAA;
  --gray-pale:    #CCC;

  --white:        #FFFFFF;
  --white-soft:   #F8F5F0;
  --cream:        #EDE8DE;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-accent:  'Lora', Georgia, serif;

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold:  0 4px 28px rgba(200,146,42,0.22);
  --shadow-deep:  0 20px 55px rgba(0,0,0,0.45);
  --radius:       3px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-light);
  display: block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 600; line-height: 1.15; color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.06rem; font-weight: 400;
  color: var(--gray-light); margin-top: 14px; max-width: 560px; line-height: 1.75;
}
.gold-line {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  margin: 18px 0 28px; border-radius: 2px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.07);
  transform: translateX(-100%); transition: var(--transition);
}
.btn:hover::before { transform: translateX(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #1a0e00; box-shadow: var(--shadow-gold); font-weight: 700;
}
.btn-gold:hover { box-shadow: 0 8px 36px rgba(200,146,42,0.42); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(200,146,42,0.55); color: var(--gold-light);
}
.btn-outline:hover { background: rgba(200,146,42,0.09); border-color: var(--gold-light); transform: translateY(-2px); }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 18px 0;
}
#header.scrolled {
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
  padding: 11px 0;
  border-bottom: 1px solid rgba(200,146,42,0.12);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 60px; width: auto; object-fit: contain;
  transition: height 0.4s ease;
}
#header.scrolled .nav-logo img { height: 46px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; display: block; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0.22) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.32);
  padding: 8px 18px; border-radius: var(--radius); margin-bottom: 26px;
}
.hero-badge span { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.65); } }

.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5.2vw, 4rem); font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 18px; }
.hero-title em { font-style: italic; color: var(--gold-bright); display: block; }
.hero-subtitle { font-family: var(--font-accent); font-size: clamp(1rem, 1.9vw, 1.2rem); font-weight: 400; color: rgba(255,255,255,0.78); margin-bottom: 14px; line-height: 1.65; }
.hero-location { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 36px; }
.hero-location svg { width: 14px; height: 14px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-stats { position: absolute; bottom: 44px; right: 0; z-index: 2; display: flex; }
.hero-stat { padding: 18px 28px; background: rgba(18,18,18,0.8); backdrop-filter: blur(12px); border-top: 1px solid rgba(200,146,42,0.28); text-align: center; border-left: 1px solid rgba(200,146,42,0.08); }
.hero-stat:first-child { border-left: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.hero-stat-label { font-family: var(--font-body); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light); margin-top: 4px; }

.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 26px; height: 2px; background: rgba(255,255,255,0.28); border-radius: 2px; cursor: pointer; transition: background 0.3s; }
.hero-dot.active { background: var(--gold-light); }

/* ── SOBRE ── */
#sobre {
  padding: 104px 0; background: var(--surface-1); position: relative;
}
#sobre::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sobre-images { position: relative; height: 540px; }
.sobre-img-main { position: absolute; top: 0; left: 0; width: 78%; height: 400px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-deep); }
.sobre-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 270px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-deep); border: 4px solid var(--surface-1); }
.sobre-badge-float { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: #1a0e00; padding: 16px 20px; text-align: center; border-radius: var(--radius); box-shadow: var(--shadow-gold); z-index: 2; }
.sobre-badge-float .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.sobre-badge-float .txt { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-top: 3px; }
.sobre-checks { margin: 24px 0; display: flex; flex-direction: column; gap: 11px; }
.sobre-check { display: flex; align-items: flex-start; gap: 11px; font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.78); }
.sobre-check-icon { width: 20px; height: 20px; min-width: 20px; background: rgba(200,146,42,0.12); border: 1px solid var(--gold-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.sobre-check-icon svg { width: 10px; height: 10px; color: var(--gold-light); }

/* ── SERVIÇOS ── */
#servicos { padding: 104px 0; background: var(--surface-2); position: relative; }
#servicos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.servicos-header { text-align: center; margin-bottom: 56px; }
.servicos-header .section-subtitle { margin: 14px auto 0; }
.servicos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.servico-card { background: var(--surface-card); padding: 44px 36px; position: relative; overflow: hidden; transition: var(--transition); }
.servico-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.servico-card:hover { background: var(--surface-3); }
.servico-card:hover::before { transform: scaleX(1); }
.servico-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: rgba(200,146,42,0.07); line-height: 1; position: absolute; top: 20px; right: 24px; transition: color 0.4s; }
.servico-card:hover .servico-num { color: rgba(200,146,42,0.14); }
.servico-icon { width: 50px; height: 50px; background: rgba(200,146,42,0.09); border: 1px solid rgba(200,146,42,0.22); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: var(--transition); }
.servico-card:hover .servico-icon { background: rgba(200,146,42,0.18); border-color: var(--gold-light); }
.servico-icon svg { width: 24px; height: 24px; color: var(--gold-light); }
.servico-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.servico-text { font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-light); line-height: 1.72; margin-bottom: 22px; }
.servico-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); transition: gap 0.3s; }
.servico-link:hover { gap: 14px; }
.servico-link svg { width: 13px; height: 13px; }

/* ── NÚMEROS ── */
#numeros { padding: 72px 0; background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); position: relative; overflow: hidden; }
#numeros::before { content: ''; 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'%3E%3Cg fill='%23000' fill-opacity='0.05'%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"); }
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.numero-item { text-align: center; padding: 36px 16px; border-right: 1px solid rgba(0,0,0,0.1); }
.numero-item:last-child { border-right: none; }
.numero-val { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; color: var(--black); line-height: 1; display: block; }
.numero-label { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.62); margin-top: 8px; display: block; }

/* ── DIFERENCIAIS ── */
#diferenciais { padding: 104px 0; background: var(--surface-1); position: relative; }
#diferenciais::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.diferenciais-header { text-align: center; margin-bottom: 56px; }
.diferenciais-header .section-subtitle { margin: 14px auto 0; }
.diferenciais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.diferencial-card { padding: 36px 28px; border: 1px solid rgba(200,146,42,0.1); border-radius: var(--radius); text-align: center; transition: var(--transition); background: rgba(255,255,255,0.018); }
.diferencial-card:hover { border-color: rgba(200,146,42,0.38); background: rgba(200,146,42,0.035); transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.36); }
.diferencial-icon { width: 60px; height: 60px; background: rgba(200,146,42,0.07); border: 1px solid rgba(200,146,42,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: var(--transition); }
.diferencial-card:hover .diferencial-icon { background: rgba(200,146,42,0.16); border-color: var(--gold-light); }
.diferencial-icon svg { width: 26px; height: 26px; color: var(--gold-light); }
.diferencial-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 9px; }
.diferencial-text { font-family: var(--font-body); font-size: 0.86rem; color: var(--gray-light); line-height: 1.65; }

/* ── GALERIA ── */
#galeria { padding: 104px 0; background: var(--surface-2); position: relative; }
#galeria::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.galeria-header { text-align: center; margin-bottom: 44px; }
.galeria-header .section-subtitle { margin: 14px auto 0; }

.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 4px; }
.galeria-item { position: relative; overflow: hidden; cursor: pointer; }
.galeria-item.tall { grid-row: span 2; }
.galeria-item.wide { grid-column: span 2; }
.galeria-item.extra { display: none; }
.galeria-item.extra.visible { display: block; }

.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.galeria-item:hover img { transform: scale(1.07); }
.galeria-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%); opacity: 0; transition: opacity 0.4s; }
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-zoom { width: 42px; height: 42px; background: rgba(200,146,42,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.galeria-item:hover .galeria-zoom { transform: translate(-50%, -50%) scale(1); }
.galeria-zoom svg { width: 17px; height: 17px; color: var(--dark); }

.galeria-footer { text-align: center; margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.galeria-contador { font-family: var(--font-body); font-size: 12px; color: var(--gray); letter-spacing: 1px; }
#btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(200,146,42,0.45); color: var(--gold-light);
  border-radius: var(--radius); background: transparent; transition: var(--transition); cursor: pointer;
}
#btn-load-more:hover { background: rgba(200,146,42,0.09); border-color: var(--gold-light); transform: translateY(-2px); }
#btn-load-more.hidden { display: none; }
#btn-load-more svg { width: 16px; height: 16px; transition: transform 0.3s; }
#btn-load-more:hover svg { transform: translateY(3px); }

/* ── LIGHTBOX ── */
#lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
#lightbox.active { opacity: 1; pointer-events: all; }
#lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 28px 72px rgba(0,0,0,0.75); }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; background: rgba(200,146,42,0.14); border: 1px solid rgba(200,146,42,0.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { background: rgba(200,146,42,0.28); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(200,146,42,0.14); border: 1px solid rgba(200,146,42,0.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); cursor: pointer; transition: var(--transition); }
.lightbox-nav:hover { background: rgba(200,146,42,0.28); }
.lightbox-nav svg { width: 20px; height: 20px; }
#lightbox-prev { left: 22px; }
#lightbox-next { right: 22px; }
.lightbox-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.45); }

/* ── FAQ ── */
#faq { padding: 104px 0; background: var(--surface-1); position: relative; }
#faq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.faq-sidebar { position: sticky; top: 96px; }
.faq-sidebar .section-subtitle { margin-top: 14px; }
.faq-sidebar-img { margin-top: 32px; position: relative; }
.faq-sidebar-img img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); }
.faq-sidebar-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(200,146,42,0.18); border-radius: var(--radius); pointer-events: none; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--surface-card); border: 1px solid rgba(200,146,42,0.07); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(200,146,42,0.28); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-family: var(--font-display); font-size: 0.97rem; font-weight: 600; color: var(--white); transition: color 0.3s; }
.faq-item.open .faq-question { color: var(--gold-light); }
.faq-icon { width: 28px; height: 28px; min-width: 28px; background: rgba(200,146,42,0.09); border: 1px solid rgba(200,146,42,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.faq-item.open .faq-icon { background: rgba(200,146,42,0.18); border-color: var(--gold-light); transform: rotate(45deg); }
.faq-icon svg { width: 13px; height: 13px; color: var(--gold-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner { padding: 14px 22px 20px; font-family: var(--font-body); font-size: 0.88rem; color: var(--gray-light); line-height: 1.75; border-top: 1px solid rgba(200,146,42,0.08); }

/* ── CTA FINAL ── */
#cta-final { padding: 112px 0; background: var(--surface-2); position: relative; overflow: hidden; }
#cta-final::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.1; }
.cta-content { position: relative; text-align: center; max-width: 660px; margin: 0 auto; }
.cta-content .section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-content .section-subtitle { margin: 14px auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-info { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-info-item { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light); }
.cta-info-item svg { width: 14px; height: 14px; color: var(--gold-light); }

/* ── FOOTER ── */
#footer { background: var(--dark); border-top: 1px solid rgba(200,146,42,0.12); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.055); margin-bottom: 28px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 80px; width: auto; object-fit: contain; }
.footer-desc { font-family: var(--font-body); font-size: 0.84rem; color: var(--gray-light); line-height: 1.72; margin-bottom: 18px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,146,42,0.14); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray-light); transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col-title { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-family: var(--font-body); font-size: 0.85rem; color: var(--gray-light); transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: ''; width: 4px; height: 1px; background: var(--gold); flex-shrink: 0; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; font-family: var(--font-body); font-size: 0.84rem; color: var(--gray-light); }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-copy { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-copy a { color: var(--gold-dark); transition: color 0.3s; }
.footer-copy a:hover { color: var(--gold-light); }
.footer-cnpj { font-family: var(--font-body); font-size: 0.76rem; color: rgba(255,255,255,0.18); letter-spacing: 1px; }

/* ── WhatsApp flutuante ── */
#whatsapp-float { position: fixed; bottom: 26px; right: 26px; z-index: 900; }
.wa-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 22px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; animation: wa-bounce 3s ease infinite; }
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 9px 30px rgba(37,211,102,0.52); }
.wa-btn svg { width: 28px; height: 28px; color: white; }
@keyframes wa-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.wa-pulse { position: absolute; top: -3px; right: -3px; width: 14px; height: 14px; background: #FF4444; border-radius: 50%; border: 2px solid var(--dark); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.65; } }

#back-top { position: fixed; bottom: 92px; right: 26px; z-index: 900; width: 42px; height: 42px; background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.28); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold-light); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: var(--transition); }
#back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-top:hover { background: rgba(200,146,42,0.22); }
#back-top svg { width: 16px; height: 16px; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: 0; width: 270px; height: 100vh; background: rgba(18,18,18,0.98); backdrop-filter: blur(20px); border-left: 1px solid rgba(200,146,42,0.18); flex-direction: column; justify-content: center; align-items: flex-start; padding: 56px 36px; gap: 26px; transform: translateX(100%); transition: transform 0.4s ease; z-index: 999; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 14px; }
  .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 44px; }
  .sobre-images { height: 360px; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .numero-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .numero-item:nth-child(3), .numero-item:nth-child(4) { border-bottom: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-sidebar { position: static; }
}
@media (max-width: 768px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .galeria-item.tall, .galeria-item.wide { grid-row: span 1; grid-column: span 1; }
  .hero-stats { position: static; flex-wrap: wrap; border-top: 1px solid rgba(200,146,42,0.18); margin-top: 40px; }
  .hero-stat { flex: 1; min-width: 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-logo img { height: 50px; }
  #header.scrolled .nav-logo img { height: 40px; }
}
@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 44px; }
}
