/* ============================================================
   ALINE FEITOSA PSICOLOGIA — style.css
   Digital Bloom | Versão 1.0
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #FAF8F5;
  color: #2C2C2C;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- VARIÁVEIS ---------- */
:root {
  --brown:      #b56f4c;
  --brown-light:#d4a082;
  --sage:       #8a9a79;
  --sage-light: #adb9a0;
  --sage-accent:#a3b094;
  --cream:      #EDE8E0;
  --off-white:  #FAF8F5;
  --warm-gray:  #F0EDE8;
  --text:       #2C2C2C;
  --text-mid:   #5C5248;
  --text-light: #8C8480;
  --white:      #FFFFFF;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.3s ease;
  --max-width: 1120px;
}

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-mid); }

.label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-accent);
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 96px;
}

.section--alt {
  background: var(--warm-gray);
}

.section--dark {
  background: var(--brown);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--dark p { color: rgba(255,255,255,0.78); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--sage-accent);
  border-image: linear-gradient(to right, transparent, var(--sage-accent), transparent) 1;
}

.section__header .label {
  display: block;
  margin-bottom: 12px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  font-size: 1.05rem;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 48px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
}

.btn--primary:hover {
  background: #9a5d3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,111,76,0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}

.btn--secondary:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sage {
  background: var(--sage);
  color: var(--white);
}

.btn--sage:hover {
  background: #728261;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138,154,121,0.3);
}

.btn--white {
  background: var(--white);
  color: var(--brown);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all var(--transition);
  padding-block: 20px;
}

.header.scrolled {
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  padding-block: 14px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__logo-mark svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.header__logo-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brown);
  transition: width var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--brown);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburguer */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.open span:nth-child(2) { opacity: 0; }
.header__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer — fica fora do header no HTML para não sofrer
   com o containing block criado pelo backdrop-filter do header */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: var(--off-white);
  padding: 80px 24px 40px;
  overflow-y: auto;
  z-index: 150;
}

.header__mobile-nav.open {
  display: flex;
}


.header__mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream);
  transition: color var(--transition);
}

.header__mobile-nav a:last-child { border-bottom: none; }

.header__mobile-nav a:hover { color: var(--brown); }

.header__mobile-nav .btn {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,160,130,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(138,154,121,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-block: 64px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(163,176,148,0.15);
  border: 1px solid rgba(163,176,148,0.4);
  border-radius: 48px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-accent);
  margin-bottom: 24px;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--cream);
}

.hero__trust-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.hero__trust-text strong {
  display: block;
  color: var(--text-mid);
  font-weight: 600;
}

.hero__trust-icons {
  display: flex;
  gap: -4px;
}

.hero__trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown-light);
  border: 2px solid var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

/* Hero image */
.hero__image {
  position: relative;
  z-index: 1;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.hero__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.hero__badge-icon svg { width: 20px; height: 20px; }

.hero__badge-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.hero__badge-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero__badge-2 {
  top: -16px;
  right: -16px;
  bottom: auto;
  left: auto;
  min-width: 160px;
}

.hero__badge-2 .hero__badge-icon {
  background: var(--brown);
}

.hero__deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.hero__deco--1 {
  width: 320px;
  height: 320px;
  background: var(--brown);
  top: -80px;
  right: -80px;
}

.hero__deco--2 {
  width: 180px;
  height: 180px;
  background: var(--sage);
  bottom: 40px;
  left: -60px;
}

/* ---------- CREDENCIAIS RIBBON ---------- */
.cred-ribbon {
  background: var(--cream);
  padding-block: 28px;
  overflow: hidden;
}

.cred-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.cred-ribbon__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 28px;
  border-right: 1px solid rgba(181,111,76,0.2);
}

.cred-ribbon__item:last-child { border-right: none; }

.cred-ribbon__item svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
}

.cred-ribbon__item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}

/* ---------- SOBRE ---------- */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
  gap: 80px;
}

.sobre__image-col {
  position: relative;
}

.sobre__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.sobre__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sobre__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.8rem;
}

.sobre__image-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  opacity: 0.35;
  z-index: -1;
}

.sobre__image-deco-2 {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 70px;
  height: 70px;
  background: var(--brown-light);
  border-radius: var(--radius-sm);
  opacity: 0.3;
  z-index: -1;
}

.sobre__content .label {
  display: block;
  margin-bottom: 12px;
}

.sobre__content h2 {
  margin-bottom: 24px;
}

.sobre__content h2 em {
  font-style: italic;
  color: var(--brown);
}

.sobre__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.sobre__quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(163,176,148,0.08);
  border-left: 3px solid var(--sage-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.sobre__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.sobre__cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--warm-gray);
  border-radius: var(--radius-sm);
}

