/* ============================================================
   CARTÓRIO CIVIL UBATUBA — DESIGN SYSTEM GLOBAL
   Paleta oficial aprovada pela designer
   Todas as páginas devem importar este arquivo.
   NÃO defina :root ou variáveis de cor em nenhuma outra página.
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── PALETA OFICIAL ───────────────────────────────────────── */
:root {
  /* Cores primárias — paleta da designer */
  --verde:        #798970;   /* Verde sage — cor primária */
  --verde-dark:   #5e6e57;   /* Verde sage escuro — hover/active */
  --verde-light:  #c5cfc2;   /* Verde sage claro — backgrounds */
  --azul:         #49505f;   /* Azul escuro — textos, header, footer */
  --azul-dark:    #363d4e;   /* Azul muito escuro — footer bg */
  --nude:         #baa598;   /* Nude/terracota — acento */
  --nude-light:   #e8ddd7;   /* Nude claro — backgrounds */
  --cinza:        #d9dadb;   /* Cinza claro — backgrounds neutros */

  /* Cores de suporte */
  --branco:       #FFFFFF;
  --offwhite:     #faf9f7;   /* Quase branco — hero backgrounds */
  --bege:         #f2ece6;   /* Bege quente — seções alternadas */
  --bege-escuro:  #e8ddd7;   /* Bege escuro — cards, bordas */
  --texto:        #2a2d35;   /* Texto principal */
  --texto-suave:  #5a5f6e;   /* Texto secundário */
  --texto-claro:  #8a8f9e;   /* Texto terciário / placeholders */

  /* Feedback */
  --sucesso:      #2e7d32;
  --erro:         #c62828;
  --alerta:       #e65100;

  /* Bordas e sombras */
  --borda:        rgba(73, 80, 95, 0.12);
  --borda-verde:  rgba(121, 137, 112, 0.25);
  --sombra:       0 4px 24px rgba(73, 80, 95, 0.08);
  --sombra-md:    0 8px 32px rgba(73, 80, 95, 0.13);
  --sombra-lg:    0 20px 60px rgba(73, 80, 95, 0.16);
  --sombra-verde: 0 8px 24px rgba(121, 137, 112, 0.30);

  /* Raios e transições */
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --trans:        all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Tipografia */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:    1200px;
  --header-h:     110px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-sans); }

