/* =============================================
       VARIÁVEIS & RESET
    ============================================= */
:root {
  --bg: #0b0c0e;
  --bg-card: #111316;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #b8a97a; /* dourado amadurecido */
  --accent2: #d4c99a;
  --text: #e8e6e1;
  --text-dim: #8a8680;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

/* =============================================
       UTILITÁRIOS
    ============================================= */
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 0.8rem;
}

/* =============================================
       BOTÕES
    ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent);
  color: #0b0c0e;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(184, 169, 122, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =============================================
       SCROLL REVEAL
    ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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;
}

/* =============================================
       NAVBAR
    ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    padding 0.4s;
}
#navbar.scrolled {
  background: rgba(11, 12, 14, 0.88);
  backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  margin-left: 0.8rem;
}

/* Hamburguer */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.nav-mobile a:hover {
  color: var(--accent);
}
.nav-mobile-close {
  position: absolute;
  top: 1.6rem;
  right: 5.5vw;
  font-size: 2rem;
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}

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

/* Blobs de fundo */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(184, 169, 122, 0.18) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(184, 169, 122, 0.08) 0%,
    transparent 70%
  );
  bottom: 50px;
  left: -80px;
}

/* Grid de pontos decorativo */
.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(184, 169, 122, 0.12) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at 80% 50%, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-num span {
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* Placeholder da foto hero */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 420px;
  height: 520px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 2px solid rgba(184, 169, 122, 0.25);
  background: var(--bg-card);
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #111316 0%, #1a1b1f 100%);
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
}
.hero-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}
/* Anel decorativo */
.hero-photo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 169, 122, 0.2);
  animation: spin 30s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-photo-chip {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-photo-chip svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.hero-chip-1 {
  bottom: 60px;
  left: -20px;
}
.hero-chip-2 {
  top: 80px;
  right: -20px;
}

/* =============================================
       SOBRE
    ============================================= */
#sobre {
  padding: 8rem 0;
  position: relative;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-photo {
  position: relative;
}
.sobre-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.sobre-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}
.sobre-photo-placeholder svg {
  width: 64px;
  opacity: 0.3;
}
.sobre-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    rgba(184, 169, 122, 0.3) 100%
  );
  z-index: -1;
}

.sobre-texto p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.sobre-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.sobre-skill {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: all 0.25s;
}
.sobre-skill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =============================================
       SERVIÇOS
    ============================================= */
#servicos {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0f12 100%);
}
.servicos-header {
  text-align: center;
  margin-bottom: 4rem;
}
.servicos-header .section-sub {
  margin-inline: auto;
}

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

.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    transform 0.35s var(--ease),
    box-shadow 0.35s;
  cursor: default;
}
.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 169, 122, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.servico-card:hover {
  border-color: rgba(184, 169, 122, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.4);
}
.servico-card:hover::before {
  opacity: 1;
}

.servico-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(184, 169, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: background 0.35s;
}
.servico-card:hover .servico-icon {
  background: rgba(184, 169, 122, 0.2);
}
.servico-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.servico-num {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
}

.servico-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.servico-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.servico-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.servico-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.servico-feature::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* =============================================
       PORTFÓLIO
    ============================================= */
