@charset "UTF-8";
/* ================================================================
   SERVIÇOS JR2 — Design System Compartilhado
   ================================================================ */

:root {
  --svc-navy:     #0a192f;
  --svc-navy-lt:  #112240;
  --svc-blue:     #007bff;
  --svc-blue-lt:  #3d9bff;
  --svc-accent:   #00aaff;
  --svc-white:    #ffffff;
  --svc-gray:     #f5f7fa;
  --svc-gray-mid: #e2e8f0;
  --svc-text:     #1a2535;
  --svc-muted:    #6b7a90;
  --svc-success:  #10b981;
  --svc-warning:  #f59e0b;

  --svc-sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --svc-sh-md: 0 8px 24px rgba(0,0,0,.08);
  --svc-sh-lg: 0 20px 60px rgba(0,0,0,.12);
  --svc-sh-blue: 0 8px 32px rgba(0,123,255,.28);

  --svc-r-sm: 6px;
  --svc-r-md: 12px;
  --svc-r-lg: 20px;
  --svc-r-xl: 28px;

  --svc-ease: cubic-bezier(.22,1,.36,1);
  --svc-spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--svc-white);
  color: var(--svc-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ================================================================
   HERO DO SERVIÇO
   ================================================================ */
.svc-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0,123,255,.15), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0,170,255,.08), transparent 50%),
    linear-gradient(135deg, #0f172a 0%, var(--svc-navy) 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: #e6f1ff;
  overflow: hidden;
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,170,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,170,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.svc-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,.2), transparent 70%);
  top: -150px;
  right: -150px;
  filter: blur(80px);
  pointer-events: none;
  animation: svcFloat 8s ease-in-out infinite alternate;
}

@keyframes svcFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(-30px, 30px); }
}

.svc-hero > .container {
  position: relative;
  z-index: 1;
}

/* Hero com foto de fundo (como na home) */
.svc-hero.svc-hero-photo {
  background-size: cover;
  background-position: center;
}

.svc-hero.svc-hero-photo::before {
  background: linear-gradient(180deg, rgba(10,25,47,.45) 0%, rgba(10,25,47,.75) 55%, rgba(10,25,47,.92) 100%);
}

.svc-hero.svc-hero-photo::after {
  display: none;
}

.svc-hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(0,123,255,.15);
  border: 1px solid rgba(0,123,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--svc-accent);
  margin: 0 auto 1.5rem;
  animation: svcFadeUp .8s var(--svc-ease) both;
}

.svc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,123,255,.12);
  border: 1px solid rgba(0,123,255,.25);
  border-radius: 99px;
  padding: .4rem 1.1rem;
  font-size: .74rem;
  font-weight: 700;
  color: #90c4ff;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: svcFadeUp .8s var(--svc-ease) .1s both;
}

.svc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 1rem;
  animation: svcFadeUp .8s var(--svc-ease) .2s both;
}

.svc-hero p {
  font-size: 1.1rem;
  color: rgba(230,241,255,.65);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: svcFadeUp .8s var(--svc-ease) .3s both;
}

.svc-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: svcFadeUp .8s var(--svc-ease) .4s both;
}

@keyframes svcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   BOTÕES
   ================================================================ */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--svc-r-md);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .3s var(--svc-ease);
}

.svc-btn-primary {
  background: var(--svc-blue);
  color: #fff;
  box-shadow: var(--svc-sh-blue);
}

.svc-btn-primary:hover {
  background: var(--svc-blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,123,255,.4);
}

.svc-btn-outline {
  background: transparent;
  color: #e6f1ff;
  border: 1.5px solid rgba(255,255,255,.25);
}

.svc-btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

.svc-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.svc-btn-whatsapp:hover {
  background: #1fb858;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.35);
}

.svc-btn-dark {
  background: var(--svc-navy);
  color: #fff;
}

.svc-btn-dark:hover {
  background: var(--svc-navy-lt);
  transform: translateY(-2px);
}

/* ================================================================
   SEÇÕES
   ================================================================ */
.svc-section {
  padding: 100px 0;
}

.svc-section-gray {
  background: var(--svc-gray);
}

.svc-section-dark {
  background: var(--svc-navy);
  color: #e6f1ff;
}

