/* =============================================================
   LUCIANA SANTOS FOTOGRAFIA — CSS PRINCIPAL
   Paleta: Branco · Verde · Preto (cores da logomarca)
   ============================================================= */

/* ─── VARIÁVEIS ──────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --black-2:    #111;
  --dark:       #161616;
  --dark-2:     #1e1e1e;
  --dark-3:     #2a2a2a;

  --green:      #4a8c5c;
  --green-2:    #5ea872;
  --green-3:    #3a7249;
  --green-light:#7ec494;
  --green-pale: rgba(74,140,92,0.10);
  --green-glow: rgba(74,140,92,0.28);

  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --cream:      #f2ede6;
  --gray-1:     #e5e3de;
  --gray-2:     #b0aea8;
  --gray-3:     #787570;
  --gray-4:     #4a4845;

  --gold:       #c9a96e; /* mantido para footer/detalhes antigos */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-f:   9999px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.14);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.22);
  --shadow-green: 0 6px 24px rgba(74,140,92,0.30);

  --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --header-h:   72px;
  --max-w:      1280px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(74,140,92,0.22); }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 99px; }

/* ─── CURSOR ─────────────────────────────────────────────── */
.cursor,.cursor-follower {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: opacity .3s ease;
}
.cursor {
  width: 10px; height: 10px;
  background: var(--green);
  top: -5px; left: -5px;
  transition: transform .1s ease, opacity .3s ease;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(74,140,92,.5);
  top: -18px; left: -18px;
  transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .3s ease;
}
.cursor.is-hover   { transform: scale(2.8); background: var(--green-light); }
.cursor-follower.is-hover { opacity: 0; }
@media (hover:none) { .cursor,.cursor-follower { display:none; } body,button { cursor:auto; } }

/* ─── PROGRESS BAR ───────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg,var(--green-3),var(--green),var(--green-light));
  z-index: 10001; pointer-events: none; transition: width .1s linear;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              transform .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%; padding: 0 clamp(1.25rem,4vw,3rem);
  display: flex; align-items: center; gap: 2rem;
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: filter .4s ease; }
.site-header.is-scrolled .logo-img { filter: none; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: .2rem; }
.main-nav a {
  padding: .5rem .85rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s ease;
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem); height: 2px;
  background: var(--green-light); border-radius: 2px;
  transition: transform .35s var(--ease);
}
.main-nav a:hover,.main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after,.main-nav a.is-active::after { transform: translateX(-50%) scaleX(1); }
.site-header.is-scrolled .main-nav a { color: var(--gray-3); }
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.is-active { color: var(--black); }
.site-header.is-scrolled .main-nav a::after { background: var(--green); }

/* Fotop link */
.nav-fotop {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  border-radius: var(--radius-f) !important;
  color: rgba(255,255,255,.85) !important;
  transition: all .3s ease !important;
}
.nav-fotop::after { display:none !important; }
.nav-fotop:hover { border-color: var(--green-light) !important; color: var(--green-light) !important; background: rgba(74,140,92,.1); }
.site-header.is-scrolled .nav-fotop { border-color: var(--green) !important; color: var(--green) !important; }
.site-header.is-scrolled .nav-fotop:hover { background: var(--green-pale); }

/* CTA button header */
.btn-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.25rem;
  background: var(--green); color: var(--white) !important;
  border-radius: var(--radius-f);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--green-2); transform: translateY(-1px); box-shadow: var(--shadow-green); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: .5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: all .35s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: var(--black); z-index: 998;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: all .5s var(--ease);
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-nav-overlay nav ul { display: flex; flex-direction: column; gap: .25rem; text-align: center; }
.mobile-link {
  display: block; padding: .8rem 2rem;
  font-family: var(--font-serif); font-size: 2.2rem;
  font-weight: 300; font-style: italic;
  color: var(--gray-2); transition: color .2s;
}
.mobile-link:hover { color: var(--green-light); }
.mobile-fotop { font-style: normal; font-size: 1rem !important; color: var(--green-light) !important; letter-spacing: .12em; text-transform: uppercase; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.4rem; color: var(--gray-3);
  transition: color .2s; cursor: none;
}
.mobile-nav-close:hover { color: var(--white); }
.mobile-cta { margin-top: .5rem; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem,4vw,4rem); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 2rem;
  background: var(--green); color: var(--white);
  border-radius: var(--radius-f);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .35s var(--ease);
  cursor: none; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--green-2); opacity: 0;
  transition: opacity .3s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-primary span,.btn-primary i { position: relative; z-index: 1; }