/* ── TIPOGRAFIA ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--azul);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); }
p  { font-size: 1rem; color: var(--texto-suave); line-height: 1.75; text-align: justify; hyphens: auto; -webkit-hyphens: auto; }

/* Exceções: elementos que NÃO devem ser justificados */
.section__tag, .page-hero__badge, .btn, label,
.header__nav a, .footer__links a, .footer__contact-item,
.breadcrumb, .team-card__name, .team-card__role,
.faq-item__q, .step__title, .card__title,
h1, h2, h3, h4, h5, h6 { text-align: unset; hyphens: unset; -webkit-hyphens: unset; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--branco);
  border-bottom: 1px solid var(--borda);
  box-shadow: 0 2px 16px rgba(73, 80, 95, 0.06);
}
.header__inner,
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.header__logo img {
  height: 90px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
}
/* Logo responsivo: desktop mostra versão completa, mobile mostra versão compacta */
.header__logo .logo--mobile { display: none; }
.header__logo .logo--desktop { display: block; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--azul);
  transition: var(--trans);
  position: relative;
  padding-bottom: 3px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--verde);
  transition: var(--trans);
}
.header__nav a:hover { color: var(--verde); }
.header__nav a:hover::after { width: 100%; }
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-xs);
  transition: var(--trans);
}
.header__hamburger:hover { background: var(--bege); }
.header__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--azul);
  border-radius: 2px;
  transition: var(--trans);
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(54, 61, 78, 0.55);
  z-index: 1001; /* acima do header (z-index: 1000) para interceptar cliques */
  backdrop-filter: blur(4px);
}
.mobile-menu.open { display: flex; justify-content: flex-end; }
.mobile-menu__panel {
  background: var(--branco);
  width: min(320px, 85vw);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  box-shadow: -4px 0 32px rgba(73, 80, 95, 0.18);
}
.mobile-menu__close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--azul);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  transition: var(--trans);
  margin-bottom: 16px;
}
.mobile-menu__close:hover { background: var(--bege); }
/* Header dentro do panel: logo + botão fechar (padrão novo) */
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--borda);
}
.mobile-menu__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--azul);
  padding: 6px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  flex-shrink: 0;
}
.menu-close:hover { background: var(--bege); }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--azul);
  padding: 14px 0;
  border-bottom: 1px solid var(--borda);
  transition: var(--trans);
}
.mobile-menu__nav a:hover { color: var(--verde); padding-left: 6px; }
.mobile-menu__nav a:last-child { border-bottom: none; }
.mobile-menu__whatsapp {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--branco);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  justify-content: center;
  transition: var(--trans);
}
.mobile-menu__whatsapp:hover { background: #1ebe5d; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--azul-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 16px;
  display: block;
}
.footer__brand {
  display: block;
  margin-bottom: 20px;
}
.footer__brand img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.92;
  display: block;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans);
}
.footer__social a:hover { background: var(--verde); color: var(--branco); }
.footer__col,
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--trans);
}
.footer__links a:hover { color: var(--branco); padding-left: 4px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer__contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer__contact-item a { color: rgba(255, 255, 255, 0.65); transition: var(--trans); }
.footer__contact-item a:hover { color: var(--branco); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer__staff-link {
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer__staff-link:hover {
  color: rgba(255, 255, 255, 0.55);
}

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
  line-height: 1;
}
.btn--primary {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}
.btn--primary:hover {
  background: var(--verde-dark);
  border-color: var(--verde-dark);
  transform: translateY(-2px);
  box-shadow: var(--sombra-verde);
}
.btn--outline {
  background: transparent;
  color: var(--azul);
  border-color: var(--azul);
}
.btn--outline:hover {
  background: var(--azul);
  color: var(--branco);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--branco);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}
.btn--ghost:hover {
  background: var(--verde);
  color: var(--branco);
}

/* ── SEÇÕES PADRÃO ────────────────────────────────────────── */
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__header h2 { margin-bottom: 16px; }
.section__header p { font-size: 1.05rem; }
@media (max-width: 768px) {
  .section__header { margin-bottom: 36px; }
  .section__header p { font-size: 0.95rem; }
}

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--sombra);
  transition: var(--trans);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-md);
}

/* ── BADGE / PILL ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--online { background: rgba(121, 137, 112, 0.12); color: var(--verde-dark); }
.badge--presencial { background: rgba(73, 80, 95, 0.08); color: var(--azul); }
.badge--dot::before { content: '•'; font-size: 0.9rem; }

/* ── WHATSAPP FLUTUANTE ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--trans);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--branco); }

/* ── EQUIPE / TIME ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--sombra);
  transition: var(--trans);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-md);
}
.team-card__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--cinza);
  background-size: cover;
  background-position: center top;
  border: 4px solid var(--branco);
  box-shadow: 0 0 0 3px var(--verde-light), var(--sombra);
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--texto-claro);
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 6px;
  line-height: 1.3;
}
.team-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0;
}
.team-card--titular .team-card__avatar {
  box-shadow: 0 0 0 3px var(--nude), var(--sombra-md);
  width: 130px;
  height: 130px;
}
.team-card--titular .team-card__name {
  font-size: 1.15rem;
}
.team-card--titular .team-card__role {
  color: var(--nude);
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-card { padding: 24px 16px 20px; }
  .team-card__avatar { width: 90px; height: 90px; }
  .team-card--titular .team-card__avatar { width: 100px; height: 100px; }
}

/* ── RESPONSIVO — HEADER/FOOTER ───────────────────────────── */
@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__hamburger { display: none; }
  /* .hamburger is the class used in service pages */
  .hamburger { display: none !important; }
}
/* Header mobile: altura reduzida, logo menor */
@media (max-width: 767px) {
  :root { --header-h: 64px; }
  /* Logo responsivo: no mobile mostra versão compacta (tight) menor */
  .header__logo .logo--desktop { display: none; }
  .header__logo .logo--mobile  { display: block; height: 36px; width: auto; max-width: 220px; }
  .header__logo img { height: 36px; max-width: 220px; }
  /* Ocultar botão Contato no mobile — só o hamburger aparece */
  .header__actions .btn { display: none; }
  .header__hamburger {
    display: flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    padding: 10px;
    border-radius: var(--radius-xs);
    flex-shrink: 0;
  }
  .header__hamburger span { width: 24px; height: 2.5px; }
  /* .hamburger class used in service pages */
  .hamburger {
    display: flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    padding: 10px;
    border-radius: var(--radius-xs);
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--azul);
    transition: var(--trans);
  }
  .hamburger:hover { background: var(--bege); }
  .hamburger svg { stroke: var(--azul); }
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ── SEÇÃO GENÉRICA ───────────────────────────────────────── */
.section { padding: 72px 0; }
.section--alt { background: var(--offwhite); }
.section--bege { background: var(--bege); }
.section--dark { background: var(--azul-dark); }
@media (max-width: 768px) { .section { padding: 52px 0; } }

