/* =============================================
   FPA NEXUS - Landing Page Styles v2
   Fonts: Raleway (títulos), Montserrat (textos)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:        #FF6E03;
  --orange-dark:   #B83518;
  --btn-gradient:  linear-gradient(135deg, #FF6E03 0%, #B83518 100%);
  --navy:          #032145;
  --navy-dark:     #021630;
  --navy-card:     #0a2d50;
  --white:         #FFFFFF;
  --gray-bg:       #F5F6F8;
  --gray-text:     #6B7280;
  --gray-border:   #E5E7EB;
  --text-dark:     #1A2332;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ── Section label ── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
/* dark bg variant */
.section-label--white {
  color: rgba(255,255,255,0.6);
}
.section-label--white::before {
  background: rgba(255,255,255,0.6);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--btn-gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(255,110,3,0.30);
}
.btn-primary:hover {
  opacity: 0.90;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,110,3,0.40);
}

/* ══════════════════════════════════════════════
   NAVBAR — transparente no topo, azul ao scroll
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar.scrolled {
  background: rgba(3, 33, 69, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar__logo img {
  height: 46px;
  width: auto;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.navbar__menu a:hover { color: var(--orange); }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy-dark);
  padding: 20px 24px;
  flex-direction: column;
  z-index: 999;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════
   HERO / BANNER
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Overlay preservando tons de azul da imagem - apenas escurece levemente à esquerda */
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Overlay azul navy forte à esquerda, abrindo para a foto à direita */
  background: linear-gradient(
    90deg,
    #071829 0%,
    #071829 22%,
    rgba(7, 24, 41, 0.95) 32%,
    rgba(7, 24, 41, 0.75) 45%,
    rgba(7, 24, 41, 0.35) 62%,
    rgba(7, 24, 41, 0.10) 78%,
    rgba(7, 24, 41, 0.05) 100%
  );
}
.hero__overlay::after { display: none; }
.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 120px);
  padding-top: 70px;
  width: 100%;
}
/* Container do hero: alinha à esquerda usando o mesmo padding do navbar */
.hero__body .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hero__inner {
  padding-top: 0;
  padding-bottom: 40px;
  max-width: 580px;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

/* Hero title typography */
.hero__title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: 0px;
}
.hero__title .title-bold {
  font-weight: 800;
  color: var(--orange);
}
.hero__title .title-regular {
  font-weight: 400;
  color: var(--white);
}

.hero__subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
}
.hero__subtitle .highlight {
  font-weight: 700;
  color: var(--white);
}

/* Hero Stats Bar — fiel à imagem 2 */
.hero__stats {
  position: relative;
  z-index: 2;
  background: #0D1E35;
  border-top: none;
  border-bottom: 3px solid var(--orange);
}
.hero__stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
}
.hero__stat {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 5px;
}
/* Separador vertical fino */
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.hero__stat-value {
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.15;
}
/* Counter animation */
.counter-anim {
  display: inline-block;
}
/* Stat items com texto em vez de número */
.hero__stat-value--text {
  font-size: 20px;
  font-weight: 800;
}
.hero__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   SOBRE NÓS
══════════════════════════════════════════════ */
.sobre {
  padding: 100px 0;
  background: var(--white);
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sobre__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.sobre__body {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.85;
  margin-bottom: 14px;
}
.sobre__body strong {
  color: var(--text-dark);
  font-weight: 700;
}
.sobre__cta { margin-top: 32px; }
.sobre__image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.sobre__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
}

/* ══════════════════════════════════════════════
   SERVIÇOS  – fundo #F5F6F8, cards arredondados
══════════════════════════════════════════════ */
.servicos {
  padding: 100px 0;
  background: var(--gray-bg);
}
.servicos__header {
  text-align: left;
  margin-bottom: 52px;
}
.servicos__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card com border-radius 70px conforme PDF */
.servico-card {
  background: var(--white);
  border-radius: 70px;
  padding: 44px 36px 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.22s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  min-height: 220px;
}
.servico-card:hover {
  box-shadow: 0 12px 40px rgba(255,110,3,0.14);
  transform: translateY(-5px);
}

/* Linha decorativa laranja inferior */
.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--btn-gradient);
  border-radius: 0 0 70px 70px;
  opacity: 0;
  transition: opacity 0.25s;
}
.servico-card:hover::after { opacity: 1; }

/* Sem ícone no topo — apenas título e desc */
.servico-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}
.servico-card__desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.70;
  flex: 1;
}

/* Seta laranja inferior no card (sexta posição = last-child) */
.servico-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,110,3,0.10);
  border-radius: 50%;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}
.servico-card__arrow svg {
  width: 15px; height: 15px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.servico-card:hover .servico-card__arrow {
  background: var(--orange);
}
.servico-card:hover .servico-card__arrow svg {
  stroke: var(--white);
}

/* Todos os cards com seta igual — laranja apenas no hover (via regra geral acima) */

/* ══════════════════════════════════════════════
   DIFERENCIAIS – fundo #032145
══════════════════════════════════════════════ */
.diferenciais {
  padding: 100px 0;
  background: var(--navy);
}
.diferenciais__header {
  text-align: left;
  margin-bottom: 56px;
}
.diferenciais__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.diferencial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.diferencial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.diferencial-card__icon {
  width: 52px; height: 52px;
}
.diferencial-card__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.90;
}
.diferencial-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white);
}
.diferencial-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
}
.diferenciais__cta {
  display: flex;
  justify-content: flex-start;
}