.btn-primary.btn-lg { padding: 1rem 2.5rem; font-size: .9rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 2rem;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius-f);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: all .3s ease; cursor: none;
}
.btn-ghost:hover { border-color: var(--green-light); color: var(--green-light); transform: translateY(-1px); }

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--green); margin-bottom: .85rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem,5.5vw,4.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--black); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--green); }
.section-desc { font-size: clamp(.9rem,2vw,1.05rem); color: var(--gray-3); line-height: 1.75; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(3rem,8vh,5.5rem) 0;
  background: var(--black); overflow: hidden;
}

/* Green accent top line */
.hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,transparent,var(--green),var(--green-light),transparent);
  z-index: 5;
}

/* Filmstrip */
.filmstrip-container { position: absolute; inset: 0; overflow: hidden; }
.filmstrip-track {
  display: flex; height: 100%; gap: 0;
  animation: filmScroll 30s linear infinite;
}
.film-item { flex-shrink: 0; height: 100%; }
.film-item img {
  height: 100%; width: auto; min-width: 320px;
  object-fit: cover;
  filter: grayscale(20%) brightness(.55) contrast(1.05);
}
@keyframes filmScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Hero overlay */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.55) 55%,rgba(0,0,0,.78) 100%);
}

/* Hero centered container */
.hero-centered {
  display: flex; flex-direction: column; align-items: center;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(1.5rem,5vw,5rem);
  text-align: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1.25rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(94,168,114,.3);
  border-radius: var(--radius-f);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem,8vw,7.5rem);
  font-weight: 300; line-height: 1.02;
  color: var(--white); margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}
.hero-title em { font-style: italic; color: var(--green-light); }

.hero-subtitle {
  font-size: clamp(.95rem,2vw,1.15rem);
  color: rgba(255,255,255,.55);
  line-height: 1.7; margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,5rem); margin-top: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
}
.stat-item { display: flex; flex-direction: column; gap: .15rem; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 300; color: var(--green-light); line-height: 1;
}
.stat-label {
  font-size: .67rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; right: clamp(1.5rem,4vw,4rem); z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom,var(--green-light),transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-section {
  background: var(--black); overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(74,140,92,.2);
  border-bottom: 1px solid rgba(74,140,92,.2);
}
.marquee-track {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-size: clamp(.85rem,2vw,1.05rem); font-style: italic;
  color: var(--gray-3); letter-spacing: .08em;
}
.marquee-track .dot { color: var(--green); font-size: .5rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── PORTFOLIO ──────────────────────────────────────────── */
.portfolio-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--off-white); }

/* Filters */
.portfolio-filters { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius-f);
  background: var(--white);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-3);
  transition: all .3s ease; cursor: none;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 280px;
}

.portfolio-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: none;
  transition: transform .5s var(--ease), opacity .4s ease;
}
.portfolio-card:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.portfolio-card.is-hidden { opacity: 0; pointer-events: none; transform: scale(.96); }

.card-inner { position: relative; width: 100%; height: 100%; }
.card-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s var(--ease), filter .5s ease;
  filter: brightness(.85) saturate(.9);
}
.portfolio-card:hover .card-inner img { transform: scale(1.07); filter: brightness(.65) saturate(1.1); }

.card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.25rem .85rem;
  background: linear-gradient(to top,rgba(0,0,0,.88) 0%,transparent 100%);
  transition: opacity .35s ease;
}
.card-label h3 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--white); line-height: 1.2;
}

.card-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top,rgba(10,30,15,.9) 0%,rgba(10,30,15,.35) 60%,transparent 100%);
  opacity: 0; transition: opacity .4s ease;
}
.card-overlay p { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-top: 2.5rem; }
.portfolio-card:hover .card-overlay { opacity: 1; }
.portfolio-card:hover .card-label { opacity: 0; }

