/* ── HERO ─────────────────────────────────────── */
.hero {
  height: calc(100vh - 68px - 52px);
  background: #1a1508;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 40px 64px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: saturate(0.6);
}


.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #846f29 1%, rgba(58, 47, 18, 0.3) 100%);
}
.hero h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero > .hero-content > p {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}



.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,0.25), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-right: 80px;
}

/* ── BADGE ────────────────────────────────────── */
/* ── BADGE ────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge svg {
  color: var(--gold-light);
  flex-shrink: 0;
}
/* ── TÍTULO ───────────────────────────────────── */
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}


.hero > .hero-content > p {
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 460px;
}


/* ── BOTÕES ───────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline--light {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline--light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── STATS ────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(20px, 3vh, 48px);
  padding-top: clamp(16px, 2vh, 32px);
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: nowrap;
}


.hero-stat { display: flex; flex-direction: column; gap: 5px; }

.stat-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ── CARDS LADO DIREITO ───────────────────────── */
.hero-visual {
  width: 100%;
  justify-self: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 8px;
  overflow: hidden;
background: rgba(26, 21, 8, 0.5);
backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-acc-hint {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(212,160,23,0.15);
  background: rgba(212,160,23,0.06);
}

.hero-acc-item:last-child { border-bottom: none; }
.hero-acc-item.active { background: rgba(212,160,23,0.08); }


.hero-acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(10px, 1.5vh, 18px) 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-acc-header:hover { background: rgba(212,160,23,0.06); }

.hero-acc-icon { color: var(--gold); opacity: 0.8; flex-shrink: 0; }

.hero-acc-label {
  flex: 1;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.hero-acc-item.active .hero-acc-label {
  color: var(--white);
  font-weight: 700;
}

.hero-acc-price {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--gold-light);
  white-space: nowrap;
  font-weight: 600;
}


.hero-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.hero-acc-item.active .hero-acc-body {
  max-height: 140px;
  padding: 0 24px 20px;
}

.hero-acc-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 400;
}

.hero-acc-body a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.hero-acc-body a:hover { opacity: 0.7; }
.hero-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(212,160,23,0.15);
}
.hero-acc-hint {
  padding: clamp(8px, 1.2vh, 16px) 24px;
  border-bottom: 1px solid rgba(212,160,23,0.15);
  background: rgba(212,160,23,0.06);
}
#hintText {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  display: block;
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%   { opacity: 0.4; transform: translateX(0); }
  50%  { opacity: 1;   transform: translateX(4px); }
  100% { opacity: 0.4; transform: translateX(0); }
}

.hero-tab {
  padding: 10px 4px;
  background: none;
  border: none;
  border-right: 1px solid rgba(212,160,23,0.1);
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.hero-tab:last-child { border-right: none; }
.hero-tab:hover { color: rgba(255,255,255,0.7); background: rgba(212,160,23,0.05); }
.hero-tab.active {
  color: var(--gold);
  background: rgba(212,160,23,0.08);
  border-bottom-color: var(--gold);
}

.hero-tab-content { padding: 32px 28px; min-height: 180px; }

.hero-tab-panel { display: none; animation: fadeUp 0.3s ease; }
.hero-tab-panel.active { display: block; }

.ht-icon { color: var(--gold); opacity: 0.8; margin-bottom: 16px; }
.ht-price {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.ht-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}
.ht-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ht-link:hover { opacity: 0.7; }

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}
.hero-list-item:last-child { border-bottom: none; }

.hero-list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}
.hero-list-item:hover { background: rgba(212,160,23,0.08); }
.hero-list-item:hover::before { transform: scaleY(1); }
.hero-list-item:hover .hero-list-arrow { opacity: 1; transform: translateX(0); }

.hero-list-icon { color: var(--gold); opacity: 0.8; flex-shrink: 0; }

.hero-list-label {
  flex: 1;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.hero-list-price {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
  white-space: nowrap;
}

.hero-list-arrow {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-left: 8px;
}

.hero-card:hover {
  background: rgba(212,160,23,0.14);
  border-color: rgba(212,160,23,0.55);
  color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.hero-card-icon {
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.hero-card:hover .hero-card-icon { opacity: 1; }

/* ── PROMO PULSE ──────────────────────────────── */
/* ── PROMO PULSE ──────────────────────────────── */
.promo-banner {
  background: var(--gold);
  padding: 16px 64px;
  position: relative;
  overflow: hidden;
}

/* Efeito de luz a varrer */
.promo-banner::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  animation: promoShine 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes promoShine {
  0%   { left: -60px; }
  100% { left: 110%; }
}

/* Borda superior pulsante */
.promo-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #b8880f,
    var(--gold-light),
    #fff8e0,
    var(--gold-light),
    #b8880f
  );
  background-size: 200% 100%;
  animation: promoBorderFlow 2s linear infinite;
}

@keyframes promoBorderFlow {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.promo-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.6);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.promo-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #b8880f;
  border-radius: 50%;
  animation: dotPulse 1s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(184,136,15,0.5);
}