/* ══════════════════════════════════════════════
   COMO FUNCIONA – fundo branco, ícones azul #032145
══════════════════════════════════════════════ */
.como-funciona {
  padding: 100px 0;
  background: var(--white);
}
.como-funciona__header {
  text-align: left;
  margin-bottom: 70px;
}
.como-funciona__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
}
.como-funciona__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}
/* Linha conectora — fica abaixo dos círculos com z-index */
.como-funciona__steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(8.33% + 38px);
  right: calc(8.33% + 38px);
  height: 2px;
  background: var(--gray-border);
  z-index: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.step__icon-wrap {
  width: 76px; height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid rgba(3,33,69,0.22);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white);
}
.step__icon-wrap img {
  width: 36px; height: 36px;
  object-fit: contain;
  /* ícones azul navy */
  filter: brightness(0) saturate(100%) invert(10%) sepia(60%) saturate(900%) hue-rotate(190deg) brightness(80%);
}
.step__number {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--btn-gradient);
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__label {
  font-size: 12px; font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  max-width: 100px;
}

/* ══════════════════════════════════════════════
   COTAÇÃO – fundo #032145
══════════════════════════════════════════════ */
.cotacao {
  padding: 100px 0;
  background: var(--navy);
}
.cotacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cotacao__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}
.cotacao__text {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.80;
  margin-bottom: 28px;
}
.cotacao__buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}

/* WhatsApp — laranja */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 16px rgba(255,110,3,0.30);
  border: none;
  outline: none;
  overflow: hidden;
}
.btn-whatsapp:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,110,3,0.40);
}
.btn-whatsapp img {
  width: 32px; height: 32px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  display: block;
}

/* Email — outline branco */
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn-email:hover {
  border-color: var(--orange);
  background: rgba(255,110,3,0.10);
  transform: translateY(-2px);
}

/* Form card */
.cotacao__form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.20);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: #4B5563;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--btn-gradient);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(255,110,3,0.30);
}
.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,110,3,0.40);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer__logo img {
  height: auto;
  width: 160px;
  max-width: 160px;
}
.footer__brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.80;
  margin-top: 18px;
  margin-bottom: 26px;
  max-width: 300px;
}
.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__social a {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background 0.2s;
  cursor: pointer;
  /* Área de toque mínima recomendada para mobile */
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.footer__social a:hover,
.footer__social a:active { background: var(--orange); }
.footer__social img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.footer__col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--orange); }
.footer__contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer__contact-item a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  justify-content: center;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  text-align: center;
}

/* ══════════════════════════════════════════════
   PÁGINA SERVIÇOS
══════════════════════════════════════════════ */
.servicos-hero {
  background: var(--navy);
  padding: 130px 0 80px;
  text-align: center;
}
.servicos-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.servicos-hero__title span { color: var(--orange); }
.servicos-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}
.servico-detalhe {
  padding: 90px 0;
  border-bottom: 1px solid var(--gray-border);
}
.servico-detalhe:nth-child(even) { background: var(--gray-bg); }
.servico-detalhe__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.servico-detalhe:nth-child(even) .servico-detalhe__inner { direction: rtl; }
.servico-detalhe:nth-child(even) .servico-detalhe__text,
.servico-detalhe:nth-child(even) .servico-detalhe__image { direction: ltr; }
.servico-detalhe__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.servico-detalhe__body {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 14px;
}
.servico-detalhe__cta { margin-top: 28px; }
.servico-detalhe__image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.servico-detalhe__image img {
  width: 100%; height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

/* ══════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicos__grid       { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid   { grid-template-columns: repeat(2, 1fr); }
  .footer__inner        { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .sobre__inner         { grid-template-columns: 1fr; gap: 40px; }
  .sobre__image img     { height: 320px; }
  .cotacao__inner       { grid-template-columns: 1fr; gap: 40px; }
  .servico-detalhe__inner { grid-template-columns: 1fr; gap: 36px; }
  .servico-detalhe:nth-child(even) .servico-detalhe__inner { direction: ltr; }
  .servico-detalhe__image img { height: 280px; }
}

@media (max-width: 768px) {
  .navbar__menu         { display: none; }
  .navbar__hamburger    { display: flex; }

  .hero__inner          { padding-top: 100px; padding-bottom: 40px; }

  .hero__stats-inner    { flex-direction: column; }
  .hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 16px 24px;
  }
  .hero__stat:last-child { border-bottom: none; }

  .servicos__grid       { grid-template-columns: 1fr; }
  .diferenciais__grid   { grid-template-columns: 1fr; }

  .como-funciona__steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .como-funciona__steps::before { display: none; }
  .step {
    flex-direction: row;
    text-align: left;
    max-width: 340px;
    width: 100%;
  }
  .step__icon-wrap  { flex-shrink: 0; }
  .step__label      { max-width: none; text-align: left; }

  .cotacao__buttons { flex-direction: column; }
  .btn-whatsapp, .btn-email { justify-content: center; }

  .footer__inner        { grid-template-columns: 1fr; gap: 28px; }
  .footer__logo img     { width: 140px; }
  .footer__brand-desc   { max-width: 100%; font-size: 12px; margin-bottom: 20px; }
  .footer__social       { gap: 10px; }
  .footer__social a     { width: 48px; height: 48px; }
  .footer__col-title    { font-size: 13px; margin-bottom: 14px; }
  .footer__col ul       { gap: 8px; }
  .footer__col ul a     { font-size: 13px; }
  .footer__contact-item { font-size: 13px; }
  .footer__bottom p     { font-size: 11px; }
  .cotacao__form-card   { padding: 28px 20px; }
  .servicos-hero        { padding: 110px 0 60px; }
}

@media (max-width: 480px) {
  .hero__title          { font-size: 30px; }
  .servico-card         { border-radius: 40px; padding: 36px 28px 44px; }
}