/* Green bottom bar on hover */
.portfolio-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--green-3),var(--green-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.portfolio-card:hover::after { transform: scaleX(1); }

/* ─── ESPECIALIDADES GRID (sem fotos) ───────────────────── */
.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.esp-card {
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: default;
  transition: transform .35s var(--ease),
              border-color .35s ease,
              box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.esp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-3), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.esp-card:hover::before { transform: scaleX(1); }
.esp-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-green);
}

.esp-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.esp-card:hover .esp-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.esp-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.esp-desc {
  font-size: .8rem;
  color: var(--gray-3);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .especialidades-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .esp-card { padding: 1.5rem 1rem; }
}
@media (max-width: 380px) {
  .especialidades-grid { grid-template-columns: 1fr; }
}

/* Callout block */
.portfolio-callout {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
  padding: clamp(1.5rem,3vw,2.5rem) clamp(1.5rem,4vw,3rem);
  background: var(--black); border-radius: var(--radius-xl);
  border-left: 4px solid var(--green);
}
.callout-eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: .65rem;
}
.callout-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem,2.8vw,2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.25; margin-bottom: .7rem;
}
.callout-text h3 em { font-style: italic; color: var(--green-light); }
.callout-text p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ─── SOBRE ──────────────────────────────────────────────── */
.sobre-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem,6vw,7rem); align-items: center;
}

.sobre-image-wrap { position: relative; }
.sobre-img-frame {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 1/1; max-height: 560px;
  background: var(--dark-2);
}
/* Green frame accent */
.sobre-img-frame::before {
  content: ''; position: absolute; inset: -3px;
  background: linear-gradient(135deg,var(--green),transparent 55%,var(--green-3));
  border-radius: inherit; z-index: -1;
}
.sobre-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .8s ease;
}
.sobre-image-wrap:hover .sobre-img-frame img { transform: scale(1.04); }

.sobre-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--green); color: var(--white);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-green);
}
.badge-number { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.badge-number sup { font-size: .9rem; }
.badge-text { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: .3rem; opacity: .9; line-height: 1.4; }

.sobre-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: -1;
  width: 55%; height: 55%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(74,140,92,.2);
}

/* Sobre content */
.sobre-content { display: flex; flex-direction: column; gap: 1.25rem; }
.sobre-content .section-eyebrow { text-align: left; }
.sobre-content .section-title { font-size: clamp(2rem,4.5vw,3.8rem); }
.sobre-lead { font-size: clamp(.95rem,1.8vw,1.05rem); color: var(--gray-3); line-height: 1.85; }
.sobre-lead strong { color: var(--black); font-weight: 600; }
.sobre-text { font-size: .95rem; color: var(--gray-3); line-height: 1.8; }
.sobre-text strong { color: var(--black); font-weight: 600; }
.sobre-text em { color: var(--green-3); font-style: italic; }

/* Features */
.sobre-features { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .85rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  transition: border-color .3s ease, transform .3s ease;
}
.feature-item:hover { border-color: rgba(74,140,92,.3); transform: translateY(-2px); }
.feature-item > i { color: var(--green); font-size: .9rem; margin-top: .15rem; flex-shrink: 0; }
.feature-item div { display: flex; flex-direction: column; gap: .15rem; }
.feature-item strong { font-size: .8rem; font-weight: 600; color: var(--black); }
.feature-item span { font-size: .75rem; color: var(--gray-3); line-height: 1.45; }

/* Quote */
.sobre-quote {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif); font-size: 1rem;
  font-style: italic; color: var(--gray-4); line-height: 1.65;
}
.sobre-quote cite { display: block; font-style: normal; font-size: .75rem; font-weight: 600; color: var(--green); margin-top: .5rem; letter-spacing: .08em; }

