/* =========================================
   HL FOTO — Stylesheet principal
   ========================================= */

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

/* =========================================
   1. RESET & VARIÁVEIS
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0a0a0a;
  --white:      #ffffff;
  --gray-50:    #f8f8f6;
  --gray-100:   #f0ede8;
  --gray-200:   #e0ddd8;
  --gray-400:   #a09d98;
  --gray-600:   #6b6864;
  --gray-800:   #2c2c2a;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark:  #a07830;
  --ig-grad:    linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --font:       'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Imagens com dimensões fixas de container mantêm proporção */
.hero-bg-img img,
.about-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Logo da nav — circular, sem distorção */
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

a { color: inherit; }

/* =========================================
   2. NAVEGAÇÃO
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 5%;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover { color: var(--white); }

.nav-links a svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* =========================================
   3. HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.97) 40%, rgba(10,10,10,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5% 100px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
}

.hero-badge::before { content: '★'; font-size: 11px; }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.01em;
}

.hero-stats {
  position: absolute;
  bottom: 44px;
  left: 5%;
  right: 5%;
  z-index: 2;
  display: flex;
  gap: 40px;
}

.hero-stat-number {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================
   4. BOTÕES GLOBAIS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.14); }

.btn-instagram {
  background: var(--ig-grad);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(131,58,180,0.35);
}
.btn-instagram:hover { opacity: 0.9; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1fba58; }

.btn-maps {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--black);
}
.btn-maps:hover { background: var(--gray-100); }

/* =========================================
   5. SEÇÃO BASE (utilitários)
   ========================================= */
.section { padding: 96px 5%; }
.section--dark { background: var(--black); }
.section--gray { background: var(--gray-50); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 14px;
}

.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 520px;
}

.section-subtitle--white { color: rgba(255,255,255,0.5); }

/* =========================================
   6. SERVIÇOS
   ========================================= */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.22s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 56px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.28);
}

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

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* =========================================
   7. SOBRE
   ========================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  gap: 12px;
}

.about-image-placeholder span { font-size: 48px; }

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--black);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.3);
}

.about-badge-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.about-content .section-subtitle { max-width: 100%; margin-bottom: 28px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-800);
  font-weight: 500;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* =========================================
   8. GALERIA
   ========================================= */
.gallery-header { margin-bottom: 44px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 1;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 320px;
}

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

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 12px;
  gap: 8px;
}

.gallery-placeholder span { font-size: 30px; }

/* =========================================
   9. INSTAGRAM CTA
   ========================================= */
.instagram-cta {
  background: linear-gradient(135deg, #1a0533 0%, #2d0a1a 40%, #1a0f00 100%);
  padding: 88px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instagram-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(131,58,180,0.2) 0%, transparent 65%);
}

.instagram-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.instagram-pill svg { width: 16px; height: 16px; }

.instagram-cta h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.instagram-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}

.instagram-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.instagram-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.instagram-stat-number {
  font-size: 26px;
  font-weight: 800;
  background: var(--ig-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

.instagram-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

/* =========================================
   10. AVALIAÇÕES
   ========================================= */
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-score-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  flex-shrink: 0;
}

.reviews-score-number {
  font-size: 46px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews-score-stars { font-size: 19px; margin-bottom: 4px; }

.reviews-score-count {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: background 0.2s;
}

.review-card:hover { background: rgba(255,255,255,0.07); }

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.review-name { font-size: 13px; font-weight: 600; color: var(--white); }
.review-date { font-size: 11px; color: rgba(255,255,255,0.32); margin-top: 2px; }

.reviews-cta { text-align: center; }

/* =========================================
   11. FAQ
   ========================================= */
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}

.faq-question span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer a { color: var(--gold-dark); font-weight: 500; }

.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { display: block; }

/* =========================================
   12. CONTATO
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; }

.contact-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
}

.contact-item-value:hover { color: var(--gold-dark); }

.contact-item-sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 16px;
  font-size: 14px;
  margin-top: 4px;
}

.hours-day { color: var(--gray-600); }
.hours-time { font-weight: 500; color: var(--black); }
.hours-closed { color: #e05252; font-weight: 500; }

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 4/3.2;
  background: var(--gray-100);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================
   13. FOOTER
   ========================================= */
.footer {
  background: var(--black);
  padding: 52px 5% 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer-brand-name em { font-style: normal; color: var(--gold); }

.footer-brand-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.footer-social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-social-btn svg { width: 17px; height: 17px; fill: currentColor; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-info a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-contact-info a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

/* =========================================
   14. BOTÃO FLUTUANTE
   ========================================= */
.float-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
  animation: float-pulse 2.5s infinite;
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.42); }
  50%       { box-shadow: 0 6px 44px rgba(37,211,102,0.65); }
}

