/* ============================================
   SERVICE PAGE CSS — LP de Serviço
   ============================================ */

/* ---- BACK NAV ---- */
.back-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 20px;
  background: linear-gradient(to bottom, rgba(26,13,5,0.95) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-nav__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-warm);
}

.back-nav__logo span { color: var(--copper-light); }

.back-nav__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(253,248,242,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.back-nav__btn:hover { color: var(--copper-light); }
.back-nav__btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- SERVICE HERO ---- */
.service-hero {
  position: relative;
  min-height: 100svh;
  background: var(--chocolate-deep);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(61,32,16,0.9) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(196,139,90,0.08) 0%, transparent 70%);
}

.service-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.35;
}

.service-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 60px;
}

.service-hero__label {
  margin-bottom: 12px;
}

.service-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 10vw, 4rem);
  font-weight: 900;
  color: var(--white-warm);
  line-height: 0.95;
  margin-bottom: 20px;
}

.service-hero__title em {
  font-style: italic;
  color: var(--champagne);
  display: block;
}

.service-hero__subtitle {
  font-size: 1rem;
  color: rgba(253,248,242,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 380px;
}

.service-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- BENEFITS ---- */
.benefits {
  background: var(--cream-light);
  padding: 80px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}

.benefit-card {
  background: var(--white-warm);
  border: 1px solid rgba(196,139,90,0.15);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.benefit-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--chocolate);
  padding: 80px 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white-warm);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-copper);
  position: relative;
  z-index: 1;
}

.step__content {
  padding-top: 8px;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 6px;
}

.step__desc {
  font-size: 0.83rem;
  color: rgba(253,248,242,0.65);
  line-height: 1.65;
}

/* ---- FOR WHO ---- */
.for-who {
  background: var(--cream);
  padding: 80px 0;
}

.for-who__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.for-who__item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white-warm);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border-left: 3px solid var(--copper);
  transition: var(--transition);
}

.for-who__item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}

.for-who__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.for-who__check svg {
  width: 13px;
  height: 13px;
  fill: var(--white-warm);
}

.for-who__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.5;
}

/* ---- CTA SECTION ---- */
.service-cta {
  background: var(--chocolate-deep);
  padding: 80px 0;
  text-align: center;
}

.service-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-cta__title em {
  font-style: italic;
  color: var(--champagne);
}

.service-cta__sub {
  font-size: 0.88rem;
  color: rgba(253,248,242,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.service-cta__actions .btn {
  width: 100%;
  max-width: 320px;
  padding: 16px 28px;
  font-size: 0.85rem;
}

/* ---- SERVICE FOOTER NAV ---- */
.service-footer-nav {
  background: var(--chocolate);
  padding: 32px 0;
  border-top: 1px solid rgba(196,139,90,0.1);
}

.service-footer-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-footer-nav__logo {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--champagne);
}
.service-footer-nav__logo span { color: inherit; }

.service-footer-nav__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-footer-nav__link {
  font-size: 0.75rem;
  color: rgba(253,248,242,0.4);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.service-footer-nav__link:hover { color: var(--copper-light); }

.service-footer-nav__copy {
  font-size: 0.68rem;
  color: rgba(253,248,242,0.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 360px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 400px) {
  .service-hero__actions {
    flex-direction: row;
  }
  .service-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
  .service-cta__actions .btn {
    width: auto;
    max-width: none;
    flex: 1;
    max-width: 260px;
  }
}