.sobre__cred-icon {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
}

.sobre__cred-icon svg { width: 16px; height: 16px; }

.sobre__cred-text {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-mid);
}

/* ---------- SERVIÇOS ---------- */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,168,130,0.15);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--sage-accent), var(--brown-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card--highlight {
  background: var(--brown);
  color: var(--white);
  border-color: transparent;
}

.servico-card--highlight::before {
  background: rgba(255,255,255,0.3);
}

.servico-card--highlight h3,
.servico-card--highlight h4 { color: var(--white); }

.servico-card--highlight p { color: rgba(255,255,255,0.78); }

.servico-card--highlight .servico-card__icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.servico-card--highlight .servico-card__tag {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.servico-card--highlight .btn {
  background: var(--white);
  color: var(--brown);
}

.servico-card--highlight .btn:hover {
  background: var(--cream);
}

.servico-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brown);
  flex-shrink: 0;
}

.servico-card__icon svg { width: 26px; height: 26px; }

.servico-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.servico-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.servico-card__list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servico-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.servico-card--highlight .servico-card__list li {
  color: rgba(255,255,255,0.8);
}

.servico-card__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.servico-card--highlight .servico-card__list li::before {
  background: var(--brown-light);
}

.servico-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.servico-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--warm-gray);
  color: var(--text-mid);
  border-radius: 48px;
}

/* ---------- SUPERVISÃO DESTAQUE ---------- */
.supervisao {
  background: var(--warm-gray);
}

.supervisao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.supervisao__content .label { margin-bottom: 12px; }

.supervisao__content h2 {
  margin-bottom: 20px;
}

.supervisao__content h2 em {
  font-style: italic;
  color: var(--brown);
}

.supervisao__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.supervisao__pains {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.supervisao__pain {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.supervisao__pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(138,154,121,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}

.supervisao__pain-icon svg { width: 18px; height: 18px; }

.supervisao__pain-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.supervisao__pain-text strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.supervisao__visual {
  position: relative;
}

.supervisao__card-stack {
  position: relative;
}

.supervisao__main-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.supervisao__main-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.supervisao__main-card .label {
  margin-bottom: 20px;
}

.supervisao__modalities {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.supervisao__modality {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--warm-gray);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.supervisao__modality:hover {
  background: var(--cream);
}

.supervisao__modality-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
}

.supervisao__modality-icon svg { width: 20px; height: 20px; }

.supervisao__modality-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.supervisao__modality-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.supervisao__deco-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  background: var(--brown);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.supervisao__deco-card p {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ---------- FORMULAÇÃO DE CASO ---------- */
.formulacao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.formulacao__visual {
  order: -1;
}

.formulacao__main-visual {
  background: var(--brown);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.formulacao__main-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.formulacao__main-visual h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
}

.formulacao__main-visual p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
}

.formulacao__product-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

.formulacao__product-badge svg {
  width: 18px;
  height: 18px;
  color: var(--brown-light);
}

.formulacao__product-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.formulacao__content .label { margin-bottom: 12px; }

.formulacao__content h2 {
  margin-bottom: 20px;
}

.formulacao__content h2 em {
  font-style: italic;
  color: var(--brown);
}

.formulacao__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.formulacao__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.formulacao__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.formulacao__item-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
}

.formulacao__item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.formulacao__item-text span {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---------- DIFERENCIAIS ---------- */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.diferencial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,168,130,0.12);
  transition: all var(--transition);
  text-align: center;
}

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

.diferencial-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(163,176,148,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sage-accent);
  transition: background var(--transition);
}

.diferencial-card__icon svg { width: 28px; height: 28px; }

.diferencial-card:hover .diferencial-card__icon {
  background: rgba(163,176,148,0.22);
}

.diferencial-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.diferencial-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* ---------- DEPOIMENTOS ---------- */
.depoimentos { background: var(--warm-gray); }

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sage-accent);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}

.depoimento-card:hover {
  box-shadow: var(--shadow-md);
}

.depoimento-card__stars {
  display: flex;
  gap: 3px;
  color: #D4AA70;
}

.depoimento-card__stars svg { width: 16px; height: 16px; }

.depoimento-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  flex: 1;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}

.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  flex-shrink: 0;
}

.depoimento-card__info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.depoimento-card__info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---------- CTA INTERMEDIÁRIA ---------- */
.cta-mid {
  background: linear-gradient(135deg, var(--brown) 0%, #8a4e2e 100%);
  position: relative;
  overflow: hidden;
}

.cta-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(212,160,130,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(138,154,121,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-mid__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-mid__content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-mid__content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-mid__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* ---------- BLOG ---------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,168,130,0.12);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.12) 0%, transparent 60%);
}