/* ─── PROCESSO ───────────────────────────────────────────── */
.processo-section {
  padding: clamp(4rem,8vw,8rem) 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
/* Subtle green glow bg */
.processo-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle,rgba(74,140,92,.08) 0%,transparent 70%);
  pointer-events: none;
}
.processo-intro { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.processo-intro .section-title { color: var(--white); }
.processo-intro .section-title em { color: var(--green-light); }
.processo-intro p { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.75; }

.processo-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem;
}
.processo-card {
  padding: 1.75rem 1.25rem; text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(74,140,92,.15);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.processo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--green),transparent);
  transform: scaleX(0); transition: transform .5s var(--ease);
}
.processo-card:hover::before { transform: scaleX(1); }
.processo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,140,92,.4);
  background: rgba(74,140,92,.06);
}

.card-step-num {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .28em; color: var(--green-light);
  margin-bottom: 1rem;
}
.card-step-icon {
  width: 50px; height: 50px; margin: 0 auto 1rem;
  background: rgba(74,140,92,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-light);
  transition: all .35s ease;
}
.processo-card:hover .card-step-icon { background: var(--green); color: var(--white); transform: scale(1.1); }
.card-step-title {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400;
  color: var(--white); line-height: 1.3; margin-bottom: .6rem;
}
.card-step-desc { font-size: .8rem; color: rgba(255,255,255,.42); line-height: 1.65; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: clamp(4rem,10vw,8rem) 0;
  background: var(--green); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,5vw,4.5rem); font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 1rem;
}
.cta-title em { font-style: italic; color: rgba(255,255,255,.75); }
.cta-subtitle { font-size: clamp(.9rem,2vw,1.05rem); color: rgba(255,255,255,.7); margin-bottom: 2rem; line-height: 1.7; }
.cta-section .btn-primary {
  background: var(--white); color: var(--green) !important;
  font-size: .88rem;
}
.cta-section .btn-primary::before { background: var(--off-white); }
.cta-phone { margin-top: 1.25rem; font-size: .88rem; color: rgba(255,255,255,.65); }
.cta-phone i { margin-right: .4rem; }

/* ─── PARCEIROS & CLIENTES ───────────────────────────────── */
.parceiros-section { padding: clamp(4rem,8vw,7rem) 0; background: var(--off-white); }

.logos-marquee-wrap { overflow: hidden; margin: 1.5rem 0; padding: .5rem 0; }
.logos-marquee { display: flex; gap: 1.5rem; }
.logos-marquee--left  { animation: lmLeft  28s linear infinite; }
.logos-marquee--right { animation: lmRight 32s linear infinite; }
@keyframes lmLeft  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes lmRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

.lm-item {
  flex-shrink: 0;
  width: 140px; height: 80px;
  background: var(--white);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: .75rem; overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.lm-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.lm-item img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1); opacity: .65; transition: all .3s ease; }
.lm-item:hover img { filter: grayscale(0); opacity: 1; }
/* fallback quando imagem não carrega */
.lm-item img[src=""] , .lm-item img:not([src]) { display: none; }

.parceiros-cta { text-align: center; margin-top: 3rem; }
.parceiros-cta p { font-size: 1rem; color: var(--gray-3); margin-bottom: 1.25rem; }

/* ─── CONTATO ────────────────────────────────────────────── */
.contato-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }

.contato-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem,5vw,5rem); align-items: flex-start; margin-top: 2rem; }

.contato-cards { display: flex; flex-direction: column; gap: .85rem; }
.contato-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--off-white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius-md);
  transition: all .35s ease; cursor: none;
}
.contato-card:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.contato-card--whatsapp:hover  { border-color: rgba(37,211,102,.35); }
.contato-card--email:hover     { border-color: rgba(74,140,92,.35); }
.contato-card--instagram:hover { border-color: rgba(225,48,108,.25); }

.contato-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contato-card--whatsapp  .contato-card-icon { background: rgba(37,211,102,.1);  color: #25D366; }
.contato-card--email     .contato-card-icon { background: var(--green-pale);     color: var(--green); }
.contato-card--instagram .contato-card-icon { background: rgba(225,48,108,.08); color: #E1306C; }
.contato-card--location  .contato-card-icon { background: rgba(0,0,0,.05);       color: var(--gray-3); }

.contato-card-info { flex: 1; display: flex; flex-direction: column; gap: .1rem; }
.contato-card-info strong { font-size: .88rem; font-weight: 600; color: var(--black); }
.contato-card-info span  { font-size: .82rem; color: var(--gray-3); }
.contato-card-info em    { font-size: .73rem; font-style: normal; color: var(--gray-2); }
.contato-card-arrow { color: var(--gray-1); font-size: .75rem; transition: transform .2s ease, color .2s ease; }
.contato-card:hover .contato-card-arrow { transform: translateX(4px); color: var(--green); }

/* Form */
.contato-form {
  background: var(--off-white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem,3vw,2.25rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.form-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--black); margin-bottom: .25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-3); }
.form-group label span { color: var(--green); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius-md);
  font-size: .9rem; color: var(--black);
  outline: none; appearance: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-pale); }
