/* ═══════════════════════════════════════════════════════════
   VARIÁVEIS — paleta de cores da Bege Bahia
═══════════════════════════════════════════════════════════ */
:root {
  --gold:        #c99a6f;
  --gold-light:  rgba(201,154,111,0.15);
  --gold-mid:    rgba(201,154,111,0.4);
  --dark:        #2c2c2c;
  --dark-deep:   #1a1a1a;
  --teal:        #173940;
  --bg-cream:    #FAF8F5;
  --bg-white:    #ffffff;
  --text-gray:   #6b6b6b;
  --text-light:  #e8e4df;
  --border:      #e4ddd6;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --container:   1280px;
  --radius:      2px;
  --transition:  0.3s ease;
  --section-py:  clamp(56px, 8vw, 100px);
  --gap-grid:    clamp(16px, 3vw, 28px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--bg-white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 5vw, 80px); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition), box-shadow var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 20px rgba(0,0,0,0.08); }
.navbar.scrolled .navbar-links a { color: var(--dark); }
.navbar.scrolled .logo-text { color: var(--dark); }
.navbar.scrolled .logo-sub { color: var(--text-gray); }
.navbar.scrolled .hamburger span { background: var(--dark); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px clamp(16px, 5vw, 40px); gap: 16px; }
.navbar-logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.logo-text { font-family: var(--font-serif); font-size: clamp(16px, 2.5vw, 22px); font-weight: 500; color: #fff; letter-spacing: 0.5px; transition: color var(--transition); }
.logo-sub { font-size: clamp(7px, 1vw, 9px); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); transition: color var(--transition); }
.navbar-links { display: flex; gap: clamp(16px, 2.5vw, 32px); align-items: center; }
.navbar-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.8px; color: rgba(255,255,255,0.9); transition: color var(--transition); text-transform: uppercase; white-space: nowrap; }
.navbar-links a:hover { color: var(--gold); }
.btn-nav-cta { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 10px 20px; border-radius: var(--radius); transition: background var(--transition), transform var(--transition); white-space: nowrap; flex-shrink: 0; min-height: 44px; display: inline-flex; align-items: center; }
.btn-nav-cta:hover { background: #b8895e; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; flex-shrink: 0; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Zoom dispara uma única vez ao carregar e para no estado final (scale 1) */
  animation: heroZoom 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0);  }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,26,0.45) 0%, rgba(26,26,26,0.65) 50%, rgba(26,26,26,0.82) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; width: 100%; max-width: 820px; padding: 0 clamp(16px, 5vw, 48px); margin-bottom: clamp(80px, 12vw, 120px); animation: fadeUp 1s ease both; }