/* ── PAGE HERO (páginas internas) ─────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, var(--offwhite) 0%, var(--bege) 100%);
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--borda);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--texto-suave);
  max-width: 560px;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(121, 137, 112, 0.12);
  color: var(--verde);
  border: 1px solid rgba(121, 137, 112, 0.25);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-hero { padding: 32px 0 36px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero__desc { font-size: 0.92rem; }
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--texto-claro);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--verde); transition: var(--trans); }
.breadcrumb a:hover { color: var(--verde-dark); text-decoration: underline; }
.breadcrumb span { color: var(--texto-claro); }

/* ── HERO (página com fundo claro — serviços) ─────────────── */
.hero {
  background: linear-gradient(135deg, var(--offwhite) 0%, var(--bege) 100%);
  padding: 72px 0 64px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(186, 165, 152, 0.15);
  border: 1px solid rgba(186, 165, 152, 0.3);
  color: var(--nude);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nude);
}
.hero h1 { margin-bottom: 20px; }
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--texto-suave);
  margin-bottom: 36px;
  max-width: 480px;
  text-align: justify;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO DARK (fundo azul — firmas-empresas) ─────────────── */
.hero--dark {
  background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul) 100%);
}
.hero--dark h1 { color: var(--branco); }
.hero--dark .hero__subtitle { color: rgba(255, 255, 255, 0.75); }
.hero--dark .hero__badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}
.hero--dark .hero__badge-dot { background: #25D366; }

/* Hero card lateral (info do serviço) */
.hero__card {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra-md);
  padding: 36px;
  border: 1px solid var(--borda);
}
.hero__card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 24px;
}

/* Info items dentro do hero card */
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--borda);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bege);
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--texto-suave);
  margin-bottom: 4px;
}
.info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--azul);
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--azul-dark);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item__icon { font-size: 1.2rem; }
.trust-item__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}
.trust-item__text strong {
  color: var(--branco);
  display: block;
  font-size: 0.88rem;
}
.trust-divider {
  width: 1px; height: 32px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .trust-bar { padding: 16px 0; }
  .trust-bar__inner { gap: 0; flex-direction: column; align-items: stretch; }
  .trust-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }
  .trust-divider { display: none; }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--borda); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--azul);
  transition: var(--trans);
}
.faq-question:hover { color: var(--verde); }
.faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer p { font-size: 0.9rem; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-dark) 100%);
  padding: 72px 0;
}
.cta-section__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 { color: var(--branco); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Variante verde */
.cta-section--verde {
  background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 100%);
}
/* Botão ghost para CTA escuro */
.btn--ghost-white {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}
/* Botão whatsapp outline para CTA escuro */
.btn--whatsapp-outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--whatsapp-outline:hover {
  background: #25D366;
  border-color: #25D366;
}
@media (max-width: 480px) {
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }
}