.blog-card__thumb-icon {
  width: 48px;
  height: 48px;
  opacity: 0.25;
}

.blog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__cat {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}

.blog-card__excerpt {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
  font-size: 0.78rem;
  color: var(--text-light);
}

.blog-card__read {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.blog-card__read svg { width: 14px; height: 14px; }

/* ---------- FORMULÁRIO ---------- */
.contato {
  background: var(--warm-gray);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.contato__info .label { margin-bottom: 12px; }

.contato__info h2 {
  margin-bottom: 20px;
}

.contato__info h2 em {
  font-style: italic;
  color: var(--brown);
}

.contato__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.contato__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.contato__link:hover {
  box-shadow: var(--shadow-md);
}

.contato__link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
}

.contato__link-icon svg { width: 20px; height: 20px; }

.contato__link-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.contato__link-info span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.form-card__sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group label span {
  color: var(--sage);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(181,111,76,0.08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #C0504A;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #C0504A;
  margin-top: 5px;
}

.form-error-msg.visible {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}

.form-submit .btn.loading {
  opacity: 0.75;
  pointer-events: none;
}

.form-feedback {
  display: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}

.form-feedback.success {
  display: block;
  background: rgba(138,154,121,0.1);
  color: var(--sage);
  border: 1px solid rgba(138,154,121,0.25);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1C1714;
  color: rgba(255,255,255,0.75);
  padding-block: 64px 32px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer__brand-mark svg { width: 18px; height: 18px; }

.footer__brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.footer__brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}

.footer__social:hover {
  background: var(--brown);
  color: var(--white);
}

.footer__social svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom-left {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-right {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-right a {
  color: var(--brown-light);
  font-weight: 600;
  transition: color var(--transition);
}

.footer__bottom-right a:hover {
  color: var(--white);
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.hero__image-placeholder,
.sobre__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  padding: 40px 32px;
}

.img-placeholder--hero {
  background: linear-gradient(145deg, var(--cream) 0%, #E0D8CE 50%, #D4C9B8 100%);
}

.img-placeholder--sobre {
  background: linear-gradient(145deg, #E8E0D5 0%, var(--cream) 50%, #D8CEBC 100%);
}

.img-placeholder__monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(181,111,76,0.25);
}

.img-placeholder__info {
  text-align: center;
  position: relative;
  z-index: 1;
}

.img-placeholder__info strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.img-placeholder__info span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.img-placeholder__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.img-placeholder__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(181,111,76,0.12);
  color: var(--brown);
  border-radius: 48px;
  letter-spacing: 0.04em;
}

.img-placeholder__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.img-placeholder__deco--1 {
  width: 180px;
  height: 180px;
  background: rgba(181,111,76,0.07);
  top: -40px;
  right: -40px;
}

.img-placeholder__deco--2 {
  width: 120px;
  height: 120px;
  background: rgba(138,154,121,0.06);
  bottom: -30px;
  left: -30px;
}

/* ---------- BLOG THUMBNAILS ESTILIZADOS ---------- */
.blog-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.blog-card__thumb--1 {
  background: linear-gradient(135deg, #7A6248 0%, #A0845E 60%, #C4A882 100%);
}

.blog-card__thumb--2 {
  background: linear-gradient(135deg, #5A6E60 0%, #7A9580 60%, #A8BFB0 100%);
}

.blog-card__thumb--3 {
  background: linear-gradient(135deg, #6B5A4A 0%, #8B7355 60%, #B09070 100%);
}

.blog-card__thumb-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-card__thumb--1 .blog-card__thumb-deco::before,
.blog-card__thumb--2 .blog-card__thumb-deco::before,
.blog-card__thumb--3 .blog-card__thumb-deco::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -60px;
  right: -60px;
}

.blog-card__thumb--1 .blog-card__thumb-deco::after,
.blog-card__thumb--2 .blog-card__thumb-deco::after,
.blog-card__thumb--3 .blog-card__thumb-deco::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: 20px;
  left: -20px;
}

.blog-card__thumb-content {
  position: relative;
  z-index: 1;
  padding: 20px 24px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
}

.blog-card__thumb-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.15);
  border-radius: 48px;
  padding: 3px 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.2);
}

.blog-card__thumb-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  max-width: 260px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* ---------- ANIMAÇÕES SCROLL ---------- */
/* Conteúdo sempre visível — animação é enhancement, não requisito */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* JS adiciona .reveal--pending antes de observar, aí remove ao entrar na tela */
.reveal--pending {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 1024px) {
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .depoimentos__grid { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .header__nav,
  .header__cta .btn:last-child {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header {
    position: fixed;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-wrap {
    aspect-ratio: 4/3;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero__badge, .hero__badge-2 {
    display: none;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__credentials {
    grid-template-columns: 1fr;
  }

  .supervisao__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .formulacao__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .formulacao__visual {
    order: 0;
  }

  .cta-mid__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-mid__actions {
    flex-direction: row;
    justify-content: center;
  }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section { padding-block: 64px; }

  .servicos__grid { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 36px; }

  .cred-ribbon__inner { flex-direction: column; gap: 16px; align-items: flex-start; padding-inline: 24px; }
  .cred-ribbon__item { border-right: none; padding-inline: 0; }

  .form-row { grid-template-columns: 1fr; }

  .form-card { padding: 32px 24px; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }

  .cta-mid__actions { flex-direction: column; }
  .cta-mid__actions .btn { width: 100%; justify-content: center; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .supervisao__deco-card { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-accent), transparent);
  opacity: 0.35;
  margin: 0;
}

/* ---------- VIDEO LOCAL ---------- */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9/16;
  background: #000;
}

.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  z-index: 1;
}

.video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.video-play-icon svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
}

.video-play:hover .video-play-icon {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .video-wrap {
    max-width: 100%;
  }
}

/* ---------- FÓRMULA DA FORMULAÇÃO ---------- */
.formula__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}

.formula__badge {
  display: inline-block;
  background: rgba(163,176,148,0.15);
  border: 1px solid rgba(163,176,148,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.formula__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}

.formula__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.formula__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.formula__trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  color: var(--text-muted);
}

.formula__trust svg {
  width: 17px;
  height: 17px;
  color: var(--sage);
  flex-shrink: 0;
}

.formula__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.formula__video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
  aspect-ratio: 16/9;
  background: #000;
}

.formula__video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formula__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  z-index: 1;
}

.formula__play-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.formula__play-icon svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.5));
}