.form-group textarea { resize: vertical; min-height: 110px; }

.field-error { font-size: .72rem; color: #dc2626; min-height: 1rem; }

.btn-submit { width: 100%; justify-content: center; padding: .9rem; }

.form-success {
  display: none; flex-direction: row; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  background: rgba(74,140,92,.08);
  border: 1.5px solid rgba(74,140,92,.28);
  border-radius: var(--radius-md);
  color: var(--green-3); font-size: .88rem; font-weight: 500;
}
.form-success:not([hidden]) { display: flex; }
.form-success i { font-size: 1.1rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: #5a5855; border-top: 1px solid rgba(74,140,92,.18); color: #d5d3cd; }
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-top: clamp(3rem,6vw,5rem); padding-bottom: 3rem;
}

.footer-logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: #c5c3bd; margin-bottom: 1.25rem; line-height: 1.6; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(74,140,92,.25);
  border-radius: var(--radius-sm);
  color: var(--gray-2); font-size: .88rem;
  transition: all .3s ease;
}
.footer-social a:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

.footer-nav h4, .footer-services h4, .footer-contact h4 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.1rem;
}
.footer-nav ul,.footer-services ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a,.footer-services li { font-size: .84rem; color: var(--gray-2); transition: color .2s ease; }
.footer-nav a:hover { color: var(--green); }

.footer-contact ul { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.25rem; }
.footer-contact li { font-size: .84rem; color: var(--gray-2); display: flex; align-items: center; gap: .5rem; }
.footer-contact li i { color: var(--green); font-size: .8rem; }
.footer-cta { margin-top: .25rem; }

.footer-bottom {
  border-top: 1px solid rgba(74,140,92,.18);
  padding: 1.5rem clamp(1.25rem,4vw,4rem);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.footer-bottom p { font-size: .78rem; color: var(--gray-2); }
.footer-dev { display: flex; align-items: center; gap: .3rem; }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.96); cursor: none; }
.lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-caption { text-align: center; margin-top: .75rem; font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: var(--gray-2); }

.lightbox-close,.lightbox-prev,.lightbox-next {
  position: fixed; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: all .2s ease; cursor: none;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover { background: var(--green); }

/* ─── WA FLOAT ───────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .4s ease;
  opacity: 0; pointer-events: none; cursor: none;
}
.wa-float.is-visible { opacity: 1; pointer-events: auto; }
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-float-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--black); color: var(--white);
  font-size: .75rem; white-space: nowrap;
  padding: .4rem .8rem; border-radius: var(--radius-f);
  pointer-events: none; opacity: 0; transition: opacity .2s ease;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 900;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(74,140,92,.15); color: var(--green);
  border: 1.5px solid rgba(74,140,92,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: all .3s ease; cursor: none;
}
.back-to-top:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateY(-2px); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1100px) {
  .portfolio-grid { grid-template-columns: repeat(3,1fr); }
  .processo-steps { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .portfolio-callout { grid-template-columns: 1fr; }
}
@media (max-width:900px) {
  .main-nav,.header-cta { display: none; }
  .nav-toggle { display: flex; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-image-wrap { max-width: 420px; margin: 0 auto; }
  .contato-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .processo-steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .processo-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1rem; }
  .stat-divider { height: 28px; }
  .sobre-features { grid-template-columns: 1fr; }
  .lightbox-prev { left: .75rem; }
  .lightbox-next { right: .75rem; }
}
@media (max-width:420px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary,.btn-ghost { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion:reduce) {
  .filmstrip-track,.marquee-track,.scroll-line { animation-duration: .01s; }
}