/* ── FORMULÁRIO PADRÃO ────────────────────────────────────── */
.form-section { background: linear-gradient(150deg, var(--offwhite) 0%, var(--bege) 100%); }

/* ── Form layout (procuração + outros formulários) ── */
.form-section__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.form-section__info h2 { margin-bottom: 16px; }
.form-section__info p { margin-bottom: 24px; }
.form-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.form-info-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-xs); background: white; display: flex; align-items: center; justify-content: center; box-shadow: var(--sombra); }
.form-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--verde); margin-bottom: 3px; }
.form-info-text { font-size: 0.88rem; color: var(--texto); font-weight: 500; line-height: 1.5; }
.form-card__sub { font-size: 0.85rem; color: var(--texto-suave); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--borda); }
/* -- Form benefits -- */
.form-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.form-benefit-card { display: flex; align-items: flex-start; gap: 16px; background: var(--branco); border: 1px solid var(--borda); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--sombra); transition: var(--trans); }
.form-benefit-card:hover { box-shadow: var(--sombra-md); transform: translateY(-1px); }
.form-benefit-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-xs); background: linear-gradient(135deg, rgba(121,137,112,0.12), rgba(121,137,112,0.05)); border: 1px solid var(--borda-verde); display: flex; align-items: center; justify-content: center; color: var(--verde); }
.form-benefit-body { flex: 1; }
.form-benefit-title { font-size: 0.9rem; font-weight: 700; color: var(--azul); margin-bottom: 4px; line-height: 1.3; }
.form-benefit-desc { font-size: 0.82rem; color: var(--texto-suave); line-height: 1.55; margin: 0; text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-aviso { margin-top: 14px; padding: 12px 16px; background: rgba(73,80,96,0.05); border-radius: var(--radius-xs); font-size: 0.78rem; color: var(--texto-suave); line-height: 1.6; text-align: center; }
@media (max-width: 1024px) { .form-section__inner { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--sombra-md);
}
.form-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--sombra-lg);
  border: 1px solid rgba(73, 80, 95, 0.07);
}
.form-header { margin-bottom: 32px; }
.form-header h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-header p { font-size: 0.9rem; color: var(--texto-suave); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .required { color: var(--erro); margin-left: 2px; }
.form-group label .optional { font-weight: 400; color: var(--texto-suave); font-size: 0.75rem; }
.form-group input,
.form-group select,
.form-group textarea,
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cinza);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--texto);
  background: var(--branco);
  transition: var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(121, 137, 112, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-control::placeholder { color: var(--texto-claro); }
.form-group textarea,
textarea.form-control { resize: vertical; min-height: 120px; }
.form-group select,
select.form-control {
  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='%2349505f' 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;
  cursor: pointer;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--verde);
  color: var(--branco);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--verde-dark);
  transform: translateY(-2px);
  box-shadow: var(--sombra-verde);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--texto-suave); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--verde); }