@keyframes dotPulse {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(184,136,15,0.6); }
  50%  { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(184,136,15,0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(184,136,15,0); }
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: promoItemPulse 2s ease-in-out infinite;
}
.promo-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes promoItemPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

.promo-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.promo-price {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.promo-price small {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(13, 27, 42, 0.7);
}

.promo-sep {
  color: rgba(13,27,42,0.25);
  font-size: 1.2rem;
}
/* ── BENEFITS BAR ─────────────────────────────── */
.benefits-bar {
  background: #120f04;
  border-bottom: 2px solid rgba(212,160,23,0.2);
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.benefit-item svg { color: var(--gold); flex-shrink: 0; }
.benefit-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(212,160,23,0.3);
}

/* ── STATS SECTION ────────────────────────────── */
css.stats-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/azulejos.jpg');
  background-repeat: repeat;
  background-size: 500px;
  opacity: 0.94;
  z-index: 0;
}

.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,21,8,0.92);
  z-index: 1;
  pointer-events: none;
}

.stats-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  border: none;
  border-top: 1px solid rgba(212,160,23,0.15);
  position: relative;
  z-index: 2;
}

.stat-block {
  flex: 1;
  text-align: center;
  padding: 56px 24px;
  position: relative;
  transition: background 0.2s;
  border-right: 1px solid rgba(212,160,23,0.1);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(212,160,23,0.06); }

.stat-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-desc {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.stat-divider { display: none; }

/* ── SERVIÇOS RESUMO ──────────────────────────── */
.servicos-resumo {
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.servicos-resumo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/azulejos.jpg');
  background-repeat: repeat;
  background-size: 500px;
  opacity: 0.96;
  z-index: 0;
}

.servicos-resumo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--cream) 10%, #f5edcc 100%);
  opacity: 0.92;
  z-index: 1;
  pointer-events: none;
}

.servicos-resumo > * {
  position: relative;
  z-index: 2;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
  margin-bottom: 52px;
  position: relative;
  z-index: 3;
}
.servico-card {
  background: rgba(212, 196, 23, 0.19);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  position: relative;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
  z-index: 1;
}

.servico-card:hover {
  background: rgba(212, 196, 23, 0.41);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(212,160,23,0.2);
  border-color: rgba(212,160,23,0.5);
  z-index: 3;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}


.servico-card:hover::after { width: 100%; }
  color: var(--gold);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.servico-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
}
.servico-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
  flex: 1;
}
.servicos-cta a.btn-primary {
  background: rgba(212,160,23,0.85);
  border: 2px solid rgba(212,160,23,0.4);
  color: var(--navy);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
}

.servicos-cta a.btn-primary:hover {
  background: rgba(212,160,23,0.95);
  border-color: var(--gold);
  transform: scale(1.22);
  box-shadow: 0 18px 118px rgba(212,160,23,0.3);
}
.servico-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 6px;
}

.servicos-cta { text-align: center; }
.servicos-cta .btn-primary {
  background: rgba(212,160,23,0.85);
  border: 2px solid rgba(212,160,23,0.4);
  color: var(--navy);
  backdrop-filter: blur(4px);
}

.servicos-cta .btn-primary:hover {
  background: rgba(212,160,23,0.95);
  border-color: var(--gold);
}

/* ── CTA SECTION ──────────────────────────────── */
.cta-card {
  background: #1a1508;
  border-radius: 6px;
  border: 1px solid rgba(212,160,23,0.25);
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(212,160,23,0.12), transparent 70%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
/* ── CTA + ORÇAMENTO FUNDIDOS ─────────────────── */
.cta-orcamento {
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.cta-orcamento::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/azulejos.jpg');
  background-repeat: repeat;
  background-size: 500px;
  opacity: 0.96;
  z-index: 0;
}

.cta-orcamento::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #f5edcc 0%, #ede0a8 100%);
  opacity: 0.93;
  z-index: 1;
  pointer-events: none;
}

.cta-orc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: start;
}

.cta-orc-left .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-orc-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-orc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.orcamento-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.orcamento-list li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.orcamento-list li svg { color: var(--gold); flex-shrink: 0; }

.cta-orc-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.info-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 4px;
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  text-decoration: none;
  color: var(--navy);
  backdrop-filter: blur(4px);
}
.info-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  background: rgba(255,255,255,0.9);
}
.info-card-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.info-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}


.info-card a { color: var(--gold); font-weight: 500; }