.hero-tag { font-size: clamp(9px, 1.5vw, 11px); font-weight: 600; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: clamp(16px, 3vw, 24px); }
.hero-title { font-family: var(--font-serif); font-size: clamp(40px, 8vw, 88px); font-weight: 400; color: #fff; line-height: 1.05; margin-bottom: clamp(16px, 3vw, 24px); }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto clamp(16px, 3vw, 24px); }
.hero-subtitle { font-size: clamp(14px, 2.2vw, 17px); font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: clamp(28px, 5vw, 40px); }
.hero-buttons { display: flex; gap: clamp(10px, 2vw, 16px); justify-content: center; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; align-items: center; justify-content: center; background: rgba(26,26,26,0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: clamp(14px, 2.5vw, 22px) clamp(16px, 5vw, 40px); flex-wrap: wrap; gap: 0; }
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 clamp(20px, 4vw, 40px); }
.stat-num { font-family: var(--font-serif); font-size: clamp(22px, 3.5vw, 30px); font-weight: 500; color: var(--gold); line-height: 1; }
.stat-label { font-size: clamp(8px, 1vw, 10px); font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* BOTÕES */
.btn-primary, .btn-outline-white, .btn-dark, .btn-gold { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-sans); font-size: clamp(10px, 1.2vw, 12px); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: clamp(13px, 2vw, 16px) clamp(24px, 4vw, 40px); border-radius: var(--radius); transition: background var(--transition), transform var(--transition), border-color var(--transition); min-height: 44px; white-space: nowrap; }
.btn-primary { color: var(--dark); background: var(--gold); }
.btn-primary:hover { background: #b8895e; transform: translateY(-2px); }
.btn-outline-white { color: #fff; background: transparent; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-dark { color: #fff; background: var(--dark); }
.btn-dark:hover { background: var(--dark-deep); transform: translateY(-2px); }
.btn-gold { color: var(--dark); background: var(--gold); }
.btn-gold:hover { background: #b8895e; transform: translateY(-2px); }
.btn-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); transition: gap var(--transition); min-height: 44px; }
.btn-link:hover { gap: 10px; }

/* SECTION LABELS */
.section-label { font-size: clamp(9px, 1.2vw, 11px); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-gray); margin-bottom: 14px; }
.section-label.gold { color: var(--gold); }
.section-title { font-family: var(--font-serif); font-size: clamp(30px, 5vw, 52px); font-weight: 400; color: var(--dark); line-height: 1.1; margin-bottom: 18px; }
.section-title.light { color: #fff; }
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle { font-size: clamp(14px, 1.8vw, 16px); color: var(--text-gray); max-width: 560px; margin-bottom: clamp(36px, 5vw, 56px); line-height: 1.7; }
.section-subtitle.light { color: rgba(255,255,255,0.7); }
.section-cta-center { text-align: center; margin-top: clamp(32px, 5vw, 52px); }

/* BARRA DIFERENCIAIS */
.bar-diferenciais { background: var(--teal); padding: clamp(20px, 4vw, 32px) 0; }
.bar-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.bar-item { display: flex; align-items: center; gap: 12px; padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 32px); color: #fff; }
.bar-item svg { color: var(--gold); flex-shrink: 0; }
.bar-item div { display: flex; flex-direction: column; }
.bar-item strong { font-size: clamp(12px, 1.5vw, 14px); font-weight: 600; color: #fff; }
.bar-item span { font-size: clamp(10px, 1.2vw, 12px); color: rgba(255,255,255,0.6); }
.bar-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* AMBIENTES */
.section-ambientes { padding: var(--section-py) 0; background: var(--bg-white); }
.ambientes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-grid); }
.ambiente-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.ambiente-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.ambiente-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.ambiente-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ambiente-card:hover .ambiente-img-wrap img { transform: scale(1.06); }
.ambiente-info { padding: clamp(16px, 3vw, 24px); }
.ambiente-info h3 { font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 22px); font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.ambiente-info p { font-size: clamp(13px, 1.5vw, 14px); color: var(--text-gray); line-height: 1.65; margin-bottom: 16px; }

/* INSPIRAÇÕES */
.section-inspiracoes { padding: var(--section-py) 0; background: var(--dark); }
.inspiracoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.5vw, 16px); }
.insp-card { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.insp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insp-card:hover img { transform: scale(1.06); }
.insp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.88) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(14px, 2.5vw, 20px); opacity: 0; transition: opacity var(--transition); }
@media (hover: none) { .insp-overlay { opacity: 1; } }
.insp-card:hover .insp-overlay { opacity: 1; }
.insp-overlay span { font-family: var(--font-serif); font-size: clamp(13px, 1.8vw, 16px); color: #fff; margin-bottom: 8px; line-height: 1.3; }
.insp-overlay a { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--gold); min-height: 44px; display: inline-flex; align-items: center; transition: letter-spacing var(--transition); }
.insp-overlay a:hover { letter-spacing: 2px; }

/* DEPOIMENTOS */
.section-depoimentos { padding: var(--section-py) 0; background: var(--bg-cream); }
.dep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-grid); margin-top: 16px; }
.dep-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 4px; padding: clamp(24px, 4vw, 36px); transition: box-shadow var(--transition); }
.dep-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.dep-quote { font-family: var(--font-serif); font-size: 64px; line-height: 0.5; color: var(--gold); opacity: 0.3; margin-bottom: 16px; }
.dep-card p { font-size: clamp(13px, 1.5vw, 15px); color: var(--dark); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.dep-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 18px; }
.dep-avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--font-serif); font-size: 18px; display: flex; align-items: center; justify-content: center; }
.dep-author strong { display: block; font-size: clamp(13px, 1.5vw, 14px); font-weight: 600; color: var(--dark); }
.dep-author span { font-size: clamp(11px, 1.2vw, 12px); color: var(--text-gray); }

