/* ============================
   IMPORTS & VARIABLES
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Epilogue:wght@300;400;500;600&display=swap');

:root {
  --bg: #FEFCF9;
  --primary: #2D2D2D;
  --accent: #6d28d9;
  --muted: #9E9E9E;
  --surface: #F5F2EC;
  --border: #E8E2D9;
  --white: #ffffff;
  --nav-height: 70px;
}

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

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

body {
  background-color: var(--bg);
  color: var(--primary);
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================
   NAVIGATION
   ============================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(254, 252, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(45, 45, 45, 0.06);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #551fa9;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.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: 1.5px;
  background: var(--primary);
  transition: all 0.3s ease;
}

/* ============================
   SECTIONS BASE
   ============================ */
section {
  padding: 100px 5vw;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ============================
   HERO
   ============================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.btn-primary {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.25);
}

.btn-outline {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================
   SOBRE
   ============================ */
#sobre {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-photo-wrap {
  position: relative;
}

.sobre-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(15%);
  display: block;
}

/* Placeholder para a foto */
.sobre-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e8e2d9 0%, #d4cdc3 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sobre-photo-placeholder::after {
  content: 'AL';
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(45,45,45,0.15);
  letter-spacing: -0.05em;
}

.sobre-photo-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.5;
}

.sobre-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.sobre-content h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.sobre-content > p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.diferenciais {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.diferenciais li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.diferenciais li::before {
  content: '→';
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.numbers-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.number-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.number-item strong {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.number-item span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================
   SERVIÇOS
   ============================ */
#servicos {
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1rem;
  color: #6a6a6a;
  line-height: 1.7;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.servico-card {
  background: var(--bg);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.servico-card:hover {
  background: var(--surface);
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 40, 217, 0.08);
  border-radius: 2px;
  flex-shrink: 0;
}

.servico-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.servico-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.servico-card p {
  font-size: 0.9rem;
  color: #6a6a6a;
  line-height: 1.7;
  flex-grow: 1;
}

.servico-price {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================
   TRABALHOS
   ============================ */
#trabalhos {
  background: var(--primary);
  padding: 100px 5vw;
}

#trabalhos .section-label {
  color: rgba(109, 40, 217, 0.9);
}

#trabalhos .section-header h2 {
  color: var(--white);
}

#trabalhos .section-header p {
  color: rgba(255,255,255,0.5);
}

.trabalhos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
}

.trabalho-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.trabalho-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

/* Placeholder colorido para os trabalhos */
.trabalho-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.trabalho-placeholder.p1 { background: linear-gradient(135deg, #3a3028 0%, #5c4a3a 100%); }
.trabalho-placeholder.p2 { background: linear-gradient(135deg, #2a3040 0%, #3d4f6a 100%); }
.trabalho-placeholder.p3 { background: linear-gradient(135deg, #2e2a36 0%, #4a3f5a 100%); }
.trabalho-placeholder.p4 { background: linear-gradient(135deg, #1e3030 0%, #2d4a46 100%); }

.trabalho-label {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: rgba(255,255,255,0.3);
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  pointer-events: none;
}

.trabalho-overlay {
  position: absolute;
  inset: 0;
  background: rgba(109, 40, 217, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trabalho-item:hover .trabalho-overlay {
  opacity: 1;
}

.trabalho-item:hover .trabalho-bg {
  transform: scale(1.05);
}

.trabalho-overlay h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.05s;
}

.trabalho-item:hover .trabalho-overlay h4 {
  transform: translateY(0);
}

.trabalho-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.1s;
}

.trabalho-item:hover .trabalho-overlay p {
  transform: translateY(0);
}

.trabalho-overlay span {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.15s, color 0.2s ease;
}

.trabalho-item:hover .trabalho-overlay span {
  transform: translateY(0);
  color: white;
}

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

.depoimentos-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.carousel {
  position: relative;
}

.carousel-track {
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-slide {
  min-width: 100%;
  padding: 3.5rem 4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
}

.depoimento-slide::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(109, 40, 217, 0.1);
  position: absolute;
  top: -10px;
  left: 30px;
  line-height: 1;
}

.depoimento-texto {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.autor-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--border) 0%, #c8bfb2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
}

.autor-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.autor-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--primary);
}

.carousel-prev:hover,
.carousel-next:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(109, 40, 217, 0.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dots button.active {
  background: var(--accent);
  width: 22px;
  border-radius: 3px;
}

/* ============================
   CTA FINAL
   ============================ */
#cta-final {
  background: var(--accent);
  padding: 120px 5vw;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

#cta-final::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
}

.cta-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.cta-headline em {
  font-style: italic;
  font-weight: 300;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.8rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-final {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 52px;
  background: var(--white);
  color: var(--accent);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta-final:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta-garantia {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.cta-garantia svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--primary);
  padding: 60px 5vw 40px;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Intersection observer fade-in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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
   ============================ */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre-photo-wrap {
    max-width: 360px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 1.5px;
  }

  .trabalhos-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 2rem 5vw;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }

  .nav-links.open + .nav-cta {
    display: block;
    padding: 0 5vw 2rem;
    position: fixed;
    top: calc(var(--nav-height) + 220px);
    left: 0;
    right: 0;
    background: var(--bg);
  }

  .depoimento-slide {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 600px) {
  section { padding: 70px 5vw; }

  .hero-name {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .numbers-row {
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================
   PRINT
   ============================ */
@media print {
  nav, .hero-scroll-indicator, .carousel-controls, .cta-garantia { display: none !important; }

  section { padding: 40px 0; page-break-inside: avoid; }

  #hero { min-height: auto; padding-top: 20px; }

  .sobre-grid, .trabalhos-grid { grid-template-columns: 1fr; }

  .trabalho-item { aspect-ratio: auto; height: 160px; }

  .trabalho-overlay { opacity: 1; position: relative; background: rgba(200,75,49,0.1); }

  #trabalhos, #cta-final { background: white !important; }

  #trabalhos .section-header h2, #trabalhos .section-label,
  #cta-final .cta-headline, #cta-final .cta-eyebrow, #cta-final .cta-sub { color: var(--primary) !important; }

  .servicos-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; background: none; border: none; }

  .servico-card { border: 1px solid var(--border); }

  footer { background: white; color: var(--primary); }

  .footer-brand h3, .footer-col ul li a { color: var(--primary) !important; }

  * { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}
