* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary-color: #3d77b3; /* Azul institucional */
  --secondary-color: #6992a3; /* Verde 1 (suporte ao azul) */
  --secondary-dark-color: #415f69; /* Verde 2 mais profundo */
  --dark-color: #111827;
  --light-color: #f9fafb;
  --text-color: #111827;
  --accent-color: #0ea5e9; /* Acento sutil em azul, se necessário */
}
body { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--text-color); background: #f3f4f6; overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* Navegação (limpa e profissional) */
nav { background: #fff; padding: .75rem 0; position: sticky; width: 100%; top: 0; z-index: 1000; box-shadow: 0 6px 20px rgba(16,24,40,0.06); }
@keyframes slideDown { from { transform: translateY(-100%);} to { transform: translateY(0);} }
.nav-shell { padding: 0 5%; }
.nav-container { display:flex; justify-content:space-between; align-items:center; max-width:1120px; margin:0 auto; }
.logo { display:flex; align-items:center; gap:.6rem; font-size: 1.1rem; font-weight: 800; color: var(--primary-color); text-decoration: none; transition: transform .15s ease; }
.logo:hover { transform: translateY(-1px); }
.logo-placeholder { background:transparent; border:0; color:var(--primary-color); font-weight:800; font-size:1.05rem; padding:.2rem .4rem; display:inline-flex; align-items:center; gap:.5rem; cursor:pointer; }
.logo-placeholder:focus { outline:2px solid rgba(61,119,179,.16); outline-offset:2px; }
.logo-placeholder::before{ content:''; display:inline-block; width:12px; height:12px; background:var(--primary-color); border-radius:3px; box-shadow:0 2px 6px rgba(0,0,0,.08); }
.logo-text { font-size:1.05rem; color:var(--dark-color); margin-left:.4rem; display:inline-block; }
.nav-links { display:flex; list-style:none; gap:1.25rem; align-items:center; }
.nav-links a { color:var(--dark-color); text-decoration:none; transition:all .15s; padding:.45rem .65rem; border-radius:6px; position:relative; overflow:hidden; }
.nav-links a::before { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background: var(--primary-color); transition: width .24s; }
.nav-links a:hover::before { width:100%; }
.nav-links a:hover { color:var(--primary-color); transform: translateY(-2px); }
.menu-toggle { display:none; flex-direction:column; cursor:pointer; background:transparent; border:0; }
.menu-toggle span { width:25px; height:3px; background:#111827; margin:3px 0; transition:.18s; display:block; }

/* Header CTA (compact, brand-colored) */
.nav-cta { margin-left: 1rem; text-decoration:none; padding:.55rem .9rem; border-radius:8px; font-weight:700; white-space:nowrap; display:inline-flex; align-items:center; gap:.5rem; }
.nav-cta-primary { background: var(--primary-color); color:#fff; box-shadow:0 6px 22px rgba(61,119,179,.16); transition: transform .18s, box-shadow .18s; }
.nav-cta-primary:hover { transform: translateY(-2px); box-shadow:0 10px 30px rgba(61,119,179,.22); }
.nav-cta-primary:focus { outline:3px solid rgba(61,119,179,.22); outline-offset:3px; }

/* Hero: two-column layout with image card */
.hero.hero-main {
  padding: 110px 5% 100px;
  background: radial-gradient(circle at top left, #ffffff 0, #e5e7eb 55%);
}
.hero-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}
.hero-content {
  max-width: 520px;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 1.5rem;
}
.hero-highlight {
  color: var(--primary-color);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 0 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}
.hero-btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(61, 119, 179, 0.35);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(61, 119, 179, 0.45);
}
.hero-btn-secondary {
  background: #ffffff;
  color: #111827;
  border-color: #e5e7eb;
}
.hero-btn-secondary:hover {
  background: #f9fafb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}
.hero-media {
  display: flex;
  justify-content: flex-end;
}
.hero-image-card {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  background: #020617;
  min-height: 260px;
}
.hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.hero-badge {
  position: absolute;
  left: 40px;
  bottom: -26px;
  background: #ffffff;
  border-radius: 18px;
  padding: 0.85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.45);
}
.hero-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61,119,179,.10);
  color: var(--primary-color);
}
.hero-badge-svg {
  width: 18px;
  height: 18px;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
}
.hero-badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}
.hero-badge-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.1fr);
    gap: 2.5rem;
  }
  .hero-media {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero.hero-main {
    padding: 96px 1.5rem 72px;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-image-card {
    border-radius: 20px;
  }
  .hero-badge {
    left: 16px;
    bottom: 18px;
    padding: 0.75rem 1rem;
  }
}

.cta-button { display:inline-block; padding:.9rem 1.9rem; background: var(--secondary-color); color:#f9fafb; text-decoration:none; border-radius:10px; font-weight:800; transition:all .18s; box-shadow:0 8px 30px rgba(0,0,0,.08); position:relative; overflow:hidden; }
.cta-button::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); transition:left .45s; }
.cta-button:hover::before { left:100%; }
.cta-button:hover { transform: translateY(-3px); box-shadow:0 12px 32px rgba(0,0,0,.12); }