.svc-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-section-header .svc-eyebrow {
  display: inline-block;
  background: rgba(0,123,255,.1);
  color: var(--svc-blue);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.svc-section-dark .svc-eyebrow {
  background: rgba(0,123,255,.18);
  color: #90c4ff;
}

.svc-section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1.2;
  margin-bottom: .8rem;
}

.svc-section-dark h2 { color: #e6f1ff; }

.svc-section-header p {
  font-size: 1.05rem;
  color: var(--svc-muted);
  max-width: 600px;
  margin: 0 auto;
}

.svc-section-dark p {
  color: rgba(230,241,255,.6);
}

/* ================================================================
   PROBLEMA / DOR
   ================================================================ */
.svc-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.svc-pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--svc-r-md);
  border: 1px solid var(--svc-gray-mid);
  transition: all .3s var(--svc-ease);
}

.svc-section-dark .svc-pain-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.svc-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--svc-sh-md);
  border-color: rgba(0,123,255,.2);
}

.svc-pain-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--svc-r-sm);
  background: rgba(239,68,68,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 1rem;
}

.svc-pain-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.svc-pain-card p {
  font-size: .85rem;
  color: var(--svc-muted);
  line-height: 1.5;
}

.svc-section-dark .svc-pain-card p {
  color: rgba(230,241,255,.55);
}

/* ================================================================
   EXPLICAÇÃO / SOLUÇÃO (texto + visual)
   ================================================================ */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-split-text .svc-eyebrow {
  display: inline-block;
  background: rgba(0,123,255,.1);
  color: var(--svc-blue);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.svc-split-text h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.svc-split-text p {
  font-size: 1rem;
  color: var(--svc-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.svc-media-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-bottom: 24px;
}

.svc-media {
  width: 100%;
  margin-bottom: 0;
}

.svc-split-card {
  width: 100%;
  max-width: 420px;
  padding: 3rem 2.5rem;
  border-radius: var(--svc-r-xl);
  background:
    radial-gradient(circle at top right, rgba(0,123,255,.2), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,170,255,.12), transparent 45%),
    linear-gradient(135deg, #0f172a 0%, var(--svc-navy) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.svc-split-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.svc-split-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .8rem;
}

.svc-split-card p {
  font-size: .95rem;
  opacity: .75;
  line-height: 1.7;
}

/* ================================================================
   BENEFÍCIOS
   ================================================================ */
.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.svc-benefit-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--svc-r-lg);
  border: 1px solid var(--svc-gray-mid);
  transition: all .3s var(--svc-ease);
}

.svc-section-dark .svc-benefit-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}

.svc-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--svc-sh-lg);
  border-color: rgba(0,123,255,.2);
}

.svc-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0,123,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--svc-blue);
  margin-bottom: 1.2rem;
}

.svc-benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.svc-benefit-card p {
  font-size: .9rem;
  color: var(--svc-muted);
  line-height: 1.6;
}

.svc-section-dark .svc-benefit-card p {
  color: rgba(230,241,255,.55);
}

/* ================================================================
   PROCESSO / TIMELINE
   ================================================================ */
.svc-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.svc-process::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--svc-blue), var(--svc-accent));
  opacity: .3;
}

.svc-step {
  text-align: center;
  position: relative;
}

.svc-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--svc-blue), var(--svc-accent));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0,123,255,.3);
}

.svc-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.svc-step p {
  font-size: .85rem;
  color: var(--svc-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ================================================================
   CASE / RESULTADO
   ================================================================ */
.svc-case-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--svc-r-xl);
  background:
    radial-gradient(circle at 85% 15%, rgba(0,123,255,.2), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(0,170,255,.1), transparent 40%),
    linear-gradient(135deg, #0f172a 0%, var(--svc-navy) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.svc-case-metric {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--svc-r-lg);
  border: 1px solid rgba(255,255,255,.1);
}

.svc-case-metric .svc-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--svc-accent);
  line-height: 1;
}

.svc-case-metric .svc-label {
  font-size: .8rem;
  opacity: .65;
  margin-top: .3rem;
  display: block;
}

.svc-case-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .6rem;
}

