/* ===================================================================
   Teixeira & Morais – Folha de estilo compartilhada
   Usada pela página principal (index.html) e por todas as
   subpáginas de serviço. Mantenha este arquivo na mesma pasta.
=================================================================== */

:root {
  --green-900: #0a2e1a;
  --green-800: #103d22;
  --green-700: #155228;
  --green-600: #1a6632;
  --green-500: #1f7a3c;
  --green-400: #27a04e;
  --green-300: #3dc468;
  --green-200: #a3e6b8;
  --green-100: #e6f7ec;
  --green-50:  #f2fbf5;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --gray-text: #4a5568;
  --dark-text: #1a202c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 46, 26, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--green-300); }

nav .nav-cta {
  background: var(--green-400);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
nav .nav-cta:hover { background: var(--green-300) !important; color: var(--white) !important; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 100px 5% 80px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(39,160,78,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(201,168,76,0.1) 0%, transparent 60%);
}

/* Diagonal decorative line */
#hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(39,160,78,0.4), transparent);
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39,160,78,0.2);
  border: 1px solid rgba(61,196,104,0.3);
  color: var(--green-300);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-400);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--green-400);
}
.btn-primary:hover {
  background: var(--green-300);
  border-color: var(--green-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39,160,78,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

.hero-pills {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 2;
}
.hero-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.hero-pill .pill-icon { font-size: 1.3rem; }
.hero-pill .pill-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); display: block; }
.hero-pill .pill-value { font-size: 0.88rem; font-weight: 600; display: block; }

/* ─── SECTION SHARED ─── */
section { padding: 100px 5%; }

.section-tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── SERVIÇOS ─── */
#servicos { background: var(--green-50); }

.servicos-header { text-align: center; margin-bottom: 3.5rem; }
.servicos-header .section-subtitle { margin: 0 auto; }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.servico-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  /* card agora é um link */
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.servico-card:hover {
  border-color: var(--green-200);
  box-shadow: 0 12px 40px rgba(27,122,60,0.1);
  transform: translateY(-4px);
}
.servico-card:hover::before { transform: scaleX(1); }

.servico-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.servico-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-800);
  margin-bottom: 0.75rem;
}
.servico-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
}
.servico-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-600);
  transition: gap 0.2s;
}
.servico-card:hover .servico-more { gap: 12px; }

/* ─── EMPRESA ─── */
#empresa { background: var(--white); }

.empresa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.empresa-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.stat-box {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.stat-box .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green-600);
  font-weight: 700;
  display: block;
}
.stat-box .stat-label {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-top: 4px;
}

.empresa-compromissos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.empresa-compromissos li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-text);
}
.empresa-compromissos li::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.empresa-visual {
  position: relative;
}
.empresa-card-main {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 20px;
  padding: 48px 40px;
  color: white;
}
.empresa-card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.empresa-card-main p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.empresa-card-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: 14px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.empresa-card-float .float-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.empresa-card-float .float-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ─── RAMOS ─── */
#ramos { background: var(--green-900); }
#ramos .section-title { color: var(--white); }
#ramos .section-tag { background: rgba(39,160,78,0.25); color: var(--green-300); }

.ramos-header { margin-bottom: 3.5rem; }

.ramos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.ramo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}
.ramo-card:hover {
  background: rgba(39,160,78,0.15);
  border-color: var(--green-400);
}
.ramo-card .ramo-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.ramo-card strong { color: var(--white); font-size: 0.95rem; display: block; margin-bottom: 0.25rem; }
.ramo-card span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.clientes-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.clientes-ticker-wrap {
  overflow: hidden;
  position: relative;
}
.clientes-ticker-wrap::before,
.clientes-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.clientes-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--green-900), transparent);
}
.clientes-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--green-900), transparent);
}

.clientes-ticker {
  display: flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.clientes-ticker:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cliente-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  font-weight: 600;
  transition: color 0.2s;
}
.cliente-name:hover { color: var(--green-300); }

/* ─── DIFERENCIAIS ─── */
#destaques { background: var(--green-50); }

.destaques-header { text-align: center; margin-bottom: 3.5rem; }
.destaques-header .section-subtitle { margin: 0 auto; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid var(--green-200);
  background: transparent;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: white;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.diferencial-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--green-200);
}
.diferencial-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-900);
  margin-bottom: 1rem;
}
.diferencial-content p {
  color: var(--gray-text);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.diferencial-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.diferencial-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-text);
}
.diferencial-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
  text-align: center;
  line-height: 22px;
}
.diferencial-visual {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 16px;
  padding: 48px 36px;
  color: white;
  text-align: center;
}
.diferencial-visual .d-icon { font-size: 4rem; margin-bottom: 1rem; }
.diferencial-visual h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.diferencial-visual p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.65; }

