/*
Theme Name: Bevilaqua (versao julho 2026)
Theme URI: https://escritoriobevilaqua.com
Description: Restauracao do tema institucional do Escritorio Bevilaqua como estava em 19/07/2026 (v2.0), a partir do commit cc7b71a do repositorio site-bevilaqua. Instalado em paralelo ao tema v7.1, que permanece disponivel para reativacao.
Author: O Escritorio Bevilaqua
Version: 2.0
*/

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

:root {
  --green: #A9CF44;
  --green-dark: #8aab2e;
  --dark: #212021;
  --dark-deep: #0A1607;
  --bg: #F5F5F3;
  --white: #FFFFFF;
  --muted: #6B6B6B;
  --border: #E0E0E0;
  --shadow: 0 2px 12px rgba(33,32,33,0.08);
  --shadow-hover: 0 8px 28px rgba(33,32,33,0.14);
  --radius: 8px;
  --container: 1200px;
--container-max: 1200px;
--font-base: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }
p { color: var(--muted); line-height: 1.75; }
em { font-style: normal; color: var(--green); }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 24px; background: var(--white); }
.section--light { background: var(--bg); }
.section--dark { background: var(--dark-deep); }
.section--green { background: var(--green); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--green); color: var(--dark); padding: 13px 28px; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 11px 26px; }
.btn--ghost:hover { background: var(--dark); color: var(--white); }
.btn--ghost-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); padding: 11px 26px; }
.btn--ghost-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn--ghost-dark-on-green { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 13px 28px; }
.btn--ghost-dark-on-green:hover { background: var(--dark); color: var(--green); }
.btn--outline { display: inline-block; border: 2px solid var(--dark); color: var(--dark); padding: 10px 22px; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: all 0.2s; }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--dark); margin-bottom: 14px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--muted); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.7); }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

/* ===== NAVIGATION ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { height: 36px; width: auto; }
.nav__logo-text span { color: var(--green); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links > a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
  padding: 8px 12px;
  border-radius: 6px;
}
.nav__links > a:hover { color: var(--green); }
.nav__links > a.nav__cta {
  background: var(--green);
  color: var(--dark);
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-left: 8px;
}
.nav__links > a.nav__cta:hover { background: var(--green-dark); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.nav__dropdown-trigger:hover, .nav__dropdown:hover .nav__dropdown-trigger { color: var(--green); }
.nav__dropdown-trigger svg { transition: transform 0.2s; flex-shrink: 0; }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  min-width: 460px;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu { display: grid; }
.nav__dropdown-group { display: flex; flex-direction: column; gap: 2px; padding: 4px; }
.nav__dropdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding: 6px 10px 10px;
  display: block;
}
.nav__dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover { background: var(--bg); color: var(--green); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO (homepage + service pages) ===== */
.hero {
  padding: 100px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero--bg { background: var(--dark-deep); }
.hero--light { background: var(--bg); }
.hero__inner { max-width: 800px; margin: 0 auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(169,207,68,0.35);
  color: rgba(255,255,255,0.7);
}
.hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero--light .hero__badge { background: var(--white); border-color: var(--border); color: var(--muted); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero--light h1 { color: var(--dark); }
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.72);
}
.hero--light .hero__sub { color: var(--muted); }
.hero__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__creds {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.hero--light .hero__creds { border-top-color: var(--border); }
.hero__creds span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero--light .hero__creds span { color: var(--muted); border-right-color: var(--border); }
.hero__creds span:last-child { border-right: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  background: var(--dark-deep);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,7,0.55);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 96px 24px 72px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 3rem) !important;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero .hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(169,207,68,0.35);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}
.page-hero .hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.page-hero.cases-hero,
.page-hero.materiais-hero,
.page-hero.contato-hero {
  background-image: url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-contato.webp);
  background-size: cover;
  background-position: center top;
}
.sobre-hero {
  background-image: url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-sobre.webp);
  background-size: cover;
  background-position: center top;
}

/* ===== SOLUTIONS GRID (HOME) ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.solution-card {
  background: var(--white);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.solution-card:nth-child(3n) { border-right: none; }
.solution-card:nth-child(n+4) { border-top: 1px solid var(--border); }
.solution-card:hover { border-bottom-color: var(--green); background: #fafaf8; }
.solution-card__num { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--green); letter-spacing: 0.12em; margin-bottom: 14px; }
.solution-card h3 { color: var(--dark); font-size: 0.975rem; margin-bottom: 10px; line-height: 1.45; }
.solution-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.solution-card a { font-size: 0.82rem; font-weight: 600; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; transition: color 0.2s; }
.solution-card a:hover { color: var(--green); }
.problem-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(169,207,68,0.15); border-radius: var(--radius); overflow: hidden; }
.problem-item { padding: 44px 40px; border-right: 1px solid rgba(169,207,68,0.15); }
.problem-item:last-child { border-right: none; }
.problem-item__tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.problem-item h3 { color: var(--white); font-size: 1.025rem; margin-bottom: 12px; line-height: 1.4; }
.problem-item p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.65; }
.problem-item a { font-size: 0.85rem; font-weight: 600; color: var(--green); text-decoration: none; transition: opacity 0.2s; }
.problem-item a:hover { opacity: 0.75; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; gap: 28px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); transition: all 0.25s; border: 1px solid transparent; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(169,207,68,0.2); }
.card__icon { width: 44px; height: 44px; background: rgba(169,207,68,0.12); border-radius: var(--radius); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; color: var(--green); }
.card h3 { color: var(--dark); margin-bottom: 12px; }
.card p { margin-bottom: 20px; font-size: 0.925rem; }
.card__link { color: var(--dark); font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.card__link:hover { color: var(--green); }

/* ===== TIMELINE ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before { content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%; height: 2px; background: var(--green); z-index: 0; }
.timeline__item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.timeline__num { width: 64px; height: 64px; background: var(--green); border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--dark); border: 4px solid var(--white); }
.timeline__item h3 { color: var(--dark); font-size: 0.975rem; margin-bottom: 10px; }
.timeline__item p { font-size: 0.875rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.testimonial__stars { color: var(--green); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 0.925rem; color: var(--dark); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial__author strong { display: block; font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--dark); font-style: normal; }
.testimonial__author span { font-size: 0.78rem; color: var(--muted); }

/* ===== FDR BLOCK ===== */
.fdr-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.fdr-block__img { border-radius: var(--radius); overflow: hidden; }
.fdr-block__img img { width: 100%; height: 420px; object-fit: cover; }
.fdr-block__img-placeholder { width: 100%; height: 420px; background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 0.875rem; text-align: center; padding: 24px; }
.fdr-block__content h2 { color: var(--green); margin-bottom: 24px; }
.fdr-block__content p { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 0.95rem; }

