/* ==========================================================================
   COUTO ASSESSORIA — style.css
   Tokens + base + componentes (BEM) — valores extraídos do Figma
   Design de referência: 1356px de largura
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Cores */
  --color-primary:        #009688;
  --color-primary-deep:   #00765d;
  --color-primary-dark:   #01685f;
  --color-green-night:    #11463b;
  --color-bg:             #f4f4f4;
  --color-bg-strip:       #ebebeb;
  --color-white:          #ffffff;
  --color-text:           #454545;
  --color-text-strong:    #525252;
  --color-text-muted:     #828282;
  --color-text-soft:      #e5e5e5;
  --color-text-slate:     #65758b;
  --color-border-strip:   #c2c2c2;
  --color-border-form:    #cdcdcd;
  --color-border-input:   #d5d5d5;
  --color-form-bg:        #f2f6f8;
  --color-footer-line:    #e8e8e8;

  /* Tipografia */
  --font-title:   'Be Vietnam Pro', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-inter:   'Inter', sans-serif;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  /* Gradientes */
  --grad-btn:        linear-gradient(170deg, #00765d 0%, #009688 100%);
  --grad-btn-form:   linear-gradient(172deg, #00765d 0%, #009688 100%);
  --grad-section:    linear-gradient(110deg, #009688 0%, #01685f 100%);
  --grad-solucoes:   linear-gradient(101deg, #009688 0%, #01685f 100%);
  --grad-card-glass: linear-gradient(131deg, rgba(255, 255, 255, 0.15) 0%, rgba(153, 153, 153, 0.15) 100%);
  --grad-bloco:      linear-gradient(106deg, rgba(0, 150, 136, 0.15) 3.58%, rgba(0, 48, 44, 0.15) 103.16%);

  /* Raios */
  --radius-sm: 12px;
  --radius-md: 15px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Sombras */
  --shadow-card:   10px 10px 10px rgba(0, 0, 0, 0.25);
  --shadow-stats:  0 4px 10px rgba(0, 0, 0, 0.5);
  --shadow-bloco:  6px 4px 10px rgba(0, 0, 0, 0.25);
  --shadow-caixa:  4px 4px 50px 1px rgba(0, 0, 0, 0.25);

  /* Layout */
  --container-max: 1216px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
}

/* Compensa o header fixo na navegação por âncoras */
[id] {
  scroll-margin-top: var(--header-height);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Corta o texto na altura de caixa (cap height), como o Figma */
.u-trim,
.especialista__bloco p,
.bloco-beneficio__num,
.bloco-beneficio__title,
.bloco-beneficio__desc,
.contato__title,
.contato__subtitle,
.contato__valor {
  text-box: trim-both cap alphabetic;
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

.btn--primary {
  background-image: var(--grad-btn);
}

.btn--ghost {
  padding: 0 33px;
  border: 1px solid var(--color-white);
  background-image: linear-gradient(169deg, rgba(0, 118, 93, 0.01) 0%, rgba(0, 150, 136, 0.01) 100%);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.btn--emboss {
  padding: 0 30px;
  background-image: linear-gradient(102deg, #00765d 0%, #009688 100%);
  box-shadow:
    -4px -4px 20px rgba(255, 255, 255, 0.35),
    5px 5px 20px rgba(0, 0, 0, 0.25),
    2px 4px 5px rgba(0, 0, 0, 0.35),
    inset 10px 10px 20px rgba(0, 0, 0, 0.15);
}

.btn__icon {
  width: 16px;
  height: 16px;
}

.btn__icon--arrow {
  width: 16px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(17, 70, 59, 0.01);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.35s ease;
}

.header--scrolled {
  background-color: rgba(17, 70, 59, 0.9);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.header__logo-crop {
  display: block;
  position: relative;
  width: 140px;
  height: 54px;
  overflow: hidden;
}

.header__logo-crop img {
  position: absolute;
  left: 0;
  top: -64.86%;
  width: 100%;
  height: 229.73%;
  max-width: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  white-space: nowrap;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 619px;
  overflow: hidden;
  background-color: var(--color-green-night);
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 745px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  top: -20.38%;
  left: 0;
  width: 101.91%;
  height: 104.34%;
  max-width: none;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 619px;
}

.hero__overlay--solid {
  background-image: linear-gradient(90deg, #11463b 21.605%, rgba(17, 70, 59, 0) 100%);
}

.hero__overlay--soft {
  background-image: linear-gradient(90deg, rgba(17, 70, 59, 0.5) 21.605%, rgba(17, 70, 59, 0) 100%);
}

.hero__overlay--multiply {
  background-color: rgba(17, 70, 59, 0.3);
  mix-blend-mode: multiply;
}

.hero__content {
  position: absolute;
  top: 174px;
  left: max(70px, calc((100% - 1356px) / 2 + 70px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 700px;
  max-width: calc(100% - 140px);
}

.hero__text {
  padding-bottom: 20px;
}

.hero__title {
  font-family: var(--font-title);
  font-weight: var(--fw-light);
  font-size: 42px;
  line-height: 48px;
  color: var(--color-white);
}

.hero__title strong {
  font-weight: var(--fw-bold);
}

.hero__subtitle {
  padding-top: 20px;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* --------------------------------------------------------------------------
   Indicadores (stats)
   -------------------------------------------------------------------------- */
/* O card flutua perfeitamente centralizado entre a Hero e a seção
   seguinte: metade da altura (112.4px / 2 = 56px) sobre cada uma */
.stats {
  position: relative;
  z-index: 5;
  margin-top: -56px;
  margin-bottom: -56px;
}

.stats__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  filter: drop-shadow(0 4.053px 10.133px rgba(0, 0, 0, 0.5));
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 304px;
  height: 112.385px;
  background-color: var(--color-white);
}

.stats__item--first {
  border-radius: 15.2px 0 0 15.2px;
}

.stats__item--last {
  border-radius: 0 15.2px 15.2px 0;
}

.stats__number {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 36.48px;
  line-height: 43.776px;
  color: var(--color-primary);
  text-align: center;
}

.stats__label {
  font-size: 16.213px;
  line-height: 23.023px;
  color: var(--color-text-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Seções claras + cabeçalho de seção
   -------------------------------------------------------------------------- */
.section-light {
  background-color: var(--color-bg);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.section-head__title {
  font-family: var(--font-title);
  font-weight: var(--fw-regular);
  font-size: 42px;
  line-height: 48px;
  color: var(--color-text-strong);
  text-align: center;
  width: 100%;
}

.section-head__title strong {
  font-weight: var(--fw-bold);
}

.section-head__accent {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.section-head__text {
  width: 682px;
  max-width: 100%;
  padding-top: 20px;
  font-size: 18px;
  line-height: 28.675px;
  color: var(--color-text-muted);
  text-align: center;
}

.section-head--ondark .section-head__title,
.section-head--ondark .section-head__accent,
.section-head--ondark .section-head__text {
  color: var(--color-white);
}

.section-head__text--inter {
  width: 770px;
  font-family: var(--font-inter);
  line-height: 28px;
}

/* --------------------------------------------------------------------------
   A dor que custa caro / Método (cards compartilhados)
   -------------------------------------------------------------------------- */
/* Topo maior: 56px ficam sob o card de métricas + 75px visíveis */
.dor {
  padding: 131px 0 100px;
}

.dor__cards,
.metodo__cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  margin-top: 20px;
}

.metodo {
  padding: 75px 0 100px;
}

/* No Figma o título do Método quebra em duas linhas (largura 468px) */
.metodo .section-head__title {
  max-width: 468px;
}

.metodo__cards {
  margin-top: 20px;
}

.card-dor {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 318px;
  padding: 20px;
  background-color: var(--color-white);
  border-top: 10px solid var(--color-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.card-dor--metodo {
  min-height: 289px;
}

.card-dor__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  background-color: rgba(0, 150, 136, 0.15);
}

.card-dor__badge img {
  width: 41.053px;
  height: 41.053px;
}

.card-dor__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 0.728px solid var(--color-primary);
  border-radius: 72.75px;
  background-color: rgba(0, 150, 136, 0.15);
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 30.555px;
  line-height: 34.92px;
  color: var(--color-primary);
}

.card-dor__texto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.card-dor__title {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 24px;
  line-height: 34px;
  color: var(--color-text);
  text-box: trim-both cap alphabetic;
}

.card-dor__desc {
  font-size: 16px;
  line-height: 25px;
  color: var(--color-text-muted);
}

.card-dor__desc--lg {
  font-size: 18px;
}

.card-dor__desc--tight {
  line-height: 17.634px;
}

.card-dor__desc--poppins {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 28.675px;
}

.card-dor__desc--roboto28 {
  line-height: 28px;
}

/* Uniformidade: dentro de cada seção, todos os cards usam a mesma
   tipografia de descrição (vence os modificadores por especificidade) */
.dor .card-dor__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 25px;
}

.metodo .card-dor__desc {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 28.675px;
}

/* --------------------------------------------------------------------------
   Quem Somos (sobre)
   -------------------------------------------------------------------------- */
.sobre {
  position: relative;
  padding: 75px 0 100px;
  background-image: var(--grad-section);
  overflow: hidden;
}

.sobre__glow {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.sobre__glow--top {
  top: -170px;
  left: calc(50% + 385px);
  background-color: rgba(0, 150, 136, 0.5);
}

.sobre__glow--bottom {
  top: 246px;
  left: calc(50% - 678px);
  background-color: var(--color-primary);
}

.sobre__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 779px;
  max-width: 100%;
  margin: 0 auto;
}

.sobre__title {
  font-family: var(--font-title);
  font-weight: var(--fw-regular);
  font-size: 42px;
  line-height: 48px;
  color: var(--color-white);
  text-align: center;
  width: 836px;
  max-width: 100vw;
}

.sobre__title strong {
  font-weight: var(--fw-bold);
}

.sobre__dot {
  font-weight: var(--fw-bold);
  color: var(--color-text-soft);
}

.sobre__paragraphs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sobre__paragraphs p {
  width: 770px;
  max-width: 100%;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-white);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Quem é Luiz Couto (especialista)
   -------------------------------------------------------------------------- */
.especialista {
  padding: 75px 0 100px;
}

.especialista__container {
  display: flex;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.especialista__media {
  position: relative;
  width: 440px;
  flex-shrink: 0;
}

.especialista__photo {
  width: 440px;
  height: 529px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.especialista__photo img {
  position: absolute;
  top: -13.27%;
  left: 0;
  width: 100%;
  height: 119.78%;
  max-width: none;
  object-fit: cover;
}

.especialista__bloco {
  position: absolute;
  left: 314px;
  top: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6.531px;
  width: 212.255px;
  padding: 12.245px 16.327px 16.327px;
  background-color: var(--color-primary);
  border-radius: 12.245px;
  box-shadow: 3.265px 3.265px 3.265px rgba(0, 0, 0, 0.25);
}

.especialista__bloco p {
  line-height: 23.409px;
}

.especialista__bloco-kicker,
.especialista__bloco-cargo {
  font-size: 11.429px;
  color: var(--color-green-night);
}

.especialista__bloco-nome {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 16.327px;
  color: var(--color-white);
  white-space: nowrap;
}

.especialista__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
  width: 700px;
  padding-bottom: 20px;
}

.especialista__title {
  font-family: var(--font-title);
  font-weight: var(--fw-regular);
  font-size: 42px;
  line-height: 48px;
  color: var(--color-text);
  text-align: right;
  width: 100%;
}

.especialista__title strong {
  font-weight: var(--fw-bold);
}

.especialista__paragraphs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.especialista__paragraphs p {
  width: 682px;
  max-width: 100%;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-muted);
  text-align: right;
}

/* --------------------------------------------------------------------------
   Parceiros
   -------------------------------------------------------------------------- */
.parceiros {
  padding: 49px 0;
  background-color: var(--color-bg-strip);
  border-top: 1px solid var(--color-border-strip);
  border-bottom: 1px solid var(--color-border-strip);
}

.parceiros__label {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-slate);
  text-align: center;
}

.parceiros__viewport {
  position: relative;
  max-width: var(--container-max);
  height: 56px;
  margin: 32px auto 0;
  overflow: hidden;
}

.parceiros__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  will-change: transform;
}

/* Cada item define --lw (largura útil do logo); as fontes são quadradas
   com margens brancas — o object-fit: cover recorta apenas o excesso
   vertical, preservando a proporção do logo */
.parceiros__item {
  flex-shrink: 0;
  width: calc(var(--lw, 100px) + 48px);
  height: 56px;
  padding: 12px 24px;
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.parceiros__item img {
  width: 100%;
  height: 32px;
  object-fit: cover;
}

.parceiros__fade {
  position: absolute;
  top: 0;
  width: 129px;
  height: 56px;
  pointer-events: none;
  z-index: 2;
}

.parceiros__fade--left {
  left: 0;
  background-image: linear-gradient(90deg, #ebebeb 0%, rgba(235, 235, 235, 0) 100%);
}

.parceiros__fade--right {
  right: 0;
  background-image: linear-gradient(270deg, #ebebeb 0%, rgba(235, 235, 235, 0) 100%);
}

/* --------------------------------------------------------------------------
   Soluções
   -------------------------------------------------------------------------- */
.solucoes {
  position: relative;
  padding: 75px 0 100px;
  background-image: var(--grad-solucoes);
  overflow: hidden;
}

.solucoes__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.solucoes__glow--top {
  top: -270px;
  left: calc(50% + 354px);
  width: 507px;
  height: 540px;
  background-color: rgba(0, 150, 136, 0.5);
}

.solucoes__glow--bottom {
  top: 630px;
  left: calc(50% - 774px);
  width: 384px;
  height: 384px;
  background-color: rgba(7, 205, 186, 0.25);
}

.solucoes__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 286px);
  column-gap: 100px;
  row-gap: 40px;
  justify-content: center;
  margin-top: 20px;
}

.card-solucao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 257px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background-image: var(--grad-card-glass);
}

.card-solucao__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.2);
}

.card-solucao__icon img {
  width: 24px;
  height: 24px;
}

.card-solucao__title {
  padding-top: 16px;
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: var(--color-white);
}

.card-solucao__desc {
  width: 236px;
  padding-top: 8px;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.card-solucao__desc--full {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Estrutura Especializada (benefícios)
   -------------------------------------------------------------------------- */
.beneficios {
  padding: 75px 0 100px;
}

.beneficios__container {
  display: flex;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.beneficios__content {
  width: 700px;
  padding-bottom: 20px;
}

.beneficios__title {
  width: 530px;
  max-width: 100%;
  font-family: var(--font-title);
  font-weight: var(--fw-regular);
  font-size: 42px;
  line-height: 48px;
  color: var(--color-text-strong);
}

.beneficios__title strong {
  font-weight: var(--fw-bold);
}

.beneficios__text {
  width: 562px;
  max-width: 100%;
  padding-top: 20px;
  font-size: 18px;
  line-height: 28px;
  color: rgba(82, 82, 82, 0.8);
}

.beneficios__brand {
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
}

.beneficios__blocos {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 525px;
  flex-shrink: 0;
}

/* Modo sequência por scroll (aplicado via JS no desktop):
   os blocos ocupam a mesma célula e o GSAP alterna a visibilidade */
.beneficios__blocos--stack {
  display: grid;
}

.beneficios__blocos--stack .bloco-beneficio {
  grid-area: 1 / 1;
}

.beneficios__container:has(.beneficios__blocos--stack) {
  align-items: center;
}

/* Indicador "Arraste para baixo" (criado via JS no modo sequência) */
.beneficios__hint {
  grid-row: 2;
  grid-column: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.beneficios__hint-text {
  font-family: var(--font-title);
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-muted);
}

.beneficios__hint-arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  border-radius: 1px;
  transform: rotate(45deg);
}

.bloco-beneficio {
  position: relative;
  display: flex;
  width: 433px;
  min-height: 139px;
  padding: 25px 26px;
  border: 1px solid rgba(0, 150, 136, 0.1);
  border-radius: var(--radius-md);
  background-image: var(--grad-bloco);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  box-shadow: var(--shadow-bloco);
  overflow: hidden;
}

/* Deslocamentos em zigue-zague conforme o Figma */
.bloco-beneficio--1 { margin-left: 29px; }
.bloco-beneficio--2 { margin-left: 92px; }
.bloco-beneficio--3 { margin-left: 0; }
.bloco-beneficio--4 { margin-left: 29px; }
.bloco-beneficio--5 { margin-left: 92px; }
.bloco-beneficio--6 { margin-left: 0; }

.bloco-beneficio__num {
  width: 53px;
  flex-shrink: 0;
  font-family: var(--font-title);
  font-weight: var(--fw-semibold);
  font-size: 32px;
  line-height: 28.675px;
  color: var(--color-primary);
}

.bloco-beneficio__body {
  width: 332px;
}

.bloco-beneficio__title {
  font-family: var(--font-title);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  line-height: 28.675px;
  color: var(--color-primary);
  white-space: nowrap;
}

.bloco-beneficio__desc {
  margin-top: 13px;
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 150, 136, 0.8);
}

/* --------------------------------------------------------------------------
   Contato
   -------------------------------------------------------------------------- */
.contato {
  padding: 75px 0 100px;
}

.contato__caixa {
  display: flex;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 60px 64px 63px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-caixa);
}

.contato__info {
  width: 537px;
}

.contato__textos {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contato__title {
  font-family: var(--font-title);
  font-weight: var(--fw-semibold);
  font-size: 42px;
  line-height: 41px;
  color: var(--color-text);
  opacity: 0.95;
}

.contato__subtitle {
  width: 448px;
  max-width: 100%;
  font-size: 18px;
  line-height: 29px;
  color: var(--color-text-muted);
}

.contato__lista {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 55px;
}

.contato__link {
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
}

.contato__icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  background-color: rgba(0, 150, 136, 0.35);
}

.contato__icone img {
  width: 32px;
  height: 32px;
}

.contato__valor {
  font-weight: var(--fw-semibold);
  font-size: 18px;
  line-height: 28.675px;
  color: #000000;
}

/* Formulário — compacto, termina na altura do bloco de informações */
.form {
  width: 480px;
  flex-shrink: 0;
  align-self: flex-start;
  padding: 24px;
  background-color: var(--color-form-bg);
  border: 1px solid var(--color-border-form);
  border-radius: var(--radius-md);
}

.form__row {
  display: flex;
  gap: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group--half {
  flex: 1;
  min-width: 0;
}

.form__input {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-input);
  border-radius: var(--radius-md);
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 28.675px;
  color: var(--color-text);
  outline: none;
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__input:focus {
  border-color: var(--color-primary);
}

.form__input--textarea {
  height: 150px;
  padding-top: 11px;
  resize: none;
}

.form__input--invalid {
  border-color: #d64545;
}

.form__feedback {
  display: none;
  margin-bottom: 12px;
  font-family: var(--font-poppins);
  font-size: 14px;
}

.form__feedback--error {
  display: block;
  color: #d64545;
}

.form__feedback--success {
  display: block;
  color: var(--color-primary);
}

.form__submit {
  width: 100%;
  height: 56px;
  margin-top: 12px;
  background-image: var(--grad-btn-form);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-green-night);
  padding: 38px 0 34px;
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 495px 328px 1fr;
  min-height: 171px;
}

.footer__logo {
  width: 160.097px;
  height: 64.98px;
  object-fit: fill;
  object-position: bottom;
}

.footer__desc {
  width: 370px;
  max-width: 100%;
  margin-top: 19px;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-text-soft);
}

.footer__col {
  padding-top: 26px;
}

.footer__heading {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 18.835px;
  line-height: 18.835px;
  color: var(--color-white);
}

.footer__link,
.footer__row {
  display: block;
  margin-bottom: 5.65px;
  font-size: 14px;
  line-height: 18.835px;
  color: var(--color-text-soft);
}

.footer__row .footer__link {
  display: inline;
}

.footer__link--underline {
  text-decoration: underline;
  text-underline-position: from-font;
}

.footer__line {
  margin-top: 34px;
  border: 0;
  border-top: 0.942px solid var(--color-footer-line);
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 22px;
}

.footer__copy,
.footer__tags {
  font-size: 14px;
  line-height: 18.835px;
  color: var(--color-text-soft);
}