@media (max-width: 900px) {
  .cta-orcamento { padding: 70px 20px; }
  .cta-orc-inner { grid-template-columns: 1fr; gap: 48px; }
}
/* ── AZULEJO PATTERN ──────────────────────────── */
.hero-azulejo {
  position: absolute;
  top: 0; right: 0;
  width: 320px;
  height: 100%;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M0 0 L40 0 L40 40 L0 40 Z' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Cpath d='M40 0 L80 0 L80 40 L40 40 Z' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Cpath d='M0 40 L40 40 L40 80 L0 80 Z' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Cpath d='M40 40 L80 40 L80 80 L40 80 Z' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='12' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Ccircle cx='0' cy='0' r='12' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Ccircle cx='80' cy='0' r='12' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Ccircle cx='0' cy='80' r='12' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Ccircle cx='80' cy='80' r='12' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23d4a017' stroke-width='0.5'/%3E%3Cpath d='M60 0 L80 20 L60 40 L40 20 Z' fill='none' stroke='%23d4a017' stroke-width='0.5'/%3E%3Cpath d='M20 40 L40 60 L20 80 L0 60 Z' fill='none' stroke='%23d4a017' stroke-width='0.5'/%3E%3Cpath d='M60 40 L80 60 L60 80 L40 60 Z' fill='none' stroke='%23d4a017' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .hero { padding: 100px 40px 80px; }
  .hero-visual { width: 240px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 24px 60px;
    text-align: center;
  }
  .hero::before { display: none; }
  .hero-content { padding-right: 0; max-width: 100%; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero > .hero-content > p { margin: 0 auto 44px; }
  .hero-visual { display: none; }
  .benefits-bar { padding: 16px 20px; gap: 14px; }
  .benefit-dot { display: none; }
  .stats-section { padding: 0; }
  .stats-card { flex-direction: column; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(212,160,23,0.1); }
  .stat-block:last-child { border-bottom: none; }
  .servicos-resumo { padding: 70px 20px; }
  .servicos-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 0 20px 70px; }
  .cta-card { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .orcamento { padding: 70px 20px; }
  .orcamento-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 500px) {
  .promo-banner { padding: 14px 20px; }
  .hero { padding: 100px 20px 50px; }
}/* ── PORQUE NÓS ───────────────────────────────── */
.porque-nos {
  padding: 100px 64px;
  background: #1a1508;
  position: relative;
  overflow: hidden;
}

.porque-nos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/azulejos.jpg');
  background-repeat: repeat;
  background-size: 500px;
  opacity: 0.76;
  z-index: 0;
}

.porque-nos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,21,8,0.92);
  z-index: 1;
  pointer-events: none;
}

.porque-nos > * {
  position: relative;
  z-index: 2;
}

.porque-header {
  margin-bottom: 64px;
}

.porque-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.porque-lista::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,0.3), transparent);
}

.porque-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid rgba(212,160,23,0.08);
  align-items: center;
  transition: all 0.25s ease;
  position: relative;
}
.porque-item:last-child { border-bottom: none; }
.porque-item:hover { padding-left: 16px; }

.porque-num {
  font-family: var(--font-title);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(212,160,23,0.35);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
  user-select: none;
}
.porque-item:hover .porque-num {
  color: rgba(212,160,23,0.6);
}

.porque-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.porque-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.25s ease;
  background: rgba(212,160,23,0.05);
}
.porque-item:hover .porque-icon-wrap {
  background: rgba(212,160,23,0.12);
  border-color: var(--gold);
}

.porque-text { flex: 1; }

.porque-text h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.porque-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

.porque-tag {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(212,160,23,0.5);
  white-space: nowrap;
  letter-spacing: 0.05em;
  margin-left: auto;
  padding-left: 32px;
  transition: color 0.25s ease;
}
.porque-item:hover .porque-tag { color: var(--gold); }

@media (max-width: 900px) {
  .porque-nos { padding: 70px 20px; }
  .porque-lista::before { left: 40px; }
  .porque-item { grid-template-columns: 80px 1fr; padding: 28px 0; }
  .porque-num { font-size: 4rem; }
  .porque-content { flex-wrap: wrap; gap: 16px; }
  .porque-tag { display: none; }
  .porque-text h3 { font-size: 1.3rem; }
}/* ── CATEGORY MODAL ───────────────────────────── */
.cat-modal {
  position: absolute;
  left: 24px;
  top: 84px;
  bottom: 24px;
  width: calc(50% - 48px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(8px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,160,23,0.2);
}

.cat-modal.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.cat-modal::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 80px;
  background: linear-gradient(to right, transparent 0%, rgba(26,21,8,0.4) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: 0 8px 8px 0;
}

.cat-modal-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cat-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
filter: brightness(0.75) saturate(0.9);
  transform: scale(1.08);
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
}

.cat-modal.visible .cat-modal-img img {
  transform: scale(1);
}

.cat-modal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px;
  background: linear-gradient(to top, rgba(26,21,8,0.98) 0%, rgba(26,21,8,0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(16px);
  transition: transform 0.4s ease 0.1s;
}

.cat-modal.visible .cat-modal-info {
  transform: translateY(0);
}

.cat-modal-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.cat-modal-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

.cat-modal-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 380px;
  margin-top: 4px;
}

.cat-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 2px;
  margin-top: 12px;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.cat-modal-link:hover {
  background: var(--gold-light);
}

/* highlight no item ativo */
.hero-acc-item:hover .hero-acc-header {
  background: rgba(212,160,23,0.12);
  border-left: 3px solid var(--gold);
  padding-left: 21px;
}