/* ============================================================
   ProServ Serviços — style.css
   Design: Light SaaS / Bento Grid — Inter, azul #1D4ED8
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #F8FAFC;
  --bg-alt:     #F1F5F9;
  --surface:    #FFFFFF;
  --blue:       #1D4ED8;
  --blue-lt:    #3B82F6;
  --blue-dk:    #1E40AF;
  --blue-bg:    rgba(29, 78, 216, 0.07);
  --blue-bg2:   rgba(29, 78, 216, 0.12);
  --blue-bd:    rgba(29, 78, 216, 0.18);
  --green:      #22C55E;
  --green-bg:   rgba(34, 197, 94, 0.08);
  --green-bd:   rgba(34, 197, 94, 0.20);
  --slate-bg:   #EFF6FF;
  --text:       #0F172A;
  --text-2:     #475569;
  --text-3:     #94A3B8;
  --border:     #E2E8F0;
  --border-2:   #CBD5E1;
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow:     0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md:  0 8px 32px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-blue: 0 8px 24px rgba(29, 78, 216, 0.20);
  --radius:     12px;
  --radius-xl:  20px;
  --radius-sm:  8px;
  --transition: 0.22s ease;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

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

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

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--full {
  width: 100%;
}

/* ── Section shared ────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Image placeholders ────────────────────────────────────── */
.img-placeholder {
  background-color: var(--slate-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  background: rgba(248, 250, 252, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

/* Nav */
.nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav__link {
  padding: 7px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
  background: var(--blue-bg);
}

.nav__cta {
  margin-left: 10px;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-blue);
}

.nav__cta:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.30);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 999;
}

.nav.open .nav__link { font-size: 1.3rem; padding: 14px 32px; }
.nav.open .nav__cta  { font-size: 1.1rem; padding: 14px 32px; margin-left: 0; margin-top: 8px; }

/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
.hero {
  background: var(--bg);
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 20px 60px;
}

.hero__left {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero__eyebrow svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero__title-accent {
  color: var(--blue);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}

.hero__bullets li svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}

.hero__stat:first-child { padding-left: 0; }

.hero__stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.hero__stat-label {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero right */
.hero__right {
  position: relative;
}

.hero__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background-color: var(--slate-bg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}

.hero__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero__img-badge svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}

.trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.sobre__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
}

.sobre__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--slate-bg);
  box-shadow: var(--shadow);
}

.sobre__badge {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-blue);
}

