/* ============================================================
   SERVICE INTRO
   ============================================================ */

.service-intro {
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  padding: 90px 0 100px;
}

/* ----- Flocos ----- */

.service-intro__snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.si-flake {
  position: absolute;
  top: -10%;
  opacity: 0.18;
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}

.si-flake--1 { left: 4%;  width: 70px;  animation-duration: 22s; animation-delay: -3s;  }
.si-flake--2 { left: 16%; width: 100px; animation-duration: 28s; animation-delay: -14s; }
.si-flake--3 { left: 30%; width: 55px;  animation-duration: 18s; animation-delay: -8s;  }
.si-flake--4 { left: 66%; width: 90px;  animation-duration: 25s; animation-delay: -2s;  }
.si-flake--5 { left: 80%; width: 60px;  animation-duration: 20s; animation-delay: -11s; }
.si-flake--6 { left: 90%; width: 110px; animation-duration: 30s; animation-delay: -19s; }

@keyframes snow-fall {
  0%   { transform: translate(0, -10%) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.18; }
  90%  { opacity: 0.18; }
  100% { transform: translate(24px, 110vh) rotate(20deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .si-flake { animation: none; opacity: 0.12; top: 10%; }
}

/* ----- Grid principal ----- */

.service-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ----- Texto ----- */

.service-intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.service-intro__eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.service-intro__eyebrow-icon img {
  width: 100%;
  height: 100%;
}

.service-intro__title {
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 20px;
}

.service-intro__title-highlight {
  color: var(--color-primary);
}

.service-intro__desc {
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-intro__desc:last-of-type {
  margin-bottom: 28px;
}

.service-intro__actions {
  display: flex;
}

/* ----- Imagem + moldura + badge ----- */

.service-intro__media {
  position: relative;
  padding: 14px 0 44px 22px;
}

.si-frame-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.si-photo {
  width: 100%;
  height: auto;
  display: block;
}

.si-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
}

.si-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
}

.si-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(49, 130, 206, 0.08);
  flex-shrink: 0;
}

.si-badge__icon img {
  width: 20px;
  height: 20px;
}

.si-badge__text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.4;
}

.si-badge__text span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================================================
   SERVICE AREAS / �REAS DE ATUA��O
   ============================================================ */

.service-areas {
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
  padding: 100px 0;
}

/* ----- Flocos ----- */

.service-areas__snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sa-flake {
  position: absolute;
  top: -10%;
  opacity: 0.18;
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}

.sa-flake--1 { left: 4%;  width: 70px;  animation-duration: 22s; animation-delay: -3s;  }
.sa-flake--2 { left: 16%; width: 100px; animation-duration: 28s; animation-delay: -14s; }
.sa-flake--3 { left: 30%; width: 55px;  animation-duration: 18s; animation-delay: -8s;  }
.sa-flake--4 { left: 66%; width: 90px;  animation-duration: 25s; animation-delay: -2s;  }
.sa-flake--5 { left: 80%; width: 60px;  animation-duration: 20s; animation-delay: -11s; }
.sa-flake--6 { left: 90%; width: 110px; animation-duration: 30s; animation-delay: -19s; }

@media (prefers-reduced-motion: reduce) {
  .sa-flake { animation: none; opacity: 0.12; top: 10%; }
}

/* ----- Cabe�alho centralizado ----- */

.service-areas__header {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-areas__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-areas__eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.service-areas__eyebrow-icon img {
  width: 100%;
  height: 100%;
}

.service-areas__title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-title);
  margin-bottom: 16px;
}

.service-areas__title-highlight {
  color: var(--color-primary);
}

.service-areas__desc {
  color: var(--text-body);
  line-height: 1.6;
}

/* ----- Grid de �reas ----- */

.service-areas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: transform 0.25s var(--animate-easing), box-shadow 0.25s var(--animate-easing);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.area-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(49, 130, 206, 0.08);
}

.area-card__icon img {
  width: 24px;
  height: 24px;
}

.area-card__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.35;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 900px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-intro__content {
    order: 1;
  }

  .service-intro__media {
    order: 2;
    padding-left: 0;
    max-width: 460px;
    margin: 0 auto;
  }

  .service-intro__title {
    font-size: 2rem;
  }

  .service-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-areas__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .service-intro {
    padding: 70px 0 80px;
  }

  .service-intro__title {
    font-size: 1.7rem;
  }

  .si-badge {
    padding: 12px 14px;
  }

  .si-badge__text {
    font-size: 0.82rem;
  }

  .service-areas {
    padding: 70px 0;
  }
}

/* ============================================================
   SERVICE QUOTE — frase de abertura centralizada
   ============================================================ */

.service-quote {
  position: relative;
  background: var(--bg-white);
  padding: 72px 0 0;
}

.service-quote__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.service-quote__mark {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 4px;
}

.service-quote__text {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-title);
}

.service-quote__highlight {
  color: var(--color-primary);
}

.service-quote__line {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-primary);
  margin: 28px auto 0;
}

@media (max-width: 640px) {
  .service-quote {
    padding: 56px 0 0;
  }

  .service-quote__mark {
    font-size: 3rem;
  }

  .service-quote__text {
    font-size: 1.15rem;
  }
}

/* ============================================================
   ADIÇÃO AO .service-intro JÁ EXISTENTE
   (kicker "para a" entre o título e o destaque)
   ============================================================ */

.service-intro__title-sub {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 8px 0 4px;
}