.svc-case-text p {
  font-size: .95rem;
  opacity: .75;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-case-text .svc-case-client {
  font-size: .85rem;
  color: var(--svc-accent);
  font-weight: 600;
}

/* ================================================================
   FAQ
   ================================================================ */
.svc-faq {
  max-width: 800px;
  margin: 0 auto;
}

.svc-faq-item {
  border: 1px solid var(--svc-gray-mid);
  border-radius: var(--svc-r-md);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: border-color .3s;
}

.svc-section-dark .svc-faq-item {
  border-color: rgba(255,255,255,.1);
}

.svc-faq-item.open {
  border-color: rgba(0,123,255,.3);
}

.svc-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--svc-text);
  text-align: left;
  transition: background .2s;
}

.svc-section-dark .svc-faq-q {
  background: rgba(255,255,255,.04);
  color: #e6f1ff;
}

.svc-faq-q:hover {
  background: var(--svc-gray);
}

.svc-section-dark .svc-faq-q:hover {
  background: rgba(255,255,255,.06);
}

.svc-faq-q i {
  font-size: .7rem;
  color: var(--svc-muted);
  transition: transform .3s var(--svc-ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.svc-faq-item.open .svc-faq-q i {
  transform: rotate(180deg);
  color: var(--svc-blue);
}

.svc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--svc-ease);
}

.svc-faq-item.open .svc-faq-a {
  max-height: 300px;
}

.svc-faq-a p {
  padding: 0 1.5rem 1.2rem;
  font-size: .9rem;
  color: var(--svc-muted);
  line-height: 1.7;
}

/* ================================================================
   CTA FINAL
   ================================================================ */
.svc-cta {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,123,255,.12), transparent 60%),
    var(--svc-gray);
}

.svc-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: .8rem;
}

.svc-cta p {
  font-size: 1.05rem;
  color: var(--svc-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.svc-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   SERVIÇOS RELACIONADOS
   ================================================================ */
.svc-related {
  padding: 80px 0;
  border-top: 1px solid var(--svc-gray-mid);
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--svc-r-md);
  border: 1px solid var(--svc-gray-mid);
  transition: all .3s var(--svc-ease);
}

.svc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--svc-sh-md);
  border-color: rgba(0,123,255,.2);
}

.svc-related-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0,123,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--svc-blue);
  flex-shrink: 0;
}

.svc-related-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.svc-related-card p {
  font-size: .8rem;
  color: var(--svc-muted);
}

/* ================================================================
   FORMULÁRIO DE CONTATO
   ================================================================ */
.svc-form {
  background: #fff;
  border: 1px solid var(--svc-gray-mid);
  border-radius: var(--svc-r-lg);
  box-shadow: var(--svc-sh-lg);
  padding: 2.5rem;
  max-width: 620px;
  margin: 0 auto;
}

.svc-form-field {
  margin-bottom: 1.2rem;
}

.svc-form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--svc-text);
  margin-bottom: .4rem;
}

.svc-form-field input,
.svc-form-field select {
  width: 100%;
  padding: .75rem .9rem;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--svc-gray-mid);
  border-radius: var(--svc-r-sm);
  background: #fff;
  color: var(--svc-text);
  transition: border-color .2s, box-shadow .2s;
}

.svc-form-field input:focus,
.svc-form-field select:focus {
  outline: none;
  border-color: var(--svc-blue);
  box-shadow: 0 0 0 3px rgba(0,123,255,.12);
}

.svc-form-btn {
  width: 100%;
  justify-content: center;
  margin-top: .4rem;
}

.svc-form .trust {
  display: block;
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--svc-muted);
  text-align: center;
}

/* ================================================================
   TOAST
   ================================================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0a192f;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  font-size: .9rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all .3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-left: 4px solid #00c853;
}

.toast.error {
  border-left: 4px solid #ff3d00;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.svc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--svc-ease), transform .7s var(--svc-ease);
}

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

.svc-reveal-delay-1 { transition-delay: .1s; }
.svc-reveal-delay-2 { transition-delay: .2s; }
.svc-reveal-delay-3 { transition-delay: .3s; }
.svc-reveal-delay-4 { transition-delay: .4s; }

/* ================================================================
   RESPONSIVO
   ================================================================ */
@media (max-width: 992px) {
  .svc-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .svc-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .svc-process::before { display: none; }

  .svc-case-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .svc-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    padding: 130px 0 70px;
  }

  .svc-hero h1 {
    font-size: 1.8rem;
  }

  .svc-section {
    padding: 60px 0;
  }

  .svc-process {
    grid-template-columns: 1fr;
  }

  .svc-pain-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .svc-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .svc-btn {
    width: 100%;
    justify-content: center;
  }

  .svc-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
