/* ================================== */
/* INÍCIO - PÁGINAS INTERNAS SERVIÇOS */
/* ================================== */

.service-hero,
.service-intro,
.service-benefits,
.service-audience,
.service-deliverables,
.service-differential,
.service-process,
.service-cta {
  padding: 100px 0;
  position: relative;
}

/* ====================== */
/* HERO (ESCURO) */
/* ====================== */

.service-hero {
  background: linear-gradient(135deg, #0f2f4a 0%, #1c4d73 100%);
  padding-top: 140px;
  color: #ffffff;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.service-hero .section-title span {
  color: var(--dourado);
}

.service-hero .section-title h1 {
  color: #ffffff;
}

.service-hero .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.service-hero .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.service-hero .btn-outline:hover {
  background: #ffffff;
  color: var(--azul-principal);
}

/* ====================== */
/* FUNDOS ALTERNADOS */
/* ====================== */

.service-intro {
  background: #ffffff;
}

.service-benefits {
  background: #f8fafc;
}

.service-audience {
  background: #ffffff;
}

.service-deliverables {
  background: #f8fafc;
}

.service-differential {
  background: linear-gradient(
    180deg,
    rgba(18, 62, 99, 0.03) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.service-process {
  background: #f8fafc;
}

.service-cta {
  background: #f8fafc;
  padding-bottom: 110px;
}

/* ====================== */
/* TITULOS E TEXTOS */
/* ====================== */

.service-hero .section-title {
  max-width: 860px;
}

.service-intro .section-title,
.service-benefits .section-title,
.service-audience .section-title,
.service-deliverables .section-title,
.service-differential .section-title,
.service-process .section-title,
.service-cta .section-title {
  max-width: 860px;
}

.section-title span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dourado);
}

/* HERO título */
.service-hero .section-title h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* RESTO títulos */
.service-intro .section-title h2,
.service-benefits .section-title h2,
.service-audience .section-title h2,
.service-deliverables .section-title h2,
.service-differential .section-title h2,
.service-process .section-title h2,
.service-cta .section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--azul-principal) !important;
}

/* HERO texto */
.service-hero .section-title p {
  font-size: 1.02rem;
  line-height: 1.75;
}

/* RESTO textos */
.service-intro .section-title p,
.service-benefits .section-title p,
.service-audience .section-title p,
.service-deliverables .section-title p,
.service-differential .section-title p,
.service-process .section-title p,
.service-cta .section-title p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--texto-suave);
}

.section-title.center {
  text-align: center;
  margin: 0 auto;
}

.section-title.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ====================== */
/* BOTÕES */
/* ====================== */

.service-hero-actions,
.service-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ====================== */
/* INTRO GRID */
/* ====================== */

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.service-intro-text p:last-child {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texto);
  max-width: 720px;
}

/* ====================== */
/* CARDS */
/* ====================== */

.service-intro-card,
.service-differential-box,
.service-cta-box {
  background: var(--fundo-section);
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(18, 62, 99, 0.08);
}

.service-intro-card {
  padding: 30px;
  background: linear-gradient(
    180deg,
    rgba(200, 168, 90, 0.08) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.service-intro-card h3 {
  font-size: 1.18rem;
  color: var(--azul-principal);
  margin-bottom: 18px;
}

.service-intro-card ul,
.before-card ul,
.after-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-intro-card li,
.before-card li,
.after-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--texto);
  line-height: 1.65;
}

.service-intro-card li::before,
.before-card li::before,
.after-card li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dourado);
  position: absolute;
  left: 0;
  top: 10px;
}

/* ====================== */
/* GRIDS */
/* ====================== */

.service-benefits-grid,
.service-audience-grid,
.service-deliverables-grid,
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-card,
.audience-item,
.deliverable-item,
.process-step,
.before-card,
.after-card {
  background: #ffffff;
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(18, 62, 99, 0.06);
  transition: 0.25s ease;
}

.benefit-card:hover,
.audience-item:hover,
.deliverable-item:hover,
.process-step:hover,
.before-card:hover,
.after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 62, 99, 0.11);
  border-color: rgba(200, 168, 90, 0.32);
}

.benefit-number,
.process-step span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(200, 168, 90, 0.14);
  color: var(--dourado);
  font-weight: 700;
  margin-bottom: 18px;
}

.benefit-card h3,
.audience-item h3,
.deliverable-item h3,
.process-step h3,
.before-card h3,
.after-card h3 {
  color: var(--azul-principal);
}

.benefit-card p,
.audience-item p,
.deliverable-item p,
.process-step p {
  color: var(--texto-suave);
}

/* ====================== */
/* DIFERENCIAL */
/* ====================== */

.service-differential-box,
.service-cta-box {
  padding: 42px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.tag {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.before-tag {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
}

.after-tag {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

/* ====================== */
/* CTA */
/* ====================== */

.service-cta-box {
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(18, 62, 99, 0.03) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.service-cta-actions {
  justify-content: center;
}

/* ========================= */
/* PROVA REAL */
/* ========================= */

.service-proof {
  background: var(--fundo-suave);
}

.proof-box {
  margin-top: 50px;
  background: var(--branco);
  border-radius: var(--borda-radius);
  padding: 40px;
  box-shadow: var(--sombra);

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.proof-image img {
  width: 100%;
  border-radius: 12px;
}

.proof-content h3 {
  font-size: 22px;
  color: var(--azul-principal);
  margin-bottom: 15px;
}

.proof-content p {
  color: var(--texto-suave);
  margin-bottom: 15px;
  line-height: 1.6;
}

.proof-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.proof-content li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.proof-content li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--dourado);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.proof-note {
  font-size: 14px;
  opacity: 0.8;
}

/* ==================== */
/* RESPONSIVO */
/* ==================== */

@media (max-width: 1024px) {
  .service-benefits-grid,
  .service-audience-grid,
  .service-deliverables-grid,
  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-intro-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero,
  .service-intro,
  .service-benefits,
  .service-audience,
  .service-deliverables,
  .service-differential,
  .service-process,
  .service-cta {
    padding: 72px 0;
  }

  .service-benefits-grid,
  .service-audience-grid,
  .service-deliverables-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-actions,
  .service-cta-actions {
    flex-direction: column;
  }
  .proof-box {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}

/* ================================== */
/* FIM */
/* ================================== */