.sobre__badge-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sobre__badge-label {
  font-size: 0.73rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.sobre__content {
  padding-top: 20px;
}

.sobre__content .section__eyebrow,
.sobre__content .section__title {
  text-align: left;
  margin-bottom: 12px;
}

.sobre__text {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.sobre__credentials {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
}

.credential__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  border-radius: 6px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   SERVIÇOS — BENTO GRID
   ============================================================ */
.servicos__bento {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}

/* Base card */
.servico-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.servico-card:hover {
  border-color: var(--blue-bd);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* Wide card — additional body layout */
.servico-card--wide {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Blue variant */
.servico-card--blue {
  background: var(--blue);
  border-color: var(--blue-dk);
  color: #fff;
}
.servico-card--blue:hover {
  border-color: #1e3a8a;
  box-shadow: var(--shadow-blue);
}
.servico-card--blue .servico-card__title { color: #fff; }
.servico-card--blue .servico-card__desc  { color: rgba(255,255,255,0.78); }
.servico-card--blue .servico-card__tags span {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.20);
}

/* Slate/neutral variant */
.servico-card--slate {
  background: var(--slate-bg);
  border-color: var(--blue-bd);
}
.servico-card--slate:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.12);
}

/* Icons */
.servico-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  border-radius: var(--radius);
  color: var(--blue);
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.servico-card:hover .servico-card__icon {
  background: var(--blue-bg2);
}

.servico-card__icon--lg {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
}

.servico-card__icon--green {
  background: var(--green-bg);
  border-color: var(--green-bd);
  color: var(--green);
}

.servico-card:hover .servico-card__icon--green {
  background: rgba(34, 197, 94, 0.15);
}

.servico-card--blue .servico-card__icon {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* Body (used in wide cards) */
.servico-card__body {
  flex: 1;
  min-width: 0;
}

.servico-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.servico-card__desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0;
}

.servico-card--wide .servico-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Tags inside wide cards */
.servico-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.servico-card__tags span {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid var(--blue-bd);
  border-radius: 100px;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.step__num-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  opacity: 0.07;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.step__num-badge--green {
  color: var(--green);
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  border-radius: var(--radius);
  color: var(--blue);
  margin-bottom: 20px;
}

.step__icon--green {
  background: var(--green-bg);
  border-color: var(--green-bd);
  color: var(--green);
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 0.91rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO — horizontal cards
   ============================================================ */
.portfolio__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.portfolio-item:hover {
  border-color: var(--blue-bd);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.portfolio-item__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--slate-bg);
}

.portfolio-item__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-item__info {
  padding: 24px;
}

.portfolio-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.portfolio-item__desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.portfolio-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.portfolio-item__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
}

.portfolio-item__meta svg {
  color: var(--blue-lt);
  flex-shrink: 0;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.depo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.depo-card:hover {
  border-color: var(--blue-bd);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.depo-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.depo-card__text {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.depo-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depo-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background-color: var(--bg-alt);
}

.depo-card__name {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.depo-card__service {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================
   ORÇAMENTO
   ============================================================ */
.orcamento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.orcamento__info .section__eyebrow,
.orcamento__info .section__title {
  text-align: left;
  margin-bottom: 12px;
}

.orcamento__text {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.orcamento__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.orcamento__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
}

.orcamento__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  border-radius: 6px;
  color: var(--green);
  flex-shrink: 0;
}

/* Form */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.form__label span {
  color: var(--blue);
}

.form__input {
  width: 100%;
  padding: 11px 15px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder {
  color: var(--text-3);
}

.form__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-bg2);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__disclaimer {
  font-size: 0.77rem;
  color: var(--text-3);
  text-align: center;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-bg);
  border: 1px solid var(--blue-bd);
  border-radius: var(--radius-sm);
  color: var(--blue);
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.info-item p {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.6;
}

.localizacao__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-placeholder {
  width: 100%;
  min-height: 280px;
  background: var(--slate-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
}

.map-placeholder svg {
  color: var(--blue);
  opacity: 0.4;
}

.map-placeholder p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.02em;
}

.map-placeholder span {
  font-size: 0.83rem;
  color: var(--text-3);
}

/* ============================================================
   FOOTER — dark slate
   ============================================================ */
.footer {
  background-color: #0F172A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
  color: #F1F5F9;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.logo--footer .logo__icon {
  background: rgba(29, 78, 216, 0.7);
}

.logo--footer .logo__name {
  color: #F1F5F9;
  font-size: 1.15rem;
}

.footer__tagline {
  margin-top: 14px;
  font-size: 0.87rem;
  color: #64748B;
  line-height: 1.65;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: #64748B;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--blue-bg);
  border-color: var(--blue-bd);
  color: var(--blue-lt);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li a,
.footer__links li {
  font-size: 0.87rem;
  color: #64748B;
  transition: color var(--transition);
}

.footer__links li a:hover {
  color: #F1F5F9;
}

.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748B;
}

.footer__links--contact svg {
  color: #3B82F6;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.81rem;
  color: #475569;
}

.footer__credit a {
  color: var(--blue-lt);
}

.footer__credit a:hover {
  text-decoration: underline;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wpp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (min-width: 640px) {
  .trust-bar__inner {
    gap: 0;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {
  .section { padding: 100px 0; }

  /* Header */
  .hamburger { display: none; }
  .nav { display: flex; }
  .nav.open {
    position: static;
    flex-direction: row;
    background: transparent;
    backdrop-filter: none;
  }
  .nav.open .nav__link { font-size: 0.875rem; padding: 7px 13px; }
  .nav.open .nav__cta  { font-size: 0.875rem; padding: 8px 18px; margin-left: 10px; margin-top: 0; }

  /* Hero */
  .hero__split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 100px 20px 80px;
  }

  .hero__left { max-width: none; }

  /* Sobre */
  .sobre__badge { right: 16px; }

  /* Serviços bento — tablet: 2 col */
  .servicos__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }

  .servico-card--wide {
    grid-column: span 2;
  }

  /* Como Funciona */
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Portfolio */
  .portfolio-item {
    grid-template-columns: 280px 1fr;
  }

  .portfolio-item__thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 200px;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Localização */
  .localizacao__grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-placeholder { min-height: 360px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {
  /* Hero */
  .hero__split { gap: 72px; }

  /* Sobre */
  .sobre__grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .sobre__content { padding-top: 0; }

  /* Serviços bento — desktop: 3 col */
  .servicos__bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .servico-card--wide {
    grid-column: span 2;
  }

  /* Orçamento */
  .orcamento__grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