/* ─── CTA BANNER ─── */
#cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  padding: 80px 5%;
  text-align: center;
}
#cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  margin-bottom: 1rem;
}
#cta-banner h2 em { color: var(--gold-light); font-style: italic; }
#cta-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }
.cta-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cta-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-pill span { font-size: 1.1rem; }

/* ─── CONTATO ─── */
#contato { background: var(--white); }

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contato-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green-900);
  margin-bottom: 0.75rem;
}
.contato-info > p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item-text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 3px;
}
.info-item-text span {
  font-size: 0.93rem;
  color: var(--gray-text);
}

/* Form */
.contato-form {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 20px;
  padding: 40px;
}
.contato-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-900);
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--green-200);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(31,122,60,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  background: var(--green-600);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31,122,60,0.3);
}
.btn-submit:disabled {
  background: var(--green-400);
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 28px 5%;
  font-size: 0.83rem;
  line-height: 1.8;
}
footer strong { color: rgba(255,255,255,0.85); }

/* ===================================================================
   SUBPÁGINAS DE SERVIÇO
=================================================================== */

/* Hero da subpágina */
.sp-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
  padding: 130px 5% 72px;
}
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 85% 30%, rgba(39,160,78,0.20) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.10) 0%, transparent 60%);
}
.sp-hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--green-300); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.sp-hero .sp-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.sp-hero .sp-tag {
  display: inline-block;
  background: rgba(39,160,78,0.22);
  border: 1px solid rgba(61,196,104,0.3);
  color: var(--green-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.sp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--white);
  line-height: 1.18;
  font-weight: 700;
}
.sp-hero .sp-sub {
  color: rgba(255,255,255,0.74);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 660px;
  margin-top: 1.1rem;
}

/* Conteúdo */
.sp-section { padding: 64px 5%; }
.sp-section.alt { background: var(--green-50); }
.sp-container { max-width: 920px; margin: 0 auto; }
.sp-eyebrow {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.sp-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-900);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}
.sp-section p {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}
.sp-lead { font-size: 1.12rem !important; color: var(--green-800) !important; }
.sp-section p strong { color: var(--green-800); }

/* Passo a passo */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.25s;
}
.step:hover { border-color: var(--green-400); box-shadow: 0 10px 30px rgba(27,122,60,0.08); }
.step .step-num {
  counter-increment: step;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .step-num::before { content: counter(step); }
.step h4 { font-size: 1rem; color: var(--green-900); margin-bottom: 0.3rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* Caixa de base legal */
.legal-box {
  background: var(--green-900);
  border-radius: 18px;
  padding: 36px 38px;
  color: rgba(255,255,255,0.82);
  margin-top: 0.5rem;
}
.legal-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.legal-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.legal-box li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; line-height: 1.6; }
.legal-box li::before {
  content: '§';
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.legal-box .legal-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 1.25rem; }

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: 14px;
  padding: 26px 24px;
}
.benefit .b-icon { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.benefit h4 { font-size: 1rem; color: var(--green-800); margin-bottom: 0.4rem; }
.benefit p { font-size: 0.9rem; margin: 0; }

/* Para quem é indicado */
.audience-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--green-800);
  font-weight: 500;
}
.audience-list li::before { content: '✓'; color: var(--green-500); font-weight: 800; }

/* Destaque numérico */
.sp-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.sp-highlight .hl-box {
  flex: 1 1 200px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 16px;
  padding: 28px 26px;
  color: white;
}
.sp-highlight .hl-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  color: var(--gold-light);
}
.sp-highlight .hl-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 0.3rem; }

/* CTA da subpágina */
.sp-cta {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  padding: 72px 5%;
  text-align: center;
}
.sp-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: white;
  margin-bottom: 0.9rem;
}
.sp-cta h2 em { color: var(--gold-light); font-style: italic; }
.sp-cta p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.sp-cta .cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Outros serviços */
.sp-others { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.sp-others a {
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  transition: all 0.2s;
}
.sp-others a:hover { background: var(--green-600); border-color: var(--green-600); color: white; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav ul { display: none; }
  .empresa-layout, .contato-layout, .diferencial-content { grid-template-columns: 1fr; gap: 2rem; }
  .ramos-grid { grid-template-columns: 1fr 1fr; }
  .empresa-card-float { position: static; margin-top: 1.5rem; display: inline-block; }
  .empresa-visual { padding-bottom: 0; }
  .diferencial-content { padding: 28px 24px; }
  .contato-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .ramos-grid { grid-template-columns: 1fr; }
  .hero-pills { display: none; }
  .empresa-stats { grid-template-columns: 1fr 1fr; }
}
