/* ========================================
   LIXADORA A.M â€” Luxury Dark Theme
   CSS3 Organizado
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   #8B6E2F;
  --dark:       #070B12;
  --dark-2:     #0B1018;
  --dark-3:     #101620;
  --dark-4:     #161D28;
  --dark-5:     #1C2535;
  --navy:       #0D1B2A;
  --text:       #E8E4DC;
  --text-muted: #8A8A7A;
  --text-dim:   #5A5A4A;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --shadow-gold: 0 0 20px rgba(201,168,76,0.3), 0 0 60px rgba(201,168,76,0.1);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.gold-italic { font-style: italic; color: var(--gold); }

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- BUTTONS â€” pill style --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

/* Shine sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn:hover::before { left: 160%; }

/* DOURADO â€” botÃ£o principal */
.btn-primary {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size: 200% 100%;
  color: #0A0C0E;
  box-shadow: 0 4px 22px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 32px rgba(201,168,76,0.65), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
  letter-spacing: 0.14em;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

/* WhatsApp botÃ£o â€” dourado igual ao resto da pÃ¡gina */
.btn-whatsapp {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size: 200% 100%;
  color: #0A0C0E;
  box-shadow: 0 4px 22px rgba(201,168,76,0.45);
}
.btn-whatsapp:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 32px rgba(201,168,76,0.65);
  transform: translateY(-2px);
}

/* --- LAYOUT --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }

/* --- GOLD LINE --- */
.gold-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}

/* ==============================================
   HEADER / NAV
   ============================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}
#header.scrolled {
  background: rgba(7,11,18,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.65rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img { height: 105px; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.7);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; }

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--dark-2);
  padding: 5rem 2rem 2rem;
  z-index: 999;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateY(0); display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--text);
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* ==============================================
   HERO
   ============================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lixadora-adm.lovable.app/assets/hero-floor-CAnVfHKl.jpg');
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(4,7,12,0.82) 0%,
    rgba(7,11,18,0.65) 55%,
    rgba(7,11,18,0.45) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tag topo */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* TÃ­tulo */
.hero-title {
  color: var(--white);
  margin-bottom: 1.4rem;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 1.08;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  display: block;
}

/* DescriÃ§Ã£o */
.hero-desc {
  color: rgba(232,228,220,0.75);
  font-size: 1rem;
  margin-bottom: 2.4rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-desc strong, .hero-desc .hl { color: var(--gold); font-weight: 400; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge::before {
  content: '+';
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==============================================
   SERVIÃ‡OS
   ============================================== */
#servicos { background: var(--dark-2); }

.servicos-header { margin-bottom: 3.5rem; max-width: 560px; }
.servicos-header p { color: var(--text-muted); margin-top: 0.8rem; font-size: 0.95rem; }

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

.servico-card {
  background: var(--dark-3);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.servico-card:hover::before { transform: scaleX(1); }
.servico-card:hover { background: var(--dark-4); }
.servico-card:hover .servico-num { color: var(--gold); }

.servico-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-bottom: 1rem;
  transition: color 0.3s;
  font-family: var(--font-body);
}
.servico-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--white); font-weight: 500; }
.servico-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ==============================================
   TRANSFORMAÃ‡ÃƒO
   ============================================== */
#transformacao { background: var(--dark); }

.transformacao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.transformacao-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.transformacao-img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.55s ease;
  display: block;
}
.transformacao-img-wrap:hover .transformacao-img { transform: scale(1.04); }