/* PROCESSO */
.section-processo { padding: var(--section-py) 0; background: var(--teal); position: relative; overflow: hidden; }
.section-processo::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(201,154,111,0.08); pointer-events: none; }
.processo-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: clamp(40px, 6vw, 60px); position: relative; }
.processo-steps::before { content: ''; position: absolute; top: 24px; left: 10%; right: 10%; height: 1px; background: rgba(201,154,111,0.2); }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 clamp(8px, 2vw, 16px); }
.step-num { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 16px; color: var(--gold); background: var(--teal); position: relative; z-index: 1; margin-bottom: 20px; }
.step-connector { display: none; }
.step-body h3 { font-family: var(--font-serif); font-size: clamp(16px, 2vw, 18px); font-weight: 400; color: #fff; margin-bottom: 10px; }
.step-body p { font-size: clamp(12px, 1.4vw, 13px); color: rgba(255,255,255,0.55); line-height: 1.65; }

/* CONTATO */
.section-contato { padding: var(--section-py) 0; background: var(--bg-white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 6vw, 80px); align-items: start; margin-top: 20px; }
.contato-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contato-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contato-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contato-item span { font-size: 14px; color: var(--text-gray); line-height: 1.5; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: #25d366; padding: 14px 28px; border-radius: var(--radius); margin-top: 8px; min-height: 44px; transition: background var(--transition), transform var(--transition); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* FORM */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--dark); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; font-size: 16px; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-sans); color: var(--dark); background: var(--bg-white); transition: border-color var(--transition); outline: none; -webkit-appearance: none; appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: var(--gold); border: none; padding: 16px; min-height: 52px; border-radius: var(--radius); cursor: pointer; transition: background var(--transition), transform var(--transition); margin-top: 8px; }
.btn-submit:hover { background: #b8895e; transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--text-gray); text-align: center; margin-top: 10px; }

/* FOOTER */
.footer { background: var(--dark-deep); padding: clamp(48px, 7vw, 72px) 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: clamp(28px, 4vw, 48px); padding-bottom: clamp(40px, 6vw, 56px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 22px); color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: clamp(12px, 1.4vw, 13px); line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-nav strong, .footer-contact strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: border-color var(--transition), color var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* FLOATING */
/* floating-cta removido */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 500; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform var(--transition), box-shadow var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float:active { transform: scale(0.95); }

/* ANIMAÇÕES */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } .reveal { opacity: 1; transform: none; } }

/* ≤ 1200px — Tablet Largo */
@media (max-width: 1200px) {
  .navbar-links { gap: 20px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > .footer-contact { grid-column: 1 / -1; }
}

/* ≤ 1024px — Tablet */
@media (max-width: 1024px) {
  .ambientes-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .processo-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .processo-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-contact { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
  .contato-grid { gap: 40px; }
  .inspiracoes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ≤ 768px — Mobile */
@media (max-width: 768px) {
  .navbar-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(23,57,64,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 1050; }
  .navbar-links.open { display: flex; }
  .navbar-links a { font-size: 20px; color: #fff; letter-spacing: 1px; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-subtitle br { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .hero-stat { flex: 1; min-width: 80px; }
  .bar-grid { flex-direction: column; align-items: flex-start; }
  .bar-sep { display: none; }
  .bar-item { padding: 8px 0; }
  .ambientes-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .processo-steps::before { display: none; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  /* floating-cta já removido */
}

/* ≤ 480px — Mobile Pequeno */
@media (max-width: 480px) {
  .inspiracoes-grid { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline-white { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; justify-content: space-around; padding: 14px 8px; }
  .hero-stat { padding: 0 8px; }
  .dep-card { padding: 20px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ≥ 1600px — Tela Grande */
@media (min-width: 1600px) {
  :root { --container: 1440px; }
  .hero-title { font-size: 96px; }
  .section-title { font-size: 58px; }
}

/* Print */
@media print {
  .navbar, .whatsapp-float, .floating-cta { display: none; }
  .hero { height: auto; min-height: unset; padding: 60px 0; }
  .hero-bg, .hero-overlay { display: none; }
  .hero-title { color: #000; }
}

/* ═══════════════════════════════════════════════════════════
   LOGO IMAGEM — navbar e footer
═══════════════════════════════════════════════════════════ */
.logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* Logo com fundo transparente — branca sobre hero escuro */
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
}

/* Navbar transparente (sobre hero): logo BRANCA */
.navbar .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Navbar branca ao rolar: logo na cor original (branca vira escura) */
.navbar.scrolled .logo-img {
  filter: brightness(0);
  opacity: 0.85;
}

/* Footer logo — fundo escuro, logo branca */
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER DEV — créditos do desenvolvedor
═══════════════════════════════════════════════════════════ */
.footer-dev {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  margin-top: 6px;
}

.footer-dev-link {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
}

.footer-dev-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Mobile: logo menor */
@media (max-width: 768px) {
  .logo-img { height: 36px; }
  .footer-logo-img { height: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTADOR ANIMADO — hero stats
═══════════════════════════════════════════════════════════ */
.counter {
  display: inline-block;
  transition: all 0.1s;
}

/* ═══════════════════════════════════════════════════════════
   AVALIAÇÕES GOOGLE
═══════════════════════════════════════════════════════════ */
.section-avaliacoes {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.avaliacoes-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
}
.google-rating-badge .rating-num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--dark);
  font-weight: 500;
  line-height: 1;
}
.stars-row { display: flex; gap: 2px; }
.star { color: #FBBC04; font-size: 18px; }
.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.aval-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.aval-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.aval-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.aval-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.aval-nome { font-size: 14px; font-weight: 600; color: var(--dark); }
.aval-data { font-size: 11px; color: var(--text-gray); margin-top: 2px; }
.aval-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.aval-stars .star { font-size: 14px; }
.aval-texto { font-size: 13px; color: var(--text-gray); line-height: 1.65; font-style: italic; flex: 1; }
.aval-google-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.aval-google-logo svg { flex-shrink: 0; }
.aval-google-logo span { font-size: 11px; color: var(--text-gray); }
.avaliacoes-cta { text-align: center; margin-top: 36px; }
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  min-height: 44px;
}
.btn-google-review:hover { border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   MAPA — Onde Estamos
═══════════════════════════════════════════════════════════ */
.section-mapa {
  padding: var(--section-py) 0;
  background: var(--bg-cream);
}
.mapa-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.mapa-info { display: flex; flex-direction: column; }
.mapa-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.mapa-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.mapa-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mapa-item span { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.mapa-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.mapa-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER CNPJ
═══════════════════════════════════════════════════════════ */
.footer-cnpj {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO — Avaliações e Mapa
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .avaliacoes-grid { grid-template-columns: repeat(2, 1fr); }
  .mapa-grid { grid-template-columns: 1fr; gap: 28px; }
  .mapa-embed { padding-bottom: 0; height: 320px; }
}
@media (max-width: 768px) {
  .avaliacoes-grid { grid-template-columns: 1fr; }
  .mapa-embed { height: 260px; }
  .mapa-item span { font-size: 13px; }
  .aval-card { padding: 18px; }
  .google-rating-badge { padding: 10px 16px; }
}
@media (max-width: 480px) {
  .mapa-embed { height: 220px; }
  .aval-texto { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   ONDA DO FOOTER — 1 ciclo suave, para depois
═══════════════════════════════════════════════════════════ */
.footer-wave {
  background: var(--bg-cream);
  line-height: 0;
  margin-bottom: -2px;
  overflow: hidden;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 70px;
  animation: ondaEntrada 3s ease-out forwards;
}
@keyframes ondaEntrada {
  0%   { transform: translateX(-2%) scaleY(0.7); opacity: 0.4; }
  60%  { transform: translateX(1%)  scaleY(1.1); opacity: 1; }
  100% { transform: translateX(0)   scaleY(1);   opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Gabriel Medeiros dourado
═══════════════════════════════════════════════════════════ */
.footer-dev-link,
.footer-dev-link:visited {
  color: var(--gold) !important;
}
.footer-dev-link:hover {
  color: #b8895e !important;
  border-bottom-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER ACORDEÃO — toggle button
═══════════════════════════════════════════════════════════ */
.footer-nav-toggle {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: color var(--transition);
  margin-bottom: 0;
}
.footer-nav-toggle:hover { color: var(--gold); }

.footer-nav-icon {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.footer-nav-toggle[aria-expanded="true"] .footer-nav-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

/* Lista — começa fechada no mobile/tablet, aberta no desktop */
.footer-nav-list {
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-nav-list li { list-style: none; }
.footer-nav-list a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 7px 0;
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold); }

/* ── DESKTOP ≥ 1025px: toggle vira título fixo, lista sempre aberta ── */
@media (min-width: 1025px) {
  .footer-nav-toggle {
    pointer-events: none;
    border-bottom: none;
    padding: 0 0 18px 0;
    cursor: default;
  }
  .footer-nav-icon { display: none; }
  .footer-nav-list {
    max-height: 600px !important;
    opacity: 1 !important;
  }
}

/* ── TABLET 769–1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ── Navbar com hamburger ── */
  .navbar-links {
    display: none !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(23,57,64,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 1050;
  }
  .navbar-links.open { display: flex !important; }
  .navbar-links a { font-size: 22px; color: #fff; letter-spacing: 1px; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  /* ── Barra diferenciais: 2 colunas, ícones centralizados ── */
  .bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    justify-items: center;
  }
  .bar-sep { display: none; }
  .bar-item {
    padding: 14px 16px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 260px;
  }

  /* ── Ambientes ── */
  .ambientes-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Inspirações ── */
  .inspiracoes-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Depoimentos ── */
  .dep-grid { grid-template-columns: 1fr; }

  /* ── Processo: 3 cols primeiro, steps 4+5 centralizados ── */
  .processo-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .processo-steps::before { display: none; }
  /* Step 4 e 5 centralizam na segunda linha de 3 colunas */
  .processo-steps .step:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .processo-steps .step:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* ── Contato ── */
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }

  /* ── Avaliações: 3 colunas no tablet (cabe!) ── */
  .avaliacoes-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px; }
  .aval-card { padding: 16px; }
  .aval-texto { font-size: 12px; }

  /* ── Mapa ── */
  .mapa-grid { grid-template-columns: 1fr; gap: 28px; }
  .mapa-embed { padding-bottom: 0; height: 300px; }

  /* ── Footer grid ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }

  /* ── Footer acordeão ativo no tablet ── */
  .footer-nav-toggle {
    pointer-events: auto !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 14px 0 !important;
    display: flex !important;
  }
  .footer-nav-icon { display: inline-block !important; }
  .footer-nav-list {
    max-height: 0 !important;
    opacity: 0 !important;
  }
  .footer-nav-list.open {
    max-height: 500px !important;
    opacity: 1 !important;
  }
}

/* ── MOBILE ≤ 768px ── */
@media (max-width: 768px) {

  /* Barra diferenciais — 2x2 */
  .bar-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }
  .bar-sep { display: none; }
  .bar-item { padding: 10px 12px; align-items: flex-start; }
  .bar-item strong { font-size: 12px; }
  .bar-item span { font-size: 10px; }

  /* Footer acordeão */
  .footer-nav-toggle {
    pointer-events: auto;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0;
  }
  .footer-nav-icon { display: inline-block; }
  .footer-nav-list {
    max-height: 0 !important;
    opacity: 0 !important;
  }
  .footer-nav-list.open {
    max-height: 500px !important;
    opacity: 1 !important;
  }

  /* Footer grid */
  .footer-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .footer-brand { grid-column: auto; margin-bottom: 24px; }
  .footer-brand p { max-width: 100%; }
  .footer-contact { margin-top: 20px; }
}

/* ── MOBILE PEQUENO ≤ 480px ── */
@media (max-width: 480px) {
  .bar-grid { grid-template-columns: 1fr 1fr !important; }
  .bar-item strong { font-size: 11px; }
  .bar-item span { font-size: 9px; }
  .hero-stats { flex-direction: row; justify-content: space-around; }
  .hero-stat { padding: 0 6px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 7px; }
}