.form-success p { font-size: 0.9rem; }
.field-error { font-size: 0.78rem; color: var(--erro); margin-top: 5px; display: none; }
.field-error.visible { display: block; }
.form-control.error { border-color: var(--erro); }
@media (max-width: 768px) {
  .form-wrap { padding: 28px 16px; border-radius: var(--radius-sm); }
  .form-card { padding: 24px 16px; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-wrap { padding: 20px 12px; }
  .form-card { padding: 20px 12px; }
}

/* ── STEPS / COMO FUNCIONA ────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
}
.step-item__num,
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-item h3 { font-size: 0.9rem; margin-bottom: 8px; }
.step-item p { font-size: 0.8rem; }
.aviso-legal {
  background: var(--bege);
  border-left: 4px solid var(--nude);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.aviso-legal__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.aviso-legal p { font-size: 0.875rem; color: var(--texto-suave); margin: 0; }
@media (max-width: 1024px) {
  .steps-row, .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .steps-row, .steps-grid { grid-template-columns: 1fr; }
  .step-item { padding: 20px 16px; }
}

/* ── DOCS GRID ────────────────────────────────────────────── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.docs-card,
.doc-section {
  background: var(--offwhite);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px;
}
.docs-card h3,
.doc-section h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.docs-list,
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.docs-list li,
.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--texto-suave);
  padding: 10px 0;
  border-bottom: 1px solid var(--borda);
  line-height: 1.55;
}
.docs-list li:last-child,
.doc-list li:last-child { border-bottom: none; }
.docs-list li::before,
.doc-list li::before {
  content: '✓';
  color: var(--verde);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.docs-obs {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(73, 80, 96, 0.05);
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--azul);
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .docs-grid { grid-template-columns: 1fr; }
}

/* ── INFO BOX (alertas internos) ──────────────────────────── */
.info-box {
  background: rgba(73, 80, 96, 0.05);
  border-left: 3px solid var(--azul);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.6;
}
.info-box strong { color: var(--azul); }
.info-box--success { border-left-color: var(--verde); background: rgba(121, 137, 112, 0.06); }
.info-box--warning { border-left-color: #e6a817; background: rgba(230, 168, 23, 0.06); }

/* ── PRAZO ALERT ──────────────────────────────────────────── */
.prazo-alert {
  background: linear-gradient(135deg, rgba(121, 137, 112, 0.08) 0%, rgba(121, 137, 112, 0.04) 100%);
  border: 1px solid rgba(121, 137, 112, 0.25);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.prazo-alert__icon { font-size: 2.5rem; flex-shrink: 0; }
.prazo-alert__content h3 { margin-bottom: 10px; }
.prazo-alert__content p { font-size: 0.9rem; }

/* ── WA-FLOAT (botão flutuante WhatsApp) ──────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: var(--trans);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  animation: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 44px rgba(37, 211, 102, 0.75); }
}
@media (max-width: 480px) {
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── UPLOAD AREA ──────────────────────────────────────────── */
.upload-area {
  border: 2px dashed var(--borda);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
  background: var(--offwhite);
  position: relative;
}
.upload-area:hover { border-color: var(--verde); background: rgba(121, 137, 112, 0.04); }
.upload-area.has-file { border-color: var(--verde); border-style: solid; background: rgba(121, 137, 112, 0.06); }
.upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-area__icon { font-size: 2rem; margin-bottom: 8px; }
.upload-area__text { font-size: 0.875rem; font-weight: 600; color: var(--azul); margin-bottom: 4px; }
.upload-area__sub { font-size: 0.78rem; color: var(--texto-suave); }
.upload-area__filename { font-size: 0.82rem; font-weight: 600; color: var(--verde); margin-top: 8px; display: none; }
.upload-area.has-file .upload-area__filename { display: block; }
.upload-area.has-file .upload-area__icon,
.upload-area.has-file .upload-area__text,
.upload-area.has-file .upload-area__sub { display: none; }

/* ── VALOR CARDS / STAT ───────────────────────────────────── */
.valor-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--sombra);
}
.valor-card__icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.valor-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--azul); }
.valor-card p { font-size: 0.875rem; color: var(--texto-suave); line-height: 1.65; }

/* ── EM BREVE (páginas de serviço não lançadas) ───────────── */
.embreve { padding: 80px 0; }
.embreve__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.embreve__icon { font-size: 4rem; margin-bottom: 24px; }
.embreve__badge {
  display: inline-block;
  background: rgba(186, 165, 152, 0.2);
  color: var(--nude);
  border: 1px solid rgba(186, 165, 152, 0.4);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.embreve__inner h2 { margin-bottom: 16px; }
.embreve__inner p { margin-bottom: 32px; }
.embreve__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BTN LARGE ────────────────────────────────────────────── */
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ── SERVICE DETAIL LAYOUT ────────────────────────────────── */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.service-detail__content h2 { margin-bottom: 20px; }
.service-detail__content p { margin-bottom: 16px; }
.service-detail__card {
  background: var(--offwhite);
  border: 1px solid var(--borda);
  border-left: 4px solid var(--verde);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 24px;
}
.service-detail__card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 8px;
}
.service-detail__card p { font-size: 0.9rem; margin: 0; }
.service-detail__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.service-type-card {
  background: var(--offwhite);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.service-type-card--highlight {
  border-color: rgba(120, 136, 110, 0.4);
  background: rgba(120, 136, 110, 0.05);
}
.service-type-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 10px;
}
.service-type-card p { font-size: 0.875rem; margin: 0; }
.sidebar-box {
  background: var(--offwhite);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.sidebar-box h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--azul);
  margin-bottom: 12px;
}
.sidebar-box p { font-size: 0.9rem; margin-bottom: 20px; }
.btn--full { width: 100%; justify-content: center; }
@media (max-width: 1024px) {
  .service-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .sidebar-box { position: static; }
}
@media (max-width: 768px) {
  .service-detail__types { grid-template-columns: 1fr; }
}