#portfolio {
  padding: 8rem 0;
}
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111316 0%, #171920 100%);
}
.portfolio-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.portfolio-placeholder-inner svg {
  width: 40px;
  opacity: 0.25;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 14, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(4px);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.portfolio-overlay-cat {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-overlay-link {
  margin-top: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s;
}
.portfolio-overlay-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* =============================================
       DIFERENCIAIS
    ============================================= */
#diferenciais {
  padding: 8rem 0;
  background: linear-gradient(180deg, #0e0f12 0%, var(--bg) 100%);
}
.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.diferencial-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
  cursor: default;
}
.diferencial-item:hover {
  border-color: var(--border);
  background: var(--bg-glass);
}
.diferencial-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(184, 169, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diferencial-icon svg {
  width: 20px;
  color: var(--accent);
}
.diferencial-texto h4 {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.diferencial-texto p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Lado direito — big quote */
.diferenciais-quote {
  position: relative;
}
.diferenciais-quote-mark {
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 1;
  color: rgba(184, 169, 122, 0.08);
  position: absolute;
  top: -2rem;
  left: -1rem;
  user-select: none;
}
.diferenciais-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.diferenciais-quote-text em {
  color: var(--accent);
  font-style: italic;
}
.diferenciais-quote-author {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.dqa-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.dqa-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* =============================================
       DEPOIMENTOS
    ============================================= */
#depoimentos {
  padding: 8rem 0;
}
.depo-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.depo-header .section-sub {
  margin-inline: auto;
}

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

.depo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease);
  cursor: default;
}
.depo-card:hover {
  border-color: rgba(184, 169, 122, 0.3);
  transform: translateY(-4px);
}
.depo-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.depo-stars svg {
  width: 16px;
}
.depo-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184, 169, 122, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.depo-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.depo-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* =============================================
       CTA FINAL
    ============================================= */
#cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0e0f12 0%, var(--bg) 100%);
}
.cta-inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(184, 169, 122, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner .section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.cta-inner .section-sub {
  margin-inline: auto;
  margin-top: 1.2rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

/* =============================================
       CONTATO
    ============================================= */
#contato {
  padding: 8rem 0;
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contato-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.contato-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contato-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(184, 169, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato-item-icon svg {
  width: 20px;
  color: var(--accent);
}
.contato-item-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contato-item-val {
  font-weight: 500;
  color: var(--white);
  margin-top: 0.2rem;
}

/* Formulário */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3a3a40;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group textarea {
  min-height: 130px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8680' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group select option {
  background: #111316;
}
.form-submit {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

/* =============================================
       FOOTER
    ============================================= */
#footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-logo span {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  gap: 1.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.25s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-social svg {
  width: 16px;
}

/* =============================================
       RESPONSIVO
    ============================================= */
@media (max-width: 900px) {
  .hero-inner,
  .sobre-inner,
  .diferenciais-inner,
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-photo-wrap {
    order: -1;
  }
  .hero-photo-frame {
    width: 300px;
    height: 360px;
  }
  .servicos-grid,
  .depo-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-item:first-child {
    grid-column: span 2;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .diferenciais-quote-mark {
    font-size: 7rem;
  }
}

@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item:first-child {
    grid-column: span 1;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.2rem;
  }
  .hero-photo-chip {
    display: none;
  }
}

/* =============================================
         SEÇÃO PROBLEMA
      ============================================= */
#problema {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0f12 100%);
}
.problema-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.problema-left .section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.problema-texto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
}
.problema-texto p {
  font-size: 1.02rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.problema-texto p strong {
  color: var(--text);
}
.problema-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.problema-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease);
}
.problema-card:hover {
  border-color: rgba(184, 169, 122, 0.35);
  transform: translateX(6px);
}
.problema-card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(184, 169, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.problema-card-icon svg {
  width: 16px;
  color: var(--accent);
}
.problema-card-text h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.problema-card-text p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.problema-solucao {
  margin-top: 1.6rem;
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--accent);
  background: rgba(184, 169, 122, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.problema-solucao p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}
@media (max-width: 900px) {
  .problema-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =============================================
         SEÇÃO COMO FUNCIONA
      ============================================= */
#como-funciona {
  padding: 8rem 0;
  background: linear-gradient(180deg, #0e0f12 0%, var(--bg) 100%);
}
.como-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.como-header .section-sub {
  margin-inline: auto;
}
.como-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.como-steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    rgba(184, 169, 122, 0.15) 100%
  );
  z-index: 0;
}
.como-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.2rem;
  position: relative;
  z-index: 1;
}
.como-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
.como-step:hover .como-step-num {
  background: var(--accent);
  color: var(--bg);
}
.como-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184, 169, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s;
}
.como-step:hover .como-step-icon {
  background: rgba(184, 169, 122, 0.2);
}
.como-step-icon svg {
  width: 20px;
  color: var(--accent);
}
.como-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.como-step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .como-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .como-steps::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .como-steps {
    grid-template-columns: 1fr;
  }
}

/* =============================================
         PORTFÓLIO — overlay com Problema/Solução/Resultado
      ============================================= */
.portfolio-item .portfolio-overlay {
  padding: 1.8rem;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}
.portfolio-overlay-cat {
  margin-bottom: 0.4rem;
}
.portfolio-overlay-title {
  margin-bottom: 1rem;
}
.portfolio-detail-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.portfolio-detail-item {
  font-size: 0.78rem;
  color: rgba(232, 230, 225, 0.75);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.portfolio-detail-item strong {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.05rem;
}

/* =============================================
         MICROCOPY & AJUSTES
      ============================================= */
.hero-autoridade {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.8rem;
  margin-top: -0.4rem;
}
.cta-nota {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}
.form-nota {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-nota::before {
  content: "⏱";
  font-size: 0.9em;
}
.wpp-hint {
  font-size: 0.72rem;
  color: var(--accent);
  margin-left: 0.3rem;
  opacity: 0.85;
}