/* ===== STATS BAR ===== */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-bar .stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.stats-bar .stat-item:last-child { border-right: none; }
.stats-bar .stat-item strong { display: block; font-family: 'Inter', sans-serif; font-size: 2.25rem; font-weight: 700; color: var(--green); margin-bottom: 8px; line-height: 1; }
.stats-bar .stat-item span { font-size: 0.825rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.sobre-stats-bar { background: var(--dark-deep); padding: 0; }
.sobre-stats-bar .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--container); margin: 0 auto; }
.sobre-stats-bar .stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.sobre-stats-bar .stat-item:last-child { border-right: none; }
.sobre-stats-bar .stat-num { display: block; font-family: 'Inter', sans-serif; font-size: 2.25rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.sobre-stats-bar .stat-label { font-size: 0.825rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== SERVICES LIST ===== */
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; list-style: none; }
.services-list li { font-size: 0.925rem; color: var(--dark); padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid var(--border); }
.services-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 88px 24px; background: var(--green) !important; text-align: center; }
.cta-final h2 { color: var(--dark) !important; margin-bottom: 16px; }
.cta-final p { color: rgba(33,32,33,0.7) !important; margin-bottom: 36px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 72px 24px 32px; }
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer__logo { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.footer__logo span { color: var(--green); }
.footer__desc { font-size: 0.875rem; color: #a8a8a8; line-height: 1.8; margin-bottom: 18px; }
.footer__email a { color: var(--green); text-decoration: none; font-size: 0.875rem; }
.footer__col h4 { font-family: 'Inter', sans-serif; font-size: 0.72rem; color: #9a9a9a; margin-bottom: 20px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p, .footer__bottom span { font-size: 0.78rem; color: #8c8c8c; }

/* ===== SERVICE PAGES ===== */
.service-problem { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { padding: 28px 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.problem-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 0.975rem; }
.problem-card p { font-size: 0.875rem; }
.service-includes { max-width: 840px; margin: 0 auto; }
.includes-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.includes-list li { font-size: 0.925rem; color: var(--dark); padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid var(--border); }
.includes-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.process-step__num { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.375rem; color: var(--green); margin-bottom: 12px; line-height: 1; }
.process-step h3 { color: var(--dark); font-size: 0.975rem; margin-bottom: 10px; }
.process-step p { font-size: 0.875rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--dark); font-size: 0.975rem; margin-bottom: 10px; }
.faq-item p { font-size: 0.925rem; }

/* ===== EJS CLIENTES ===== */
.ejs-logos { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 48px; }
.ej-logo-card { display: flex; align-items: center; justify-content: center; border-radius: 12px; overflow: hidden; width: 196px; height: 116px; background: #6B1D26; box-shadow: var(--shadow); }
.ej-logo-card img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.ej-logo-card:nth-child(2) { background: var(--white); border: 1px solid var(--border); }
.ej-logo-card--blue { background: #1565A4; }

/* ===== SOBRE PAGE ===== */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; }
.mission-card { padding: 56px 48px; background: var(--dark); }
.vision-card { padding: 56px 48px; background: var(--green); }
.mission-card .mv-label, .vision-card .mv-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.mission-card .mv-label { color: rgba(255,255,255,0.4); }
.vision-card .mv-label { color: rgba(33,32,33,0.5); }
.mission-card h3 { font-size: 1.3rem; color: var(--white) !important; line-height: 1.4; }
.vision-card h3 { font-size: 1.3rem; color: var(--dark) !important; line-height: 1.4; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-card__photo { width: 100%; aspect-ratio: 3/4; background: var(--bg); margin: 0 0 14px; overflow: hidden; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.75rem; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card h3 { color: var(--dark); font-size: 0.875rem; margin-bottom: 4px; font-weight: 600; }
.team-card span { font-size: 0.78rem; color: var(--green); font-weight: 600; }

/* ===== CASES ===== */
.cases-stats .stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.cases-stats .stat-item:last-child { border-right: none; }
.cases-stats .stat-num { display: block; font-family: 'Inter', sans-serif; font-size: 2.25rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.cases-stats .stat-label { font-size: 0.825rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.case-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.case-card__tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.case-card h3 { color: var(--dark); margin-bottom: 12px; font-size: 1rem; }
.case-card p { font-size: 0.9rem; color: var(--muted); font-style: italic; }

/* ===== MATERIAIS ===== */
.materiais-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.material-card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: box-shadow 0.2s; }
.material-card:hover { box-shadow: var(--shadow-hover); }
.material-card--destaque { border-color: var(--green); }
.material-card__tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.material-card h3 { color: var(--dark); margin-bottom: 12px; font-size: 1rem; }
.material-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }

/* ===== CONTATO ===== */
.contato-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contato-info h2 { color: var(--dark); margin-bottom: 32px; }
.contato-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contato-item__icon { width: 40px; height: 40px; min-width: 40px; background: rgba(169,207,68,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--green); }
.contato-item strong { display: block; font-size: 0.82rem; color: var(--dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.contato-item a, .contato-item span { font-size: 0.9rem; color: var(--muted); text-decoration: none; }
.contato-item a:hover { color: var(--green); }
.contato-horario { margin-top: 36px; padding: 20px 24px; background: var(--bg); border-radius: var(--radius); }
.contato-horario strong { display: block; font-size: 0.82rem; color: var(--dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.contato-horario span { font-size: 0.875rem; color: var(--muted); }
.contato-form h2 { color: var(--dark); margin-bottom: 32px; }

/* ===== FORM ===== */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-progress { display: flex; gap: 8px; margin-bottom: 40px; justify-content: center; }
.form-progress__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: background 0.3s; }
.form-progress__dot.active { background: var(--green); }
.form-progress__dot.done { background: var(--green-dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--dark); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.925rem; color: var(--dark); transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; }
.radio-option:hover { border-color: var(--green); }
.radio-option input { accent-color: var(--green); width: 18px; height: 18px; flex-shrink: 0; }
.radio-option span { font-size: 0.925rem; color: var(--dark); font-weight: 600; }
.radio-option.selected { border-color: var(--green); background: rgba(169,207,68,0.06); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.btn-back { background: none; border: none; color: var(--muted); font-size: 0.875rem; cursor: pointer; padding: 0; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-top: 8px; }
.checkbox-group input { width: 18px; height: 18px; accent-color: var(--green); margin-top: 2px; flex-shrink: 0; }
.checkbox-group label { font-size: 0.875rem; color: var(--muted); cursor: pointer; line-height: 1.5; }

/* ===== OBRIGADO ===== */
.obrigado { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 96px 24px; background: var(--bg); text-align: center; }
.obrigado__inner { max-width: 520px; }
.obrigado__icon { width: 80px; height: 80px; background: var(--green); border-radius: 50%; margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.obrigado h1 { margin-bottom: 16px; }
.obrigado p { max-width: 480px; margin: 0 auto 32px; font-size: 1rem; }
.obrigado__sla { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 36px; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-card__thumb { height: 200px; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.875rem; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 28px; }
.blog-card__cat { font-size: 0.72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
.blog-card h3 { color: var(--dark); font-size: 1rem; margin-bottom: 12px; line-height: 1.45; }
.blog-card p { font-size: 0.875rem; margin-bottom: 20px; }
.blog-card a { color: var(--dark); font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.blog-card a:hover { color: var(--green); }
.blog-card__meta { font-size: 0.78rem; color: var(--muted); margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid--4, .team-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
  .contato-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .cta-final { padding: 64px 20px; }
  .cards-grid--3, .cards-grid--4, .service-problem, .process-steps,
  .testimonials-grid, .timeline, .stats-bar, .fdr-block, .mission-vision,
  .solutions-grid, .problem-strip, .cases-grid, .materiais-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list, .includes-list { grid-template-columns: 1fr; }
  .problem-item { border-right: none; border-bottom: 1px solid rgba(169,207,68,0.12); }
  .problem-item:last-child { border-bottom: none; }
  .solution-card { border-right: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; flex-direction: column; align-items: stretch; }
  .nav__links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 12px 16px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999; }
  .nav__links.open > a { padding: 12px 16px; border-bottom: 1px solid var(--bg); }
  .nav__links.open > a.nav__cta { margin: 12px 0 0; border: none; }
  .nav__dropdown-menu { display: none !important; position: static !important; min-width: 0 !important; box-shadow: none !important; border: none !important; padding: 0 0 0 16px !important; border-radius: 0 !important; background: transparent !important; }
  .nav__dropdown.open .nav__dropdown-menu { display: flex !important; flex-direction: column; }
  .nav__dropdown-trigger { width: 100%; padding: 12px 16px; border-bottom: 1px solid var(--bg); }
  .nav__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .sobre-stats-bar .stats-grid, .cases-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-card { border-radius: var(--radius) var(--radius) 0 0; }
  .vision-card { border-radius: 0 0 var(--radius) var(--radius); }
  .fdr-block__img img, .fdr-block__img-placeholder { height: 240px; }
  .ejs-logos { gap: 16px; }
  .ej-logo-card { width: 148px; height: 88px; }
  .hero__creds span { padding: 0 12px; font-size: 0.74rem; }
  .page-hero { min-height: 50vh; }
  .page-hero .container { padding: 80px 20px 56px; }
}


/* ===== POLISH & REFINEMENTS (v2.1) ===== */

/* Typography rhythm */
h2 { letter-spacing: -0.01em; }
.hero h1, .page-hero h1 { letter-spacing: -0.02em; }
.section-header p, .hero__sub { line-height: 1.75; }

/* Nav CTA — real green button */
.nav__links > a.nav__cta {
  background: var(--green);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 1px 3px rgba(169,207,68,0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__links > a.nav__cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(169,207,68,0.45);
}

/* Nav scroll shadow */
.nav { transition: box-shadow 0.25s ease, border-color 0.25s ease; }
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-bottom-color: transparent; }

/* Nav link underline */
.nav__links > a:not(.nav__cta)::after, .nav__dropdown-trigger::after {
  content: ''; display: block; height: 2px; width: 0; background: var(--green);
  border-radius: 2px; transition: width 0.22s ease; margin-top: 3px;
}
.nav__links > a:not(.nav__cta):hover::after, .nav__dropdown:hover .nav__dropdown-trigger::after { width: 100%; }

/* Section dark — readable body + green headings */
.section--dark { color: rgba(255,255,255,0.85); }
.section--dark h2, .section--dark .section-header h2 { color: var(--green); }
.section--dark p, .section--dark .section-header p { color: rgba(255,255,255,0.6); }

/* Problem strip depth */
.problem-strip { box-shadow: 0 6px 28px rgba(0,0,0,0.18); }
.problem-item { transition: background 0.2s ease; }
.problem-item:hover { background: rgba(169,207,68,0.04); }

/* Solution cards — depth + lift */
.solutions-grid { box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.solution-card { position: relative; transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease; }
.solution-card:hover { transform: translateY(-2px); background: #fafaf8; z-index: 2; border-color: var(--green); }
.solution-card a { transition: color 0.2s ease, border-color 0.2s ease; }
.solution-card:hover a { color: var(--green); }
.solution-card__num { transition: color 0.2s ease; }

/* Generic card lift smoothing */
.card, .blog-card, .material-card, .testimonial, .problem-card, .process-step { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: rgba(169,207,68,0.3); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.material-card:hover { transform: translateY(-2px); }

/* Buttons — micro-interactions */
.btn--primary { box-shadow: 0 1px 3px rgba(169,207,68,0.35); }
.btn--primary:hover { box-shadow: 0 6px 18px rgba(169,207,68,0.4); transform: translateY(-2px); }
.btn--lg:hover { transform: translateY(-2px); }
.btn--ghost-white { border: 1.5px solid rgba(255,255,255,0.65); }
.btn--ghost-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-1px); }
.btn--ghost:hover, .btn--ghost-dark-on-green:hover, .btn--outline:hover { transform: translateY(-1px); }

/* Forms — unified, modern */
input, select, textarea,
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group select {
  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 fill='%236B6B6B' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
input:focus, select:focus, textarea:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(169,207,68,0.15);
}
.radio-option { transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.radio-option:hover { box-shadow: 0 0 0 3px rgba(169,207,68,0.08); }

/* Timeline + team micro-motion */
.timeline__num { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.timeline__item:hover .timeline__num { transform: scale(1.06); box-shadow: 0 6px 18px rgba(169,207,68,0.35); }
.team-card__photo img { transition: transform 0.4s ease; }
.team-card:hover .team-card__photo img { transform: scale(1.04); }

/* Scroll reveal (JS-driven, fails safe) */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  [data-reveal].revealed { opacity: 1; transform: none; }
}

/* ===== iPhone / 480px ===== */
@media (max-width: 480px) {
  .hero { padding: 72px 16px 64px; }
  .hero h1, .page-hero h1 { font-size: 2rem !important; }
  .hero__sub { font-size: 1rem; }
  .section { padding: 56px 16px; }
  .cta-final { padding: 56px 16px; }
  .section-header { margin-bottom: 36px; }
  .hero__cta, .form-nav { flex-direction: column; }
  .hero__cta .btn, .form-nav .btn, .form-nav .btn-back { width: 100%; text-align: center; }
  .hero__creds { flex-direction: column; gap: 10px; align-items: center; }
  .hero__creds span { border-right: none; padding: 0; }
  .solution-card, .problem-item { padding: 30px 22px; }
  .stats-bar, .sobre-stats-bar .stats-grid, .cases-stats .stats-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .mission-card, .vision-card { padding: 38px 26px; }
  .fdr-block { gap: 36px; }
  .nav__inner { height: 64px; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.7rem); }
}


/* ===== SOBRE — diretoria em linha única (5 cards) ===== */
body .sobre-team-grid { display: grid; grid-template-columns: repeat(5, 1fr); justify-items: center; align-items: start; gap: 22px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 1000px){ body .sobre-team-grid { grid-template-columns: repeat(3, 1fr); max-width: 640px; } }
@media (max-width: 560px){ body .sobre-team-grid { grid-template-columns: repeat(2, 1fr); max-width: 380px; gap: 18px; } }


/* ===== SOBRE — imagem FDR (corrige altura 0 e lazy-load) ===== */
.fdr-block__img-wrap { display: block; }
img.fdr-block__img { aspect-ratio: 1024 / 681 !important; width: 100% !important; height: auto !important; object-fit: cover; border-radius: 16px; }
@media (max-width: 768px){ img.fdr-block__img { aspect-ratio: 16 / 10 !important; } }


/* ===== HERO HOME — foto de fundo + overlay (inspiração EJUDI/Unicap) ===== */
body .hero.hero--bg {
  /* Foto institucional 2026 servida do proprio tema (pasta /assets).
     image-set() entrega WebP a quem suporta e JPG ao resto.
     As media queries abaixo evitam mandar 1920px para um celular. */
  background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                    url(assets/hero-750.jpg);
  background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                    -webkit-image-set(url(assets/hero-750.webp) type("image/webp"),
                                      url(assets/hero-750.jpg)  type("image/jpeg"));
  background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                    image-set(url(assets/hero-750.webp) type("image/webp"),
                              url(assets/hero-750.jpg)  type("image/jpeg"));
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  body .hero.hero--bg {
    background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                      url(assets/hero-1280.jpg);
    background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                      image-set(url(assets/hero-1280.webp) type("image/webp"),
                                url(assets/hero-1280.jpg)  type("image/jpeg"));
  }
}

@media (min-width: 1400px) {
  body .hero.hero--bg {
    background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                      url(assets/hero-1920.jpg);
    background-image: linear-gradient(180deg, rgba(10,22,7,0.58) 0%, rgba(10,22,7,0.50) 42%, rgba(10,22,7,0.80) 100%),
                      image-set(url(assets/hero-1920.webp) type("image/webp"),
                                url(assets/hero-1920.jpg)  type("image/jpeg"));
  }
}

/* Hero da página de Soluções (/servicos) */
.page-hero.servicos-hero {
  background-image: url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-servicos.webp);
  background-size: cover;
  background-position: center top;
}


/* ===== AJUSTES v2.5: CTA, galeria, heros de serviço, WhatsApp ===== */
/* CTA final reformulado v2.7 — faixa escura elegante com botão verde */
body .cta-final { background: radial-gradient(ellipse 80% 130% at 50% 50%, rgba(169,207,68,0.13), transparent 65%), var(--dark-deep) !important; padding: 76px 24px !important; }
body .cta-final h2 { color: #ffffff !important; margin-bottom: 14px; }
body .cta-final p { color: rgba(255,255,255,0.62) !important; margin-bottom: 32px; }
body .cta-final a { background: var(--green) !important; color: var(--dark) !important; border: none !important; border-radius: 8px; box-shadow: 0 6px 20px rgba(169,207,68,0.32); }
body .cta-final a:hover { background: var(--green-dark) !important; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(169,207,68,0.4); }
@media (max-width: 480px){ body .cta-final { padding: 52px 16px !important; } }


/* Galeria da equipe (Sobre) */
.bev-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--container); margin: 0 auto; }
.bev-gallery figure { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 22px rgba(0,0,0,0.12); }
.bev-gallery img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 38%; transition: transform 0.5s ease; }
.bev-gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 900px){ .bev-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .bev-gallery { grid-template-columns: 1fr; } }

/* Heros das páginas de serviço com foto de fundo */
.page-template-page-abertura-de-empresa-php .hero,
.page-template-page-contratos-php .hero,
.page-template-page-registro-de-marca-php .hero,
.page-template-page-lgpd-e-privacidade-php .hero,
.page-template-page-consultoria-juridica-php .hero,
.page-template-page-empresas-juniores-php .hero {
  background-size: cover !important;
  background-position: center 32% !important;
  background-repeat: no-repeat !important;
}
.page-template-page-abertura-de-empresa-php .hero { background-image: linear-gradient(rgba(10,22,7,0.80), rgba(10,22,7,0.86)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-abertura.webp) !important; }
.page-template-page-contratos-php .hero { background-image: linear-gradient(rgba(10,22,7,0.80), rgba(10,22,7,0.86)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-contratos.webp) !important; }
.page-template-page-registro-de-marca-php .hero { background-image: linear-gradient(rgba(10,22,7,0.80), rgba(10,22,7,0.86)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-marca.webp) !important; }
.page-template-page-lgpd-e-privacidade-php .hero { background-image: linear-gradient(rgba(10,22,7,0.80), rgba(10,22,7,0.86)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-lgpd.webp) !important; }
.page-template-page-consultoria-juridica-php .hero { background-image: linear-gradient(rgba(10,22,7,0.80), rgba(10,22,7,0.86)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-consultoria.webp) !important; }
.page-template-page-empresas-juniores-php .hero { background-image: linear-gradient(rgba(10,22,7,0.80), rgba(10,22,7,0.86)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-ejs.webp) !important; }

/* Botão flutuante de WhatsApp */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 9999; display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 18px 13px 15px; border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,0.22); text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.wa-float:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,0.28); color: #fff; }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
@media (max-width: 600px){ .wa-float__label { display: none; } .wa-float { padding: 15px; } }

/* Sobre hero -> prédio da FDR (vence custom-css) */
body .page-hero.sobre-hero { background-image: linear-gradient(rgba(10,22,7,0.45), rgba(10,22,7,0.55)), url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-sobre.webp) !important; background-size: cover !important; background-position: center !important; }


/* ===== AJUSTES v2.9 ===== */
/* Centralizar subtítulo dos page-heros (estava alinhado à esquerda) */
body .page-hero .hero__sub { margin-left: auto !important; margin-right: auto !important; }
/* Materiais: foto de fundo IMG_8813 */
.page-hero.materiais-hero { background-image: url(https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-materiais.webp) !important; background-size: cover !important; background-position: center 30% !important; }
/* Contato: centralizar melhor a imagem (estava cortando) */
.page-hero.contato-hero { background-position: center !important; }


/* ===== Consultoria: serviços agrupados ===== */
.includes-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: var(--container); margin: 0 auto; }
.includes-group h3 { color: var(--dark); font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.includes-group .includes-list { grid-template-columns: 1fr; gap: 0; }
@media (max-width: 768px){ .includes-groups { grid-template-columns: 1fr; gap: 28px; } }


/* ===== LGPD: audiência (pills) + serviços 4 categorias ===== */
.lgpd-audience { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; max-width:920px; margin:24px auto 0; }
.lgpd-audience span { display:inline-flex; align-items:center; gap:8px; padding:11px 18px; background:var(--white); border:1px solid var(--border); border-radius:100px; font-size:0.9rem; color:var(--dark); font-weight:500; box-shadow:0 1px 3px rgba(0,0,0,0.04); transition:border-color .2s ease, transform .2s ease; }
.lgpd-audience span::before { content:'✓'; color:var(--green); font-weight:700; }
.lgpd-audience span:hover { border-color:var(--green); transform:translateY(-2px); }
.lgpd-audience-note { text-align:center; max-width:700px; margin:30px auto 0; font-weight:600; color:var(--dark); }
.includes-groups--4cat { grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .includes-groups--4cat { grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .includes-groups--4cat { grid-template-columns:1fr; } }


/* ── Mobile nav — menu aberto (burger toggle) ───────────────────── */
@media (max-width: 768px) {
  .nav { position: relative; }

  .nav__links.is-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 12px 24px 28px;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    z-index: 300;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .nav__links.is-open .nav__link {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
  }

  .nav__links.is-open .nav__link:last-child {
    border-bottom: none;
  }

  /* Soluções dropdown dentro do menu mobile */
  .nav__links.is-open .nav__dropdown-menu {
    display: none;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 4px 0 8px 14px;
    margin-top: 0;
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .nav__links.is-open .nav__dropdown.open .nav__dropdown-menu {
    display: grid !important;
  }

  .nav__links.is-open .nav__dropdown-menu a {
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .nav__links.is-open .nav__dropdown-menu a:hover {
    color: var(--green);
  }

  /* Label de grupo dentro do dropdown mobile */
  .nav__links.is-open .dropdown-group-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding: 10px 0 4px;
    font-weight: 600;
  }

  /* CTA button no final do menu mobile */
  .nav__links.is-open .nav__cta {
    display: block;
    margin-top: 18px;
    text-align: center;
    padding: 13px 20px !important;
    border-radius: 8px;
  }

  /* Burger animação quando aberto */
  .nav__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav__burger span {
    transition: transform 0.22s ease, opacity 0.15s ease;
    display: block;
  }
}

/* CSS DO CUSTOMIZER (REDESIGN V2) embutido a partir do commit cc7b71a.
   Antes ficava em Aparencia > Personalizar > CSS adicional, no banco de dados.
   Movido para ca para que o visual viaje junto com o tema e fique versionado. */



/* ============================================
   BEVILAQUA HOME — REDESIGN V2
   ============================================ */

:root {
  --bev-green-cta:   #A9CF44;
  --bev-green-deep:  #2D5A1B;
  --bev-green-dark:  #0F1C0A;
  --bev-green-mid:   #4A7C2F;
  --bev-green-light: #C8E17F;
  --bev-black:       #0D0D0D;
  --bev-charcoal:    #212021;
  --bev-gray-600:    #6B6B6B;
  --bev-gray-200:    #E8E8E8;
  --bev-gray-50:     #F5F5F3;
  --bev-white:       #FFFFFF;
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body { -webkit-font-smoothing: antialiased; }

.hero.hero--bg {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: #0A1607;
  overflow: hidden;
  padding: 96px 24px 72px;
}
.hero.hero--bg::before { display: none; }
.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(169,207,68,0.12); border: 1px solid rgba(169,207,68,0.35);
  color: #C8E17F; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(24px, 3vw, 44px); font-weight: 800; color: #FFFFFF;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: #A9CF44; }
.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 560px; margin-bottom: 44px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 64px; }
.btn--primary.btn--lg {
  background: #A9CF44 !important; color: #0D0D0D !important; font-weight: 700 !important;
  font-size: 15px !important; padding: 15px 30px !important; border-radius: 9px !important;
  text-decoration: none !important; transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  box-shadow: 0 4px 20px rgba(169,207,68,0.28) !important; width: auto !important;
}
.btn--primary.btn--lg:hover {
  background: #C8E17F !important; transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(169,207,68,0.38) !important;
}
.btn--ghost.btn--lg {
  background: transparent !important; color: #FFFFFF !important; font-weight: 600 !important;
  font-size: 15px !important; padding: 15px 30px !important; border-radius: 9px !important;
  border: 1.5px solid rgba(255,255,255,0.38) !important; text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s !important; display: inline-flex !important;
  align-items: center !important; gap: 8px !important;
}
.btn--ghost.btn--lg:hover {
  border-color: rgba(255,255,255,0.72) !important; background: rgba(255,255,255,0.07) !important;
}
.hero__creds { display: flex; flex-wrap: wrap; gap: 0; }
.hero__creds span {
  font-size: 12.5px; color: rgba(255,255,255,0.52); font-weight: 500;
  padding-right: 20px; margin-right: 20px; border-right: 1px solid rgba(255,255,255,0.18);
}
.hero__creds span:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.section { padding: 104px 24px !important; }
.container { max-width: 1160px; margin: 0 auto; width: 100%; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #0D0D0D;
  margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.15;
}
.section-header p { font-size: 16.5px; color: #6B6B6B; line-height: 1.7; }

.section--problema { background: #0D1A09 !important; }
.section--problema .section-header h2 { color: #FFFFFF !important; }
.section--problema .section-header p { color: rgba(255,255,255,0.5) !important; }
.problem-strip {
  display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 22px !important;
}
.problem-item {
  background: rgba(255,255,255,0.038) !important; border: 1px solid rgba(169,207,68,0.16) !important;
  border-radius: 16px !important; padding: 36px 30px !important; position: relative !important;
  overflow: hidden !important; transition: border-color 0.25s, background 0.25s, transform 0.22s !important;
}
.problem-item::before {
  content: '' !important; position: absolute !important; top: 0; left: 0; right: 0 !important;
  height: 3px !important; background: linear-gradient(90deg, #A9CF44, #4A7C2F) !important;
  border-radius: 16px 16px 0 0 !important; opacity: 0 !important; transition: opacity 0.25s !important;
}
.problem-item:hover { border-color: rgba(169,207,68,0.42) !important; background: rgba(255,255,255,0.065) !important; transform: translateY(-5px) !important; }
.problem-item:hover::before { opacity: 1 !important; }
.problem-item__tag {
  display: inline-block !important; font-size: 10.5px !important; font-weight: 800 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important; color: #A9CF44 !important;
  background: rgba(169,207,68,0.1) !important; padding: 4px 13px !important; border-radius: 100px !important; margin-bottom: 20px !important;
}
.problem-item h3 { font-size: 19px !important; font-weight: 700 !important; color: #FFFFFF !important; line-height: 1.3 !important; margin-bottom: 10px !important; letter-spacing: -0.01em !important; }
.problem-item p { font-size: 14px !important; color: rgba(255,255,255,0.52) !important; line-height: 1.72 !important; margin-bottom: 22px !important; }
.problem-item a { font-size: 13.5px !important; color: #A9CF44 !important; font-weight: 600 !important; text-decoration: none !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; transition: gap 0.18s !important; }
.problem-item a:hover { gap: 11px !important; }

.section--light { background: #F5F5F3 !important; }
.section--light .section-header h2 { color: #0D0D0D !important; }
.solutions-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important; gap: 20px !important; }
.solution-card {
  background: #FFFFFF !important; border: 1px solid #E8E8E8 !important;
  border-radius: 12px !important; padding: 30px 28px !important; transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s !important;
}
.solution-card:hover { box-shadow: none !important; transform: translateY(-4px) !important; border-color: #A9CF44 !important; }
.solution-card__num { font-size: 11px !important; font-weight: 800 !important; letter-spacing: 0.1em !important; color: #A9CF44 !important; margin-bottom: 13px !important; display: block !important; }
.solution-card h3 { font-size: 17.5px !important; font-weight: 700 !important; color: #0D0D0D !important; margin-bottom: 10px !important; line-height: 1.3 !important; letter-spacing: -0.01em !important; }
.solution-card p { font-size: 14px !important; color: #6B6B6B !important; line-height: 1.7 !important; margin-bottom: 18px !important; }
.solution-card a { font-size: 13.5px !important; color: #2D5A1B !important; font-weight: 600 !important; text-decoration: none !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; transition: gap 0.18s, color 0.18s !important; }
.solution-card a:hover { gap: 10px !important; color: #4A7C2F !important; }

.section--processo { background: #FFFFFF !important; }
.section--processo .section-header h2 { color: #0D0D0D !important; }
.section--processo .section-header p { color: #6B6B6B !important; }
.timeline { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; gap: 16px !important; }
.timeline__cta { display: flex !important; justify-content: center !important; margin-top: 40px !important; }
.timeline__item { text-align: left !important; padding: 32px 26px !important; background: #FFFFFF !important; border-radius: 12px !important; border: 1px solid #E8E8E8 !important; border-top: 3px solid #A9CF44 !important; }
.timeline__item:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08) !important; transform: translateY(-3px) !important; }
.timeline__num {
  font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important; color: #A9CF44 !important;
  display: block !important; margin: 0 0 12px !important;
  background: none !important; border-radius: 0 !important;
  width: auto !important; height: auto !important; box-shadow: none !important;
}
.timeline__item h3 { font-size: 16px !important; font-weight: 700 !important; color: #0D0D0D !important; margin-bottom: 8px !important; line-height: 1.3 !important; }
.timeline__item p { font-size: 13.5px !important; color: #6B6B6B !important; line-height: 1.65 !important; }

.testimonials { background: #0D1A09 !important; padding: 104px 24px !important; }
.testimonials .section-label {
  display: block !important; text-align: center !important; font-size: 11px !important;
  font-weight: 800 !important; letter-spacing: 0.14em !important; text-transform: uppercase !important;
  color: #A9CF44 !important; margin-bottom: 14px !important;
}
.testimonials h2 {
  color: #FFFFFF !important; text-align: center !important; font-size: clamp(26px, 3.5vw, 44px) !important;
  font-weight: 800 !important; letter-spacing: -0.025em !important; margin-bottom: 56px !important;
}
.testimonials__grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 22px !important; }
.testimonial-card {
  background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important; padding: 32px !important; transition: border-color 0.25s, background 0.25s, transform 0.2s !important;
}
.testimonial-card:hover { border-color: rgba(169,207,68,0.3) !important; background: rgba(255,255,255,0.08) !important; transform: translateY(-3px) !important; }
.testimonial-card__stars { color: #A9CF44 !important; font-size: 15px !important; letter-spacing: 3px !important; margin-bottom: 16px !important; display: block !important; }
.testimonial-card p { color: rgba(255,255,255,0.72) !important; font-size: 15px !important; line-height: 1.72 !important; font-style: italic !important; margin-bottom: 24px !important; }
.testimonial-card__author { display: flex !important; align-items: center !important; gap: 12px !important; }
.testimonial-card__info strong { display: block !important; color: #FFFFFF !important; font-weight: 700 !important; font-size: 14px !important; margin-bottom: 2px !important; }
.testimonial-card__info span { color: rgba(255,255,255,0.42) !important; font-size: 12.5px !important; }

.section--dark { background: #0A1507 !important; padding: 104px 24px !important; }
.fdr-block { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 72px !important; align-items: center !important; }
.fdr-block__img img { width: 100% !important; border-radius: 16px !important; box-shadow: 0 24px 72px rgba(0,0,0,0.5) !important; display: block !important; }
.fdr-block__content h2 { color: #A9CF44 !important; font-size: clamp(24px, 3vw, 40px) !important; font-weight: 800 !important; line-height: 1.18 !important; margin-bottom: 24px !important; letter-spacing: -0.025em !important; }
.fdr-block__content p { color: rgba(255,255,255,0.68) !important; line-height: 1.78 !important; font-size: 15.5px !important; margin-bottom: 16px !important; }
.fdr-block__content a { display: inline-flex !important; align-items: center !important; gap: 8px !important; margin-top: 8px !important; color: #A9CF44 !important; font-weight: 600 !important; font-size: 14.5px !important; text-decoration: none !important; transition: gap 0.18s !important; }
.fdr-block__content a:hover { gap: 13px !important; }

.cta-final { background: linear-gradient(135deg, #1A3310 0%, #2A5218 50%, #1A3310 100%) !important; padding: 96px 24px !important; text-align: center !important; }
.cta-final h2 { font-size: clamp(26px, 3.5vw, 48px) !important; font-weight: 800 !important; color: #FFFFFF !important; letter-spacing: -0.025em !important; margin-bottom: 16px !important; line-height: 1.15 !important; }
.cta-final p { font-size: 16px !important; color: rgba(255,255,255,0.62) !important; margin-bottom: 40px !important; }
.btn--ghost-dark-on-green, .cta-final a {
  display: inline-flex !important; align-items: center !important; gap: 10px !important;
  background: #A9CF44 !important; color: #0D0D0D !important; font-weight: 700 !important;
  font-size: 15px !important; padding: 16px 36px !important; border-radius: 9px !important;
  text-decoration: none !important; transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 4px 24px rgba(169,207,68,0.32) !important;
}
.btn--ghost-dark-on-green:hover, .cta-final a:hover { background: #C8E17F !important; transform: translateY(-2px) !important; box-shadow: 0 8px 32px rgba(169,207,68,0.42) !important; }

.site-footer, footer.site-footer { background: #080E05 !important; }

@media (max-width: 768px) {
  .fdr-block { grid-template-columns: 1fr !important; gap: 40px !important; }
  .problem-strip, .solutions-grid, .testimonials__grid { grid-template-columns: 1fr !important; }
}


/* ==============================================
   SOBRE PAGE — SECTIONS
   ============================================== */

/* HERO */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #0A1607;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,7,0.82) 0%, rgba(10,22,7,0.55) 100%);
  z-index: 1;
}
.sobre-hero {
  background-image: url('https://escritoriobevilaqua.com/wp-content/uploads/2026/09/bev-sobre.webp');
  background-size: cover;
  background-position: center top;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 96px 24px 72px;
  max-width: 860px;
}
.page-hero .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A9CF44;
  border: 1px solid rgba(169,207,68,0.4);
  border-radius: 99px;
  padding: 6px 18px;
  margin-bottom: 28px;
}
.page-hero h1 {
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 20px;
}
.page-hero .hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

/* STATS BAR */
.sobre-stats-bar {
  background: #0A1607;
  border-top: 1px solid rgba(169,207,68,0.15);
  padding: 48px 24px;
}
.sobre-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  text-align: center;
}
.sobre-stat strong {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #A9CF44;
  line-height: 1;
  margin-bottom: 8px;
}
.sobre-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* MISSÃO E VISÃO */
.sobre-mv-section {
  background: #FFFFFF;
  padding: 80px 24px;
}
.sobre-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.sobre-mv-card {
  background: #F5F5F3;
  border-radius: 16px;
  padding: 40px 36px;
  border-top: 3px solid #A9CF44;
}
.sobre-mv-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A9CF44;
  margin-bottom: 16px;
}
.sobre-mv-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: #0A1607;
  line-height: 1.3;
  margin: 0;
}

/* HISTÓRIA */
.sobre-historia-section {
  background: #0A1607;
  padding: 96px 24px;
}
.sobre-historia-inner {
  max-width: 760px;
}
.sobre-historia-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 32px;
  line-height: 1.2;
}
.sobre-historia-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0 0 20px;
}
.sobre-historia-text p:last-child { margin-bottom: 0; }

/* ÁREAS DE ATUAÇÃO */
.sobre-areas-section {
  background: #0A1607;
  padding: 96px 24px;
}
.sobre-areas-section .section__title {
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(26px, 2.8vw, 40px);
  margin: 0 0 16px;
}
.sobre-areas-section .section__sub {
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.sobre-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.sobre-area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(169,207,68,0.2);
  border-radius: 12px;
  padding: 22px 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
  transition: background 0.2s, border-color 0.2s;
}
.sobre-area-card:hover {
  background: rgba(169,207,68,0.08);
  border-color: rgba(169,207,68,0.45);
}

/* MEJ */
.sobre-mej-section {
  background: #FFFFFF;
  padding: 96px 24px;
}
.sobre-mej-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sobre-mej-inner h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  color: #0A1607;
  line-height: 1.25;
  margin: 0 0 28px;
}
.sobre-mej-inner p {
  font-size: 17px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 20px;
}
.sobre-mej-inner p:last-child { margin-bottom: 0; }

/* TEAM */
.sobre-team-section {
  background: #0A1607;
  padding: 96px 24px;
}
.sobre-team-section .section__title {
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(26px, 2.8vw, 40px);
  margin: 0 0 56px;
}
.sobre-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.sobre-team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  width: 180px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.sobre-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169,207,68,0.35);
}
.sobre-team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.sobre-team-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 16px 12px 6px;
  line-height: 1.3;
}
.sobre-team-card span {
  display: block;
  font-size: 11px;
  color: #A9CF44;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 12px 16px;
}

/* Section base */
.section { padding: 0; }

/* === FDR block: dark background + spacing fix === */
.fdr-block { background: #0A1607 !important; padding: 96px 5vw !important; }
.fdr-block__img-wrap img { width: 100% !important; border-radius: 16px !important; display: block !important; box-shadow: 0 24px 72px rgba(0,0,0,0.5) !important; }


/* ==========================================================================
   MOTION — sistema de revelação e microinterações
   Regras seguidas: curvas ease-out exponenciais (sem bounce), stagger apenas
   dentro de lista, materiais variados por seção (nao a mesma entrada em tudo),
   e conteudo VISIVEL por padrao: a animacao so acontece quando o JS confirma
   que esta rodando, marcando <html class="js-motion">. Sem JS, nada some.
   ========================================================================== */

:root {
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo:  cubic-bezier(0.16, 1, 0.30, 1);
  --rev-dur: 780ms;
}

/* estado final e tambem o estado padrao — nada depende de JS para aparecer */
.rev { opacity: 1; transform: none; clip-path: none; }

html.js-motion .rev:not(.is-in) { opacity: 0; }
html.js-motion .rev { transition: opacity var(--rev-dur) var(--ease-quint), transform var(--rev-dur) var(--ease-quint); }

/* subida discreta — cabecalhos de secao */
html.js-motion .rev--rise:not(.is-in)  { transform: translateY(18px); }

/* cartoes em grade: sobem menos e escalonam entre si */
html.js-motion .rev--card:not(.is-in)  { transform: translateY(22px) scale(0.985); }

/* depoimentos: material diferente — so escala, sem subir */
html.js-motion .rev--zoom:not(.is-in)  { transform: scale(0.965); }

/* paineis escuros e imagens: cortina vertical, nao fade */
html.js-motion .rev--wipe { transition: opacity 900ms var(--ease-expo), clip-path 900ms var(--ease-expo); }
html.js-motion .rev--wipe:not(.is-in)  { clip-path: inset(14% 0 0 0); opacity: 0; }

/* stagger dentro da lista (ate 8 itens) */
html.js-motion .rev[data-i="1"] { transition-delay: 70ms; }
html.js-motion .rev[data-i="2"] { transition-delay: 140ms; }
html.js-motion .rev[data-i="3"] { transition-delay: 210ms; }
html.js-motion .rev[data-i="4"] { transition-delay: 280ms; }
html.js-motion .rev[data-i="5"] { transition-delay: 350ms; }
html.js-motion .rev[data-i="6"] { transition-delay: 420ms; }
html.js-motion .rev[data-i="7"] { transition-delay: 490ms; }

/* ---- hero: entra no load, sem observer ---- */
@keyframes bevRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
html.js-motion .hero h1,
html.js-motion .hero .hero__sub,
html.js-motion .hero .hero__cta,
html.js-motion .page-hero h1,
html.js-motion .page-hero .hero__sub {
  animation: bevRise 900ms var(--ease-quint) both;
}
html.js-motion .hero .hero__sub, html.js-motion .page-hero .hero__sub { animation-delay: 110ms; }
html.js-motion .hero .hero__cta { animation-delay: 220ms; }

/* ---- microinteracoes: curvas melhores que o 'ease' padrao ---- */
.btn { transition: transform 280ms var(--ease-quint), box-shadow 280ms var(--ease-quint), background-color 280ms var(--ease-quint), color 280ms var(--ease-quint); }
.btn:active { transform: translateY(0) scale(0.985); transition-duration: 90ms; }
.solution-card, .problem-item, .sobre-area-card, .testimonial-card { transition: transform 420ms var(--ease-quint), box-shadow 420ms var(--ease-quint), border-color 420ms var(--ease-quint); }
.timeline__num { transition: transform 420ms var(--ease-quint), box-shadow 420ms var(--ease-quint); }

/* o numero do passo cresce quando a etapa entra — reforca a sequencia real */
html.js-motion .timeline__item .timeline__num { transform: scale(0.82); transition: transform 620ms var(--ease-expo) 120ms; }
html.js-motion .timeline__item.is-in .timeline__num { transform: scale(1); }

/* ---- acessibilidade: obrigatorio ---- */
@media (prefers-reduced-motion: reduce) {
  html.js-motion .rev,
  html.js-motion .rev:not(.is-in) { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  html.js-motion .hero h1, html.js-motion .hero .hero__sub, html.js-motion .hero .hero__cta,
  html.js-motion .page-hero h1, html.js-motion .page-hero .hero__sub { animation: none !important; }
  html.js-motion .timeline__item .timeline__num { transform: none !important; transition: none !important; }
  .btn, .solution-card, .problem-item, .sobre-area-card, .testimonial-card, .timeline__num { transition-duration: 1ms !important; }
}

/* ==========================================================================
   v3 — formulario no topo, solucoes com icone e timeline com trilho
   ========================================================================== */

/* ---- HERO EM DUAS COLUNAS ---- */
body .hero__inner--split { max-width: 1180px; margin: 0 auto; }
body .hero__copy { text-align: center; }
body .hero__aside { margin-top: 32px; }
@media (min-width: 960px) {
  body .hero__inner--split { display: grid; grid-template-columns: 1.02fr 452px; gap: 60px; align-items: center; text-align: left; }
  body .hero__copy { text-align: left; }
  body .hero__aside { margin-top: 0; }
  body .hero__inner--split .hero__creds { justify-content: flex-start; }
  body .hero__inner--split h1 { font-size: clamp(30px, 3.3vw, 45px); }
}
@media (max-width: 959px) {
  body .hero__inner--split h1 { font-size: clamp(25px, 6.2vw, 33px); }
  body .hero__inner--split .hero__sub { font-size: 14.5px; }
}

/* ---- CARTAO DO FORMULARIO ---- */
.hero-form { background: #FFFFFF; border-radius: 20px; padding: 30px 28px; box-shadow: 0 22px 64px rgba(0,0,0,0.3); text-align: left; }
.hero-form__title { font-size: 19px; font-weight: 600; color: #212021; margin: 0 0 4px; letter-spacing: -0.01em; line-height: 1.3; }
.hero-form__sub { font-size: 13.5px; color: #6B6B6B; margin: 0 0 20px; line-height: 1.5; }
.hero-form__field { margin-bottom: 14px; }
.hero-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form label { display: block; font-size: 12.5px; font-weight: 600; color: #3A3A3A; margin-bottom: 6px; }
.hero-form input[type=text], .hero-form input[type=tel], .hero-form input[type=email], .hero-form select {
  width: 100%; padding: 11px 13px; border: 1px solid #DCDCDC; border-radius: 10px;
  font-family: inherit; font-size: 14.5px; color: #212021; background: #FFFFFF;
  transition: border-color 0.2s var(--ease-quint), box-shadow 0.2s var(--ease-quint);
}
.hero-form input:focus, .hero-form select:focus { outline: none; border-color: #A9CF44; box-shadow: 0 0 0 3px rgba(169,207,68,0.3); }
.hero-form__consent { display: flex; gap: 10px; margin: 16px 0 18px; align-items: flex-start; }
.hero-form__consent input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: #A9CF44; }
.hero-form__consent label { font-size: 11.8px; font-weight: 400; color: #6B6B6B; line-height: 1.5; margin: 0; }
.hero-form__consent a { color: #2D5A1B; text-decoration: underline; }
.hero-form__submit { width: 100%; border: none; border-radius: 999px; background: #A9CF44; color: #212021;
  font-family: inherit; font-size: 15px; font-weight: 600; padding: 15px 20px; cursor: pointer;
  transition: background 0.25s var(--ease-quint), transform 0.25s var(--ease-quint); }
.hero-form__submit:hover { background: #C8E17F; transform: translateY(-2px); }
.hero-form__submit:active { transform: translateY(0) scale(0.99); }
.hero__secondary { display: inline-block; margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 14px;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.hero__secondary:hover { color: #FFFFFF; border-bottom-color: #A9CF44; }
@media (max-width: 959px) {
  .hero-form { padding: 24px 20px; }
  .hero-form__row { grid-template-columns: 1fr; }
  .hero__secondary { display: block; text-align: center; }
}

/* ---- SOLUCOES: icone e publico ---- */
.solution-card__icon { width: 28px; height: 28px; color: #A9CF44; display: block; margin-bottom: 16px; }
.solution-card__for { display: block; font-size: 12px; font-weight: 500; color: #4A7C2F; margin-bottom: 9px; }

/* ---- TIMELINE: trilho que se desenha ---- */
body .timeline { position: relative; }
.timeline__rail { position: absolute; top: 25px; left: 12.5%; right: 12.5%; height: 2px; background: rgba(33,32,33,0.12); z-index: 0; }
.timeline__rail-fill { display: block; width: 100%; height: 100%; background: #A9CF44; transform: scaleX(1); transform-origin: left; }
html.js-motion .timeline__rail-fill { transform: scaleX(0); transition: transform 1500ms var(--ease-expo); }
html.js-motion .timeline.is-in .timeline__rail-fill { transform: scaleX(1); }

body .timeline__item { background: transparent !important; border: none !important; border-radius: 0 !important;
  padding: 0 18px 0 0 !important; text-align: left !important; box-shadow: none !important; }
body .timeline__item:hover { transform: none !important; box-shadow: none !important; }
body .timeline__num { width: 52px !important; height: 52px !important; margin: 0 0 20px 0 !important;
  background: #FFFFFF !important; border: 2px solid rgba(33,32,33,0.14) !important; color: #212021 !important;
  font-size: 16px !important; font-weight: 600 !important; position: relative; z-index: 2;
  transition: background 520ms var(--ease-quint), border-color 520ms var(--ease-quint), transform 520ms var(--ease-quint); }
html.js-motion .timeline__item.is-in .timeline__num { background: #A9CF44 !important; border-color: #A9CF44 !important; }

@media (max-width: 768px) {
  body .timeline { grid-template-columns: 1fr !important; gap: 0 !important; }
  .timeline__rail { top: 8px; bottom: 34px; left: 25px; right: auto; width: 2px; height: auto; }
  .timeline__rail-fill { width: 100%; height: 100%; transform: scaleY(1); transform-origin: top; }
  html.js-motion .timeline__rail-fill { transform: scaleY(0); transition: transform 1500ms var(--ease-expo); }
  html.js-motion .timeline.is-in .timeline__rail-fill { transform: scaleY(1); }
  body .timeline__item { display: grid !important; grid-template-columns: 52px 1fr; column-gap: 18px;
    align-items: start; padding: 0 0 30px 0 !important; }
  body .timeline__num { grid-column: 1; grid-row: 1 / span 2; }
  body .timeline__item h3 { grid-column: 2; grid-row: 1; margin-top: 12px; }
  body .timeline__item p { grid-column: 2; grid-row: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html.js-motion .timeline__rail-fill { transform: none !important; transition: none !important; }
  html.js-motion .timeline__item.is-in .timeline__num,
  body .timeline__num { transition: none !important; }
}

/* ===== v3.1 — MENU MOBILE: legibilidade e hierarquia =====
   Tres defeitos observados a 390px com o menu aberto:
   (a) o sublinhado verde de hover trava aceso no toque e vira uma barra
       solta logo acima da divisoria, dando aparencia de bug;
   (b) com "Solucoes" expandido o painel passa de 790px e o CTA sai da tela,
       sem rolagem propria;
   (c) o balao do WhatsApp (z-index 9999) cobre o botao do menu.
   As regras abaixo usam .nav como primeiro seletor de proposito: e o unico
   jeito de vencer o bloco antigo desta folha e o bev-overrides do rodape,
   que estao em 0,3,0. */
@media (max-width: 768px) {

  /* Somente ordem de pintura, para o cabecalho passar a frente do balao do
     WhatsApp (z-index 9999). NAO mexer em position aqui: o .nav segue
     relative no celular, como sempre esteve. */
  .nav { z-index: 10000; }

  /* v3.1.1 - no Safari do iPhone este painel apareceu TRANSPARENTE, com o
     texto branco sumindo sobre a pagina clara atras. A causa esta em
     promover o painel a camada de composicao propria: a versao anterior
     trazia max-height com overflow-y, overscroll-behavior e
     -webkit-overflow-scrolling (descontinuada desde o iOS 13 e sem efeito
     em WebKit headless, por isso nenhum teste automatizado pegou).
     Todas removidas. O fundo fica declarado aqui tambem, e nao so na regra
     de 0,2,0 mais acima, para nao depender de uma unica origem.
     Sem max-height o painel volta a crescer para fora da tela com
     "Solucoes" aberto e quem rola e a pagina - que e exatamente o
     comportamento que ja funcionava no aparelho dela. */
  .nav .nav__links.is-open {
    background: #212021;
    padding: 8px 24px 20px;
  }

  /* O sublinhado de hover e do desktop. Aqui ele so polui. */
  .nav .nav__links.is-open > a::after,
  .nav .nav__links.is-open .nav__dropdown-trigger::after { display: none; }

  /* Itens de primeiro nivel: 16px, altura de toque confortavel. */
  .nav .nav__links.is-open > a:not(.nav__cta) { padding: 13px 0; font-size: 16px; }

  /* "Solucoes": rotulo a esquerda, seta encostada na borda direita. */
  .nav .nav__links.is-open .nav__dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 0;
    font-size: 16px;
  }
  .nav .nav__links.is-open .nav__dropdown-trigger svg {
    width: 12px; height: 8px; opacity: .5;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav .nav__links.is-open .nav__dropdown.open .nav__dropdown-trigger svg {
    transform: rotate(180deg); opacity: 1;
  }
  /* Aberto, o gatilho vira cabecalho da lista: sem divisoria embaixo. */
  .nav .nav__links.is-open .nav__dropdown.open .nav__dropdown-trigger {
    border-bottom-color: transparent;
    color: var(--green);
  }

  /* Submenu: um trilho verde no lugar de sete divisorias soltas. */
  .nav .nav__links.is-open .nav__dropdown-menu {
    padding: 0 0 8px !important;
    gap: 0;
  }
  .nav .nav__links.is-open .nav__dropdown-group {
    padding: 0 0 0 16px;
    margin: 0 0 2px;
    border-left: 1px solid rgba(169,207,68,.3);
  }
  .nav .nav__links.is-open .nav__dropdown-group:last-child { margin-bottom: 0; }
  .nav .nav__links.is-open .nav__dropdown-label {
    padding: 12px 0 2px;
    font-size: 10px;
    letter-spacing: .14em;
    color: rgba(169,207,68,.9);
  }
  .nav .nav__links.is-open .nav__dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.84);
    border-bottom: none;
    white-space: normal;
  }

  .nav .nav__links.is-open .nav__cta { margin-top: 16px; font-size: 15px; }
}


/* ===== v3.1 — LEGIBILIDADE DO TEXTO NO CELULAR =====
   O corpo de texto do site foi dimensionado em fracoes de rem pensadas
   para o desktop (0.875rem = 14px, 0.925rem = 14.8px, 0.975rem = 15.6px)
   e nunca foi reajustado para a tela pequena. Nas paginas de servico isso
   se acumula: h3 sai menor que 16px e com entrelinha 1.2, encostando no
   tamanho do paragrafo, e a hierarquia desaparece. */
@media (max-width: 768px) {

  /* Cinza de corpo mais firme: 6.8:1 sobre branco, contra 4.9:1 antes. */
  :root { --muted: #5A585C; }

  /* Corpo de texto volta para 16px com entrelinha de leitura. */
  .problem-card p, .process-step p, .card p, .faq-item p,
  .solution-card p, .material-card p, .case-card p {
    font-size: 16px;
    line-height: 1.7;
  }
  .includes-list li { font-size: 16px; line-height: 1.55; padding: 12px 0 12px 26px; }

  /* Subtitulo de secao acompanha o corpo. */
  .section-header p { font-size: 16px; line-height: 1.7; text-wrap: pretty; }

  /* h3 volta a ser titulo: maior que o paragrafo e com entrelinha propria. */
  .problem-card h3, .process-step h3, .faq-item h3, .card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  /* Texto claro sobre fundo escuro estava em 60% de branco. */
  .section--dark p, .section--dark .section-header p { color: rgba(255,255,255,0.78); }

  /* Linha de credenciais do hero. Estava como flex-row com separador a
     direita de cada item; em 390px cada item quebra para a sua propria
     linha e o separador fica sobrando na ponta, parecendo defeito.
     Vira coluna, sem separador, com o cinza um pouco mais firme. */
  .hero__creds { flex-direction: column; gap: 7px; }
  .hero__creds span {
    font-size: 13px;
    color: rgba(255,255,255,0.74);
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

/* Hero das seis paginas de servico (a home usa .hero--bg e nao entra aqui).
   Titulo de cinco linhas e dois paragrafos de quatro linhas, todos
   centralizados, deixam as duas margens irregulares em 390px. Alinhar a
   esquerda e o que mais ajuda a leitura nesse bloco. */
@media (max-width: 768px) {
  .hero:not(.hero--bg) .hero__inner { text-align: left; }
  .hero:not(.hero--bg) .hero__sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    margin-left: 0;
    margin-right: 0;
  }
  .hero:not(.hero--bg) .hero__creds { align-items: flex-start; }
  .hero:not(.hero--bg) .hero__creds span { text-align: left; }
}