/* Seções */
section { padding:80px 0; width:100%; scroll-margin-top: 96px; }
.about .about-content,
.values .values-grid,
.services .services-container,
.contact .contact-info { max-width:1200px; margin:0 auto; padding: 0 5%; }

/* Contact form */
.contact-form { max-width: 900px; margin: 2rem auto 0; padding: 0 5%; }
.contact-form .form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:1rem; }
.contact-form .form-field label { display:block; font-weight:600; margin-bottom:.4rem; }
.contact-form .form-field input,
.contact-form .form-field textarea { width:100%; padding:.8rem 1rem; border:1px solid #dcdde1; border-radius:8px; background:#fff; color:#2c3e50; transition:border-color .2s, box-shadow .2s; }
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus { border-color: var(--primary-color); outline:none; box-shadow:0 0 0 3px rgba(26,84,144,.15); }
.contact-form .form-message { grid-column: 1 / -1; }
.contact-form .form-actions { margin-top:1rem; text-align:center; }

/* Notices */
.notice { max-width: 900px; margin: 0 auto 1rem; padding: .9rem 1.1rem; border-left: 4px solid; border-radius:8px; background:#f6f8fa; }
.notice.success { border-color:#2ecc71; background: #eafaf1; color:#145a32; }
.notice.error { border-color:#e74c3c; background: #fdecea; color:#7b241c; }

/* Responsive tweaks */
@media (max-width: 900px) {
  .contact-form .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-cta { display:none; }
}

/* WhatsApp Floating Button */
.whatsapp-float { position:fixed; right:18px; bottom:18px; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(0,0,0,.25); z-index:1100; transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow:0 14px 28px rgba(0,0,0,.3); }
.whatsapp-float img {
  height: 58px;
}
.section-title { text-align:center; font-size:2.5rem; color:#020617; margin-bottom:1rem; position:relative; animation: fadeIn 1s ease-out; }
.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.02rem;
  color: #6b7280;
}

/* Em serviços não exibimos a linha/traço sob o título */
.services .section-title::after {
  display: none;
}

/* Em serviços o título deve ser escuro, independente de variantes antigas */
.services .section-title {
  color: #111827;
}
@keyframes expandWidth { from{width:0;} to{width:100px;} }

/* Sobre Nós */
.about { background: #ffffff; }
.about-content { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.about-text { animation: slideInLeft 1s ease-out; }
@keyframes slideInLeft { from{opacity:0; transform:translateX(-50px);} to{opacity:1; transform:translateX(0);} }
.about-image { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); padding:2rem; border-radius:15px; box-shadow:0 10px 30px rgba(0,0,0,.1); animation: slideInRight 1s ease-out; position:relative; overflow:hidden; min-height:260px; display:flex; align-items:center; justify-content:center; }
@keyframes slideInRight { from{opacity:0; transform:translateX(50px);} to{opacity:1; transform:translateX(0);} }

/* Serviços */
.services { background: #f9fafb; }
.services-container { display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap:2rem; }
.service-card { background:#fff; padding:2rem; border-radius:15px; box-shadow:0 5px 20px rgba(0,0,0,.08); transition:all .3s; position:relative; overflow:hidden; }
.service-card::after{ content:''; position:absolute; top:-50%; right:-50%; width:100%; height:100%; background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%); opacity:0; transition: opacity .3s; }
.service-card:hover::after{ opacity:.1; }
.service-card:hover{ transform: scale(1.05); box-shadow:0 10px 40px rgba(0,0,0,.15); }
.service-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  margin-bottom:1rem;
  border-radius:12px;
  background: linear-gradient(135deg, #3d77b3, #6992a3);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  color:#fff;
  font-size:2.3rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%{transform:scale(1);} 50%{transform:scale(1.1);} 100%{transform:scale(1);} }
.service-card h3 { color: var(--primary-color); margin-bottom:1rem; }
.service-card ul { list-style:none; padding-left:0; }
.service-card li { padding:.5rem 0; position:relative; padding-left:25px; }
.service-card li::before { content:'✔'; position:absolute; left:0; color: var(--secondary-color); font-weight:bold; }

/* Contato */
/* ===== Contact v2 (layout igual ao mock) ===== */
.contact-v2{
  --blue:#3d77b3;               /* azul institucional */
  --blue-600:#415f69;           /* transi��o para o verde 2 */
  --card:#ffffff;
  --input:#f8fafc;
  --input-b:#e5e7eb;
  --text:#0f172a;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%);
  padding: 70px 5%;
  color:#fff;
}
.contactv2-shell{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:2rem;
  align-items:stretch;
}
.contactv2-left h2{
  font-size:28px;
  line-height:1.2;
  margin:0 0 .75rem;
  font-weight:800;
}
.contactv2-left p{
  margin:0 0 1.25rem;
  opacity:.95;
}
.contactv2-list{
  display:grid;
  gap:14px;
  list-style:none;
  padding:0;
  margin:18px 0 0;
}
.contactv2-list li{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
}
.contactv2-list svg{
  flex:0 0 22px;
  color: var(--primary-color);
}
.contactv2-list svg path{
  fill: currentColor;
}
.contactv2-list strong{
  display:block;
  font-weight:700;
  margin-bottom:2px;
}
.contactv2-list a,
.contactv2-list span{
  display:block;
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.contactv2-list a:hover{ text-decoration: underline; }

/* Card do formulário */
.contactv2-card{
  background: var(--card);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  padding: 22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.contactv2-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contactv2-form input,
.contactv2-form textarea{
  width:100%;
  background: #ffffff;
  border:1px solid var(--input-b);
  border-radius:6px;
  padding:12px 14px;
  color: var(--text);
  outline:none;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.contactv2-form input::placeholder,
.contactv2-form textarea::placeholder{ color:#9ca3af; }
.contactv2-form input:focus,
.contactv2-form textarea:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
  background:#fff;
}
.contactv2-btn{
  margin-top:6px;
  width:100%;
  border:0;
  border-radius:8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%);
  color:#ffff;
  font-weight:800;
  padding:12px 16px;
  cursor:pointer;
  transition: filter .15s, transform .05s;
}
.contactv2-btn:hover{ filter: brightness(1.05); }
.contactv2-btn:active{ transform: translateY(1px); }

/* avisos (reuso dos seus .notice) dentro do card */
.contactv2-card .notice{ margin: 0 0 10px; }

/* Acessibilidade */
.sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
/* honeypot */
.contactv2-form .hp{ position:absolute; left:-9999px; }

/* responsivo */
@media (max-width: 1024px){
  .contactv2-shell{ grid-template-columns:1fr; }
  .contactv2-card{ order:2; }
}


/* Footer */
footer {
  --footer-bg-opacity: 1;
  background: rgb(17 24 39 / var(--footer-bg-opacity, 1));
  color: #e5e7eb;
  padding: 3rem 5% 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}
.footer-content {
  max-width: 1120px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section h3 {
  font-size: 0.95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin: 0 0 0.75rem;
}
.footer-section p {
  font-size: 0.95rem;
  color: #e5e7eb;
  margin: 0.25rem 0;
}
.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-section ul li {
  padding: 0.3rem 0;
}
.footer-section a {
  color: #e5e7eb;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}
.footer-section a:hover {
  opacity: 1;
  color: #f9fafb;
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 0 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  color: #9ca3af;
  font-size: 0.85rem;
}
.developer-credit {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  color: #6b7280;
}
.innova-logo {
  height: 80px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.9;
  transition: transform .2s ease, opacity .2s ease;
}
.innova-logo:hover {
  transform: translateY(-1px);
  opacity: 1;
}
@media (max-width: 640px) {
  footer {
    padding: 2.5rem 1.5rem 1.25rem;
  }
  .footer-content {
    gap: 1.5rem;
  }
}


/* Scroll animation (desativada: elementos já entram visíveis) */
.scroll-animate { opacity:1; transform:none; }
.scroll-animate.show { opacity:1; transform:none; }

/* Responsive */
@media (max-width: 768px){
  .nav-links { display:none; position:absolute; top:100%; left:0; width:100%; background: var(--primary-color); flex-direction:column; padding:1rem; box-shadow:0 5px 20px rgba(0,0,0,.2); }
  .nav-links.active { display:flex; }
  .menu-toggle { display:flex; }
  .hero.hero-main .hero-title { font-size:2rem; }
  .about-content { grid-template-columns:1fr; }
  .about-image { height:200px; }
}

/* Loader */
.loader { position:fixed; top:0; left:0; width:100%; height:100%; background:#fff; display:flex; justify-content:center; align-items:center; z-index:9999; transition:opacity .5s; }
.loader.hidden { opacity:0; pointer-events:none; }
.loader-spinner { width:50px; height:50px; border:5px solid var(--light-color); border-top:5px solid var(--primary-color); border-radius:50%; animation: spin 1s linear infinite; }
@keyframes spin { 0%{transform:rotate(0);} 100%{transform:rotate(360deg);} }

/* === Overrides: Header & Hero (Plasa mockup) === */
/* Header full-width solid bar */
nav.site-nav { background:#fff; padding: .60rem 5%; position: sticky; top: 0; z-index: 1000; animation: slideDown .5s ease-out; border-bottom:1px solid #e5e7eb; }
.nav-shell { max-width:1200px; margin:0 auto; padding:0; }
.nav-container { display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.site-nav .logo img { height:55px; }
.site-nav .logo span { color:#111827; }
.site-nav .nav-links { gap:2rem; align-items:center; }
.site-nav .nav-links a { color:#111827; padding:.5rem .25rem; position:relative; text-decoration:none; }
.site-nav .nav-links a::before { content:''; position:absolute; bottom:-8px; left:0; width:0; height:2px; background: var(--primary-color); transition: width .2s; }
.site-nav .nav-links a:hover { color: var(--primary-color); }
.site-nav .nav-links a:hover::before { width:100%; }
.site-nav .menu-toggle { display:none; background:transparent; border:0; }
.site-nav .menu-toggle span { width:24px; height:2px; background:#111827; margin:4px 0; display:block; }
.nav-cta { margin-left:1rem; text-decoration:none; padding:.6rem 1rem; border-radius:999px; font-weight:600; white-space:nowrap; }
.nav-cta-primary { background: var(--primary-color); color:#fff; box-shadow:0 6px 20px rgba(61,119,179,.18); transition: transform .18s, box-shadow .18s; }
.nav-cta-primary:hover { transform: translateY(-2px); box-shadow:0 10px 30px rgba(61,119,179,.24); color:#fff; }
nav.site-nav.scrolled { box-shadow:0 4px 12px rgba(0,0,0,.06); }

/* Hero adjustments to match mockup */
/* (layout and hero styles are defined near the top of the file) */

@media (max-width: 768px){
  .site-nav .nav-links { display:none; position:absolute; top:100%; left:0; width:100%; background:#fff; color:#111827; flex-direction:column; padding:1rem; border-bottom:1px solid #e5e7eb; box-shadow:0 10px 30px rgba(0,0,0,.06); }
  .site-nav .nav-links.active { display:flex; }
  .site-nav .menu-toggle { display:flex; }
  .hero-title { font-size:2.1rem; }
}

.about-plasaconsultoria { background:#fff; padding: 80px 5% 70px; }
.about-plasaconsultoria .container { max-width: 1100px; margin: 0 auto; text-align: center; }
.aboutls-title { font-size: 2.25rem; line-height: 1.18; color:#020617; font-weight: 800; margin-bottom: 0.6rem; }
.aboutls-subtitle { font-size: 1.05rem; color:#111827; max-width: 900px; margin: 0 auto; line-height: 1.7; }
.aboutls-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; margin-top: 3.5rem; align-items: start; }
.aboutls-item { background: #ffffff; padding: 2.2rem 2.2rem 2rem; border-radius:18px; box-shadow: 0 18px 40px rgba(15,23,42,.06); border: 1px solid rgba(148, 163, 184, 0.35); transition: transform .18s, box-shadow .18s, border-color .18s; }
  .aboutls-item:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(15,23,42,.09); border-color: rgba(61,119,179,.45); }
.aboutls-item h3 { font-size: 1.125rem; color:#020617; font-weight: 700; margin: .75rem 0 .45rem; }
.aboutls-item p { color:#111827; max-width: 40ch; margin: 0; }
.aboutls-icon {
  display:inline-flex;
  align-items:flex-start;
  justify-content:flex-start;
  margin-bottom:.75rem;
  color:var(--primary-color);
  background:transparent;
  border-radius:0;
  box-shadow:none;
}
.aboutls-icon svg {
  width:32px;
  height:32px;
}

@media (max-width: 1024px){
  .aboutls-grid { grid-template-columns: 1fr; gap: 2.2rem; margin-top: 2.8rem; }
  .aboutls-title { font-size: 2rem; }
  .aboutls-subtitle { font-size: 1rem; }
  .aboutls-icon { width:70px; height:70px; }
}

/* === Principais Resultados / Diferenciais === */
.differentials {
  background:#ffffff;
  padding: 80px 5% 70px;
}
.differentials .container {
  max-width: 1100px;
  margin: 0 auto;
}
.differentials .diff-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:2.5rem 3.5rem;
}
.diff-item {
  text-align:center;
}
.diff-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(15,23,42,0.12);
  margin-bottom:1rem;
  color:#0f172a;
}
.diff-icon svg {
  display:block;
  width:clamp(28px, 4vw, 34px);
  height:clamp(28px, 4vw, 34px);
}
.diff-icon--costs {
  background: #dcfce7;
  color: #16a34a;
}
.diff-icon--control {
  background: #e0f2fe;
  color: #2563eb;
}
.diff-icon--turnover {
  background: #f3e8ff;
  color: #7c3aed;
}
.diff-icon--quality {
  background: #fef9c3;
  color: #ca8a04;
}
.diff-icon--strategy {
  background: #e0f2f1;
  color: #0d9488;
}
.diff-icon--loss {
  background: #fee2e2;
  color: #dc2626;
}
.diff-item h3 {
  font-size:1.1rem;
  color:#111827;
  font-weight:800;
  margin:.35rem 0 .25rem;
}
.diff-item p {
  color:#4b5563;
  font-size: .97rem;
}

/* === Depoimentos / Testimonials === */
.testimonials { background: #f3f4f6; }
.testimonials .testimonial-grid { max-width:1100px; margin:0 auto; padding:0 5%; display:grid; grid-template-columns: repeat(3, 1fr); gap:1.5rem; }
.testimonial-card { background:#f3f4f6; border:1px solid #e5e7eb; border-radius:12px; padding:1.5rem; box-shadow:0 6px 18px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,.08); }
.testimonial-author { display:flex; align-items:center; gap:.75rem; margin-bottom:.8rem; }
.testimonial-avatar { width:48px; height:48px; border-radius:50%; display:block; box-shadow:0 2px 6px rgba(0,0,0,.1); }
.testimonial-meta strong { display:block; color:#111827; font-weight:800; }
.testimonial-meta span { display:block; font-size:.9rem; color:#6b7280; }
.testimonial-card blockquote { margin:0; color:#4b5563; font-style:italic; line-height:1.6; }

@media (max-width: 1024px){
  .testimonials .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .differentials .diff-grid { gap:1.5rem; }
  .diff-icon {height: 92px; width: 92px;}
  .testimonials .testimonial-grid { grid-template-columns: 1fr; }
}

/* === Corporate dark theme overrides for Plasa Consultoria === */

:root {
  --dark-color: #020617;
  --light-color: #0f172a;
  --text-color: #e5e7eb;
  --muted-text-color: #94a3b8;
  --page-bg: #020617;
  --surface-color: #020617;
  --card-color: #ffffff;
  --border-subtle: rgba(15,23,42,0.08);
  --primary-color: #3d77b3;
  --secondary-color: #6992a3;
  --accent-color: #3d77b3;
}

body {
  background: var(--page-bg);
  color: var(--text-color);
}

/* Navegação mais escura e séria */
nav.site-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(16,24,40,0.06);
  backdrop-filter: none;
}
.nav-shell {
  max-width: 1200px;
}
.site-nav .logo {
  color: #111827;
  font-weight: 700;
}
.site-nav .logo span,
.logo-text {
  color: #111827;
}
  .nav-links a {
    color: #111827;
    font-weight: 500;
  }
  .nav-links a::before {
    background: var(--primary-color);
  }
  .nav-links a:hover {
    color: var(--primary-color);
}
.menu-toggle span {
  background: #111827;
}
  .nav-cta-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(61,119,179,.24);
  }
  .nav-cta-primary:hover {
    background: var(--primary-color);
    box-shadow: 0 12px 32px rgba(61,119,179,.3);
    transform: translateY(-1px);
  }

@media (max-width: 768px){
  .site-nav .nav-links {
    background: #ffffff;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
  }
}

/* Loader em fundo escuro */
.loader {
  background: #020617;
}
.loader-spinner {
  border-color: rgba(15,23,42,.8);
  border-top-color: var(--secondary-color);
}

/* Hero institucional mais sóbrio */
.hero {
  background:
    radial-gradient(circle at top left, rgba(148,163,184,.2) 0, transparent 55%),
    linear-gradient(135deg, #020617 0%, #020617 45%, #0f172a 100%);
}
.hero .hero-bg::after {
  background: radial-gradient(circle at top right, rgba(61,119,179,.35) 0, transparent 60%);
}
.hero p {
  color: rgba(226,232,240,.92);
}
.cta-button {
  background: var(--secondary-color);
  color: #f9fafb;
}

/* Seções em fundo escuro com cartões neutros */
.about-plasaconsultoria,
.values,
.services,
.testimonials {
  background: var(--surface-color);
}

.aboutls-title,
.section-title,
.testimonial-meta strong {
  color: #020617;
}

.aboutls-subtitle,
.aboutls-item p,
.value-card p,
.service-card p,
.testimonial-meta span,
.testimonial-card blockquote {
  color: var(--muted-text-color);
}

.aboutls-item,
.value-card,
.service-card,
.testimonial-card {
  background: #020617;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 60px rgba(15,23,42,.85);
}

.aboutls-item:hover,
.value-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
}

.aboutls-icon,
.value-icon {
  background: radial-gradient(circle at 30% 0, rgba(245,179,53,.3) 0, transparent 55%),
              linear-gradient(135deg, #3d77b3, #415f69);
  box-shadow: 0 10px 28px rgba(15,23,42,.9);
}

/* Serviços – bullets mais discretos */
.service-card li::before {
  content: '▹';
  font-size: 0.9rem;
  top: 0.55rem;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}
.service-card li {
  color: var(--muted-text-color);
}

/* Diferenciais */
.diff-item p {
  color: var(--muted-text-color);
}

/* Depoimentos sobre fundo escuro */
.testimonials .testimonial-grid {
  gap: 1.75rem;
}
.testimonial-card {
  background: #020617;
  border: 1px solid var(--border-subtle);
}
.testimonial-avatar {
  box-shadow: 0 4px 12px rgba(15,23,42,.85);
}

/* Correção de contraste para o subtítulo do hero principal
   (sobrescreve variantes escuras antigas baseadas em .hero p) */
.hero.hero-main .hero-subtitle {
  color: #4b5563;
}

/* Contato v2 – alinhado à paleta escura */
.contact-v2{
  --blue:#020617;
  --blue-600:#0f172a;
  --card:#020617;
  --input:#020617;
  --input-b:rgba(148,163,184,.45);
  --text:#e5e7eb;
  background: var(--blue);
}
.contactv2-card{
  background: var(--card);
  border:1px solid var(--border-subtle);
}
.contactv2-form input,
.contactv2-form textarea{
  color: var(--text);
}
.contactv2-btn{
  background: var(--secondary-color);
  color:#ffff;
}

/* === Plasa layout refinements: sections, cards & dividers === */

:root {
  --section-border: #e5e7eb;
}

.about-plasaconsultoria,
.values,
.services,
.testimonials {
  position: relative;
}

.about-plasaconsultoria {
  background: #e5e7eb;
  border-top: 1px solid var(--section-border);
  border-bottom: 1px solid var(--section-border);
}

.values {
  background: #f3f4f6;
  border-top: 1px solid var(--section-border);
}

.services {
  background: #e5e7eb;
  border-top: 1px solid var(--section-border);
}

.testimonials {
  background: #e5e7eb;
  border-top: 1px solid var(--section-border);
}

/* Cards sempre mais claros que o fundo (sem ser branco puro) */
.aboutls-item,
.value-card,
.service-card,
.testimonial-card {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 8px 26px rgba(15,23,42,0.10);
}

/* === About (PLASA) – layout final limpo, seguindo o mock === */
.about-plasaconsultoria {
  background: #ffffff;
  border: 0;
}
.about-plasaconsultoria .container {
  max-width: 1100px;
}
.aboutls-title {
  color: #020617;
}
.aboutls-subtitle {
  color: #111827;
}
  .aboutls-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  }
.aboutls-item h3 {
  color: #020617;
  font-weight: 700;
}
.aboutls-item p {
  color: #111827;
}
.aboutls-icon {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: .75rem;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--primary-color);
}
.aboutls-icon svg {
  width: 32px;
  height: 32px;
}

/* === Serviços (layout principal de cards) === */
.services {
  background: #f3f4f6;
}
.services-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: #ffffff;
  padding: 2.2rem 2.2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
  border-color: rgba(59, 130, 246, 0.45);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 1.4rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--primary-color);
  animation: none;
}
.service-icon .service-svg {
  width: 32px;
  height: 32px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.6rem;
}
.service-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #111827;
}
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 1.8rem 1.6rem 1.7rem;
  }
}

/* === Depoimentos (override final alinhado ao mock claro) === */
.testimonials {
  background:#f3f4f6;
}
.testimonials .testimonial-grid {
  max-width:1100px;
  margin:0 auto;
  padding:0 5%;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1.75rem;
}
.testimonial-card {
  position:relative;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:1.6rem 1.6rem 1.4rem;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover {
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(15,23,42,.10);
}
.testimonial-author {
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-top:1.4rem;
}
.testimonial-avatar {
  width:48px;
  height:48px;
  border-radius:50%;
  display:block;
  box-shadow:0 4px 10px rgba(15,23,42,.20);
}
.testimonial-meta strong {
  display:block;
  color:#020617;
  font-weight:800;
  font-size:.98rem;
}
.testimonial-meta span {
  display:block;
  font-size:.85rem;
  color:#6b7280;
}
.sr-stars {
  position:absolute;
  top:1.2rem;
  left:1.6rem;
  font-size:1.05rem;
}
.testimonial-card blockquote {
  margin:1.9rem 0 0;
  color:#4b5563;
  font-style:italic;
  line-height:1.6;
}

@media (max-width: 1024px){
  .testimonials .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .testimonials .testimonial-grid { grid-template-columns: 1fr; }
}