.img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0A0C0E;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.img-badge strong { display: block; font-size: 2rem; font-family: var(--font-display); font-weight: 700; }
.img-badge span   { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.transformacao-content h2 { margin-bottom: 0.8rem; }
.transformacao-content p  { color: var(--text-muted); margin-bottom: 1.8rem; font-size: 0.95rem; }

.check-list { margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: 'âœ“';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ==============================================
   PORTFÃ“LIO
   ============================================== */
#portfolio { background: var(--dark-2); }

.portfolio-header { margin-bottom: 3rem; }
.portfolio-header p { color: var(--text-muted); margin-top: 0.6rem; font-size: 0.95rem; }

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

.portfolio-item {
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
}
.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(13,27,42,0.75);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.25rem 0.7rem;
  border-radius: 30px;
  backdrop-filter: blur(6px);
}

.portfolio-ver-icon {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 30px; height: 30px;
  background: rgba(201,168,76,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0A0C0E;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.portfolio-item:hover .portfolio-ver-icon { opacity: 1; transform: scale(1); }

.portfolio-info {
  padding: 1rem 1.2rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.portfolio-info-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-local {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.portfolio-ver-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: gap 0.25s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.portfolio-ver-link:hover { gap: 0.5rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 900px; width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(201,168,76,0.3); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==============================================
   ACABAMENTOS
   ============================================== */
#acabamentos { background: var(--dark); }

.acabamentos-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.acabamentos-content { order: 1; }
.acabamentos-img-wrap { order: 2; }
.acabamentos-img {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.acabamentos-list { margin: 2rem 0 2.5rem; }
.acabamento-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.acabamento-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.acabamento-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2px;
  font-family: var(--font-body);
}
.acabamento-text h4 { color: var(--white); margin-bottom: 0.2rem; font-size: 1rem; }
.acabamento-text p  { font-size: 0.84rem; color: var(--text-muted); }

/* ==============================================
   DECK
   ============================================== */
#deck {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.deck-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lixadora-adm.lovable.app/assets/deck-C2ou4Jre.jpg');
  background-size: cover;
  background-position: center right;
  transition: transform 0.6s ease;
}
#deck:hover .deck-bg { transform: scale(1.03); }

.deck-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(4,7,12,0.90) 0%,
    rgba(4,7,12,0.78) 45%,
    rgba(4,7,12,0.35) 100%
  );
}

.deck-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 5rem 0;
}
.deck-content h2 { margin-bottom: 1rem; color: var(--white); }
.deck-content p   { color: rgba(232,228,220,0.72); margin-bottom: 2rem; line-height: 1.8; font-size: 0.95rem; }
.deck-content .hl { color: var(--gold); }

/* ==============================================
   STATS
   ============================================== */
#stats {
  background: var(--dark-3);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==============================================
   DEPOIMENTOS
   ============================================== */
#depoimentos { background: var(--dark-2); }

.dep-header { text-align: center; margin-bottom: 3.5rem; }
.dep-header p { color: var(--text-muted); margin-top: 0.6rem; }

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

.dep-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.dep-card:hover {
  border-color: rgba(201,168,76,0.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.dep-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.12em; }
.dep-text  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }

.dep-author { display: flex; align-items: center; gap: 0.8rem; }
.dep-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0A0C0E;
  flex-shrink: 0;
}
.dep-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.dep-city { font-size: 0.75rem; color: var(--text-muted); }

/* ==============================================
   CTA FINAL
   ============================================== */
#cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lixadora-adm.lovable.app/assets/hero-floor-CAnVfHKl.jpg');
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,7,12,0.86);
}

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

.cta-content .section-label {
  justify-content: center;
  margin-bottom: 1rem;
}
.cta-content .section-label::before { display: none; }

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-content h2 em { color: var(--gold); font-style: italic; display: block; }
.cta-content p { color: rgba(232,228,220,0.65); margin-bottom: 2.5rem; font-size: 0.95rem; line-height: 1.7; }

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

.cta-badges-line {
  margin-top: 1.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.cta-badges-line span { color: var(--gold); font-size: 0.6rem; }

/* ==============================================
   FOOTER
   ============================================== */
#footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-info { font-size: 0.78rem; color: var(--text-dim); line-height: 1.7; }
.footer-info a { color: var(--text-muted); transition: color 0.3s; }
.footer-info a:hover { color: var(--gold); }

.footer-logo img { height: 90px; opacity: 0.75; }

.footer-contact { text-align: right; font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { opacity: 0.8; }

/* ==============================================
   WHATSAPP FLOAT â€” DOURADO
   ============================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  box-shadow: 0 4px 22px rgba(201,168,76,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: pulseGold 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(201,168,76,0.8);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #0A0C0E; }

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 22px rgba(201,168,76,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(201,168,76,0.8), 0 0 0 10px rgba(201,168,76,0.1); }
}

/* ==============================================
   SCROLL REVEAL
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==============================================
   RESPONSIVE â€” 1024px
   ============================================== */
@media (max-width: 1024px) {
  .transformacao-inner,
  .acabamentos-inner { gap: 3rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================================
   RESPONSIVE â€” 768px (mobile)
   ============================================== */
@media (max-width: 768px) {

  /* NAV */
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img {
    height: 60px;
  }
  .nav-cta { display: flex; }
  .nav-cta .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  /* HERO â€” tÃ­tulo menor, espaÃ§o do header fixo */
  .hero-content {
    padding-top: 6rem;
  }
  .hero-tag {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.9rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .hero-desc {
    font-size: 0.875rem;
    margin-bottom: 1.6rem;
    max-width: 100%;
  }

  /* BOTÃ•ES HERO â€” empilhados, largura total, sem corte de texto */
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    justify-content: center;
    padding: 1rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  /* Badges hero */
  .hero-badges { gap: 1rem; }

  /* Outras seÃ§Ãµes */
  .transformacao-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .transformacao-img   { height: 300px; }
  .img-badge           { bottom: -12px; right: 12px; }

  .acabamentos-inner    { grid-template-columns: 1fr; }
  .acabamentos-img-wrap { order: -1; }
  .acabamentos-img      { height: 280px; }

  .deck-content { padding: 4rem 0; }

  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .dep-grid       { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .footer-inner   { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }

  section.section-pad { padding: 4rem 0; }
}

/* ==============================================
   RESPONSIVE â€” 480px (telas muito pequenas)
   ============================================== */
@media (max-width: 480px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-badges   { gap: 0.8rem; flex-direction: column; }

  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .hero-btns .btn {
    font-size: 0.64rem;
    padding: 0.9rem 0.8rem;
  }
}