/* =========================================
   15. RESPONSIVO
   ========================================= */

/* --- Tablet grande (≤ 1024px) --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* --- Tablet (≤ 900px) --- */
@media (max-width: 900px) {
  .about        { grid-template-columns: 1fr; gap: 40px; }
  .about-image  { aspect-ratio: 16/9; max-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-map  { aspect-ratio: 4/3; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  .section       { padding: 64px 5%; }
  .nav-links     { display: none; }
  .nav-toggle    { display: block; }

  /* Hero */
  .hero-content  { padding: 100px 5% 140px; }
  .hero-stats    { gap: 20px; bottom: 28px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 22px; }

  /* Serviços */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card  { padding: 22px 18px; }

  /* Galeria */
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item:first-child { grid-column: span 2; min-height: 200px; }

  /* Avaliações */
  .reviews-header  { flex-direction: column; gap: 20px; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .reviews-score-box { width: 100%; }

  /* Instagram */
  .instagram-stats { gap: 28px; }

  /* Footer */
  .footer-top      { flex-direction: column; gap: 32px; }
  .footer-bottom   { flex-direction: column; text-align: center; gap: 8px; }

  /* FAQ */
  .faq-inner       { max-width: 100%; }
  .faq-question    { padding: 16px 18px; }
  .faq-answer      { padding: 0 18px 16px; }
}

/* --- Mobile pequeno (≤ 480px) --- */
@media (max-width: 480px) {
  .section         { padding: 56px 4%; }

  /* Hero */
  .hero-content    { padding: 90px 4% 160px; }
  .hero h1         { font-size: 34px; }
  .hero-desc       { font-size: 15px; }
  .hero-actions    { flex-direction: column; }
  .hero-stats      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; bottom: 20px; left: 4%; right: 4%; }
  .hero-stat-number { font-size: 18px; }

  /* Serviços */
  .services-grid   { grid-template-columns: 1fr; }
  .services-header .btn { width: 100%; justify-content: center; }

  /* Sobre */
  .about-image     { aspect-ratio: 4/3; }
  .about-features  { gap: 10px; }

  /* Galeria */
  .gallery-grid    { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; min-height: 220px; }

  /* Instagram */
  .instagram-cta-actions { flex-direction: column; align-items: center; }
  .instagram-stats { gap: 20px; }
  .instagram-cta h2 { font-size: 26px; }

  /* Avaliações */
  .reviews-score-box { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Contato */
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-social-btn { width: 42px; height: 42px; }
  .footer-copy     { font-size: 11px; }

  /* Botão flutuante */
  .float-btn { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 22px; }
}

/* --- Mobile muito pequeno (≤ 360px) --- */
@media (max-width: 360px) {
  .hero h1       { font-size: 28px; }
  .section-title { font-size: 24px; }
  .btn           { font-size: 14px; padding: 12px 20px; }
  .hero-stats    { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-number { font-size: 15px; }
  .hero-stat-label  { font-size: 9px; }
}

/* =========================================
   16. ANIMAÇÕES (Intersection Observer)
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   17. MENU MOBILE
   ========================================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; fill: currentColor; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
}