.formula__play:hover .formula__play-icon {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .formula__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .formula__sub { max-width: 100%; }
}

/* ---------- NATURE DECORATIONS ---------- */
.sobre,
.depoimentos,
.cta-mid {
  position: relative;
  overflow: hidden;
}

.nature-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.nature-deco svg {
  display: block;
}

.nature-deco--hero {
  right: -10px;
  top: -20px;
  width: 170px;
  opacity: 0.06;
  transform: rotate(14deg);
}

.nature-deco--sobre {
  left: -15px;
  bottom: -10px;
  width: 120px;
  opacity: 0.07;
  transform: rotate(-8deg);
}

.nature-deco--depoimentos {
  right: -12px;
  top: 50%;
  width: 100px;
  opacity: 0.08;
  transform: translateY(-50%) rotate(10deg);
}

.nature-deco--cta {
  left: -10px;
  top: 50%;
  width: 150px;
  opacity: 0.14;
  transform: translateY(-55%) rotate(-14deg);
}

/* Folha decorativa nos labels de seção */
.label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 10px;
  background: var(--sage);
  border-radius: 0 50% 50% 50%;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0.7;
  margin-right: 5px;
  vertical-align: middle;
}

/* Novos elementos — posicionamento */
.servicos,
.diferenciais,
.formula {
  position: relative;
  overflow: hidden;
}

.nature-deco--hero-seeds {
  left: -5px;
  bottom: 24px;
  width: 150px;
  opacity: 0.07;
}

.nature-deco--servicos {
  right: -18px;
  bottom: -8px;
  width: 115px;
  opacity: 0.07;
}

.nature-deco--formula {
  right: 3%;
  top: -18px;
  width: 95px;
  opacity: 0.09;
  transform: rotate(22deg);
}

.nature-deco--diferenciais {
  left: -14px;
  top: 50%;
  width: 125px;
  opacity: 0.07;
  transform: translateY(-40%) rotate(8deg);
}

@media (max-width: 768px) {
  .nature-deco--hero,
  .nature-deco--sobre,
  .nature-deco--depoimentos,
  .nature-deco--hero-seeds,
  .nature-deco--servicos,
  .nature-deco--formula,
  .nature-deco--diferenciais { display: none; }
  .nature-deco--cta { width: 80px; opacity: 0.09; }
}

/* Oculta botão de tela cheia nos vídeos locais */
#formulaPlayer::-webkit-media-controls-fullscreen-button,
#formulaPlayer::-webkit-media-controls-panel .fullscreen-button,
#videoPlayer::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* ---------- LOGO IMAGES ---------- */
.header__logo-img {
  max-height: 44px;
  width: auto;
  display: block;
}

.header__logo-fallback {
  display: none;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  max-height: 40px;
  width: auto;
  display: block;
  opacity: 0.85;
}

.footer__brand-fallback {
  display: none;
  align-items: center;
  gap: 12px;
}