/* ── SECTION TITLE / SUBTITLE ─────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--texto-suave);
  margin-bottom: 36px;
  max-width: 600px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ── BG-LIGHT SECTION ─────────────────────────────────────── */
.bg-light { background: var(--offwhite); }

/* ── DOCS SECTION (service pages) ────────────────────────── */
.docs-section { padding: 72px 0; }
.docs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.docs__grid--3 { grid-template-columns: repeat(3, 1fr); }
.docs__grid--4 { grid-template-columns: repeat(4, 1fr); }
.docs-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.docs-card--sm { padding: 20px 16px; text-align: center; }
.docs-card__header { margin-bottom: 16px; }
.docs-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 16px;
}
.docs-card ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.docs-card ul li {
  font-size: 0.875rem;
  color: var(--texto-suave);
  padding: 10px 0;
  border-bottom: 1px solid var(--borda);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.docs-card ul li:last-child { border-bottom: none; }
.docs-card ul li::before { content: '✓'; color: var(--verde); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.docs-card__note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--texto-suave);
  background: rgba(73, 80, 96, 0.05);
  border-left: 3px solid var(--azul);
  padding: 10px 14px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}
.docs-card__icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
@media (max-width: 1024px) {
  .docs__grid--4 { grid-template-columns: repeat(3, 1fr); }
  .docs__grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .docs__grid { grid-template-columns: 1fr; }
  .docs__grid--3 { grid-template-columns: 1fr; }
  .docs__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .docs-section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .docs__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ SECTION (service pages) ─────────────────────────── */
.faq-section { padding: 72px 0; }
@media (max-width: 768px) {
  .faq-section { padding: 48px 0; }
}

/* ============================================================
   TRANSFERÊNCIA DE VEÍCULO — COMPONENTES ESPECÍFICOS
   ============================================================ */

/* Steps list (vertical, numbered) — para passo a passo */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 24px;
}
.step-item__number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-item__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 6px;
}
.step-item__content p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  margin: 0;
  line-height: 1.6;
}

/* Sidebar box info variant */
.sidebar-box--info {
  background: var(--bege);
  border: 1px solid var(--borda);
  margin-top: 16px;
}
.sidebar-box--info p {
  font-size: 0.875rem;
  color: var(--texto-suave);
  margin: 4px 0;
}
.sidebar-box--info h4 {
  color: var(--azul);
  margin-bottom: 10px;
}

/* Mobile adjustments for steps-list */
@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }
  .step-item__number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.95rem;
  }
}

/* ── INSTAGRAM / SOCIAL ───────────────────────────────────── */
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.75);
  transition: var(--trans);
}
.footer__social a:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--branco);
  transform: scale(1.1);
}
.footer__social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Instagram link in mobile menu */
.mobile-menu__instagram {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--azul);
  padding: 14px 0;
  border-bottom: 1px solid var(--borda);
  transition: var(--trans);
}
.mobile-menu__instagram:hover {
  color: #bc1888;
  padding-left: 6px;
}
.mobile-menu__instagram svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* REDES SOCIAIS FOOTER BLOCK */
.footer__social-block { margin-top: 20px; }
.footer__social-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.footer__social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__social-icon:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}
.footer__social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* WhatsApp icon — hover verde WhatsApp */
.footer__social-icon--wa:hover {
  background: #25D366;
  border-color: transparent;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
