/* ===== FONTS ===== */

@font-face {
  font-family: 'CormorantGaramond';
  src: url('../assets/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CormorantGaramond';
  src: url('../assets/fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CormorantGaramond';
  src: url('../assets/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CormorantGaramond';
  src: url('../assets/fonts/cormorant-garamond-v21-latin-700italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/lora-v37-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/lora-v37-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/lora-v37-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/lora-v37-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../assets/fonts/playfair-display-v40-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../assets/fonts/playfair-display-v40-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}



/* ===== VARIÁVEIS ===== */
:root {
  --gold:        #a87f40;
  --gold-hover:  #a07622;
  --green:       #3f4e3e;
  --green-hover: #2e4237;
  --green-salvia: #6c8778;
  --white:       #ffffff;
  --dark:        #333333;
  --beige:       #CEC8BB;
  --beige-mid:   #cec8b8;

  --font-display: 'CormorantGaramond';
  --font-body:    'Lora';
  --font-detail:  'PlayfairDisplay';

  --nav-height:   72px;
  --container:    1200px;

  --section-v:    48px;
  --section-h:    16px;
  --gap-sm:       12px;
  --gap-md:       20px;
  --gap-lg:       32px;
}

@media (min-width: 769px) {
  :root {
    --section-v:  80px;
    --section-h:  24px;
    --gap-sm:     16px;
    --gap-md:     28px;
    --gap-lg:     48px;
  }
}


/* ===== RESET MÍNIMO ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--beige);
  --webkit-font-smoothing: antialiased;
}

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


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  background: rgb(234 229 220 / 75%);
  backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.navbar__logo {
  background-color: white;
  border-radius: 25px;
  padding: 3px;
}

.navbar__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Mobile: links e CTA ocultos */
.navbar__links {
  display: none;
  list-style: none;
}

.navbar__links a {
  font-family: var(--font-detail);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.navbar--scrolled .navbar__links a {
  color: var(--dark);
}

.navbar__links a:hover {
  opacity: 1;
}

.navbar__cta {
  display: none;
  font-family: var(--font-detail);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 24px;
  white-space: nowrap;
  transition: background 0.2s;
}

.navbar__cta:hover {
  background: var(--gold-hover);
}

/* Mobile: hambúrguer visível */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.navbar--scrolled .navbar__hamburger span {
  background: var(--dark);
}

.navbar__hamburger--open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.navbar__hamburger--open span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}


/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-menu--open {
  max-height: 480px;
  padding: 20px 0 28px;
}

.mobile-menu__link,
.mobile-menu__cta {
  font-family: var(--font-detail);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  transition: background 0.15s;
}

.mobile-menu__link:hover {
  background: var(--beige-mid);
}

.mobile-menu__cta {
  margin-top: 12px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 24px;
  width: calc(100% - 48px);
  padding: 14px 24px;
}

.mobile-menu__cta:hover {
  background: var(--gold-hover);
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.44) 60%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 48px) 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Mobile: título e logo empilhados */
.hero__split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 60px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--white);
  animation: hero-fade-up 0.9s ease both;
}

.hero__title-gold {
  color: var(--gold);
  font-style: italic;
}

.hero__logo-mark {
  flex-shrink: 0;
  width: clamp(120px, 35vw, 200px);
  align-self: flex-end;
  animation: hero-fade-in 1.1s ease 0.2s both;
}

.hero__logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  animation: hero-fade-up 0.9s ease 0.3s both;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
}

/* Mobile: sem quebra de linha no subtítulo */
.hero__subtitle br {
  display: none;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}


/* ===== BOTÕES ===== */
.btn {
  font-family: var(--font-detail);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn--gold:hover {
  background: var(--gold-hover);
}

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

.btn--green:hover {
  background: var(--green-hover);
}


/* ===== SCROLL CUE ===== */
.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-detail);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scroll-cue-bounce 2s ease-in-out infinite 1.5s;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
}


/* ===== SEÇÃO MERCADO / STATISTICS ===== */
.mercado {
  background: var(--green);
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.mercado__cabecalho {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: var(--container);
  text-align: center;
}

.mercado__titulo {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.mercado__subtitulo {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
  color: #b3b3b3;
}

/* Mobile: números empilhados */
.mercado__nums {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: var(--container);
}

.mercado__divisor {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.473);
  flex-shrink: 0;
  margin: 0;
}

.mercado__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  text-align: center;
}

.mercado__num-valor {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--gold);
}

.mercado__num-label {
  font-family: var(--font-detail);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffffb5;
  max-width: 280px;
}


/* ===== SEÇÃO HISTÓRIA DA FUNDADORA ===== */
.creator-story {
  background: var(--white);
  padding: var(--section-v) var(--section-h);
}

.creator-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.creator-story__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.creator-story__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 20px;
}

.creator-story__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  color: #555555;
}

.creator-story__quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0 0;
}

.creator-story__quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin: 0 0 8px;
}

.creator-story__quote cite {
  font-family: var(--font-detail);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.creator-story__photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.creator-story__photo-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
}

.creator-story__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}


/* ===== SEÇÃO SOBRE / QUEM SOMOS ===== */
.sobre {
  background: var(--green);
  padding: 32px 16px;
}

/* Mobile: coluna única */
.sobre__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.sobre__col-esquerda {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 24px;
  padding: 37px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.bento-card--alto {
  flex: 1.6;
}

.bento-card__titulo {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

.bento-card__texto {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}

.sobre__card-central {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sobre__card-central-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sobre__card-central-glass {
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 20, 0.48);
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  margin: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre__grippa-titulo {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.sobre__grippa-texto {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile: stats em linha */
.sobre__col-direita {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 12px;
  padding: 23px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex: 1 1 140px;
  position: relative;
  overflow: hidden;
}

.stat-card__label {
  font-family: var(--font-detail);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

.stat-card__numero {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--dark);
  display: block;
}


/* ===== SEÇÃO DIFERENCIAIS / POR QUE ESCOLHER ===== */
.diferenciais {
  background: var(--white);
  padding: 48px 16px;
}

.diferenciais__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  max-width: var(--container);
  margin: 0 auto;
}

.diferenciais__titulo {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.diferenciais__titulo-cinza  { color: #666666; }
.diferenciais__titulo-dourado { color: #a87f40; }

/* Mobile: cards empilhados */
.diferenciais__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
}

.diferencial-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 22px;
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diferencial-card__titulo {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.6px;
  color: #262626;
}

.diferencial-card__texto {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.4px;
  color: #737373;
}

/* Mobile: capa menor */
.diferenciais__capa {
  align-self: stretch;
  border-radius: 24px;
  overflow: hidden;
  height: 280px;
  flex-shrink: 0;
}

.diferenciais__capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}


/* ===== SEÇÃO PORTFÓLIO DE SERVIÇOS ===== */
.portfolio {
  background: var(--green);
  padding: 48px 0;
}

.portfolio__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.portfolio__titulo {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-align: center;
}

.portfolio__destaque {
  color: #a87f40;
  font-style: italic;
}

/* Mobile: carrossel vertical */
.portfolio__carrossel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto;
  width: 100%;
  overflow: visible;
}

/* Mobile: card base */
.servico-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  flex: none;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.servico-card--ativo {
  cursor: default;
}

/* Mobile: imagem acima do texto */
.servico-card__bg {
  position: relative;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px 24px 0 0;
  display: block;
}

/* Mobile: label como overlay sobre a imagem */
.servico-card__label {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  align-items: flex-end;
  padding: 12px 16px;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
  border-radius: 24px 24px 0 0;
}

.servico-card__label span {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.servico-card--ativo .servico-card__label {
  display: none;
}

/* Mobile: conteúdo abaixo da imagem */
.servico-card__conteudo {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  right: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  opacity: 1;
  pointer-events: auto;
  background: var(--white);
  border-radius: 0 0 24px 24px;
}

/* Mobile: apenas o card ativo exibe o conteúdo */
.servico-card:not(.servico-card--ativo) .servico-card__conteudo {
  display: none;
}

.servico-card__nome {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

.servico-card__descricao {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #575757;
}


/* ===== SEÇÃO TICKET / INVESTIMENTO ===== */
.ticket {
  background: var(--white);
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.ticket__cabecalho {
  max-width: 760px;
  text-align: center;
}

.ticket__titulo {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}

/* Mobile: stats empilhados */
.ticket__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: var(--container);
  border-radius: 18px;
  background: #cec8bb69;
  padding: 40px 24px;
}

.ticket__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-align: center;
}

/* Mobile: divisor horizontal */
.ticket__divisor {
  width: 60px;
  height: 1px;
  background: var(--beige-mid);
  flex-shrink: 0;
  align-self: auto;
  margin: 0;
}

.ticket__valor {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 56px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #3f4e3e;
}

.ticket__label {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: #262626;
}


/* ===== SEÇÃO PASSOS / COMO SE TORNA FRANQUEADO ===== */
.passos {
  background: var(--green);
  padding: 64px 16px;
}

.passos__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
}

.passos__titulo {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
}

/* Mobile: timeline vertical */
.passos__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  position: relative;
}

.passos__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green) 0%, rgba(63, 78, 62, 0.12) 100%);
  z-index: 0;
}

.passos__step {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 44px;
  position: relative;
  cursor: pointer;
}

.passos__step:last-child {
  padding-bottom: 0;
}

.passos__marcador {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(63, 78, 62, 0.08);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.passos__step:not(.passos__step--aberto):hover .passos__marcador {
  background: var(--green-hover);
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(63, 78, 62, 0.14);
}

.passos__step--aberto .passos__marcador {
  background: var(--gold);
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(168, 127, 64, 0.18);
}

.passos__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  color: var(--dark);
  line-height: 1;
}

.passos__num {
  transition: color 0.2s ease;
}

.passos__step--aberto .passos__marcador .passos__num {
  color: var(--white);
}

.passos__step-texto {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 14px;
}

.passos__step-titulo {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 6px;
}

.passos__sep {
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--beige-mid);
  opacity: 0.6;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.passos__card {
  position: relative;
  background: #fffffffa;
  border: 1px solid var(--beige);
  border-radius: 10px;
  padding: 32px 48px;
  width: 100%;
  text-align: center;
}

/* Mobile: card aparece logo abaixo do passo ativo, dentro da timeline */
.passos__step .passos__card {
  margin-top: 24px;
}

.passos__seta {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid var(--beige);
  border-left: 1px solid var(--beige);
  transform: translateX(-50%) rotate(45deg);
  transition: left 0.3s ease;
}

.passos__card-titulo {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}

.passos__card-corpo {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}


/* ===== SEÇÃO CANDIDATURA / FORMULÁRIO ===== */
.candidatura {
  background: var(--white);
  padding: 32px 16px;
}

.candidatura__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.candidatura__cabecalho {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.candidatura__titulo {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}

.candidatura__subtitulo {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
}

/* Mobile: coluna única */
.candidatura__corpo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  align-self: stretch;
}

.candidatura__foto {
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.88;
  height: 100%;
  min-height: 260px;
}

.candidatura__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* #2e3b2c1a */
.candidatura__form-wrap {
  background:#ede8dfe6;
  border: 1px solid #ede8e4;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.candidatura__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campo__label {
  font-family: var(--font-detail);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #272727;
}

.campo__input,
.campo__textarea {
  background: var(--white);
  border: 1px solid #ede8e4;
  border-radius: 6px;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.campo__input::placeholder,
.campo__textarea::placeholder {
  color: #999999;
}

.campo__input:focus,
.campo__textarea:focus {
  border-color: var(--green);
}

.campo__textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

.campo__erro-msg {
  font-family: var(--font-body);
  font-size: 13px;
  color: #c0392b;
  display: none;
  line-height: 1.3;
}

.campo--erro .campo__input,
.campo--erro .campo__textarea {
  border-color: #c0392b;
}

.campo--erro .campo__erro-msg {
  display: block;
}

.campo--ok .campo__input,
.campo--ok .campo__textarea {
  border-color: var(--green);
}

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

.campo-grupo .campo {
  flex: 1;
}

/* Mobile: botão full width */
.candidatura__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #a87f40;
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: var(--font-detail);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: stretch;
  width: 100%;
  margin-top: 4px;
}
footer
.candidatura__btn:hover:not(:disabled) {
  background: #8f6c32;
  transform: translateY(-1px);
}

.candidatura__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--green);
  padding: 48px 16px 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: inline-flex;
  align-self: flex-start;
}

.footer__logo img {
  height: 190px;
  width: auto;
  object-fit: contain;
}

.footer__nav-titulo {
  font-family: var(--font-detail);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a87f40;
  margin-bottom: 20px;
}

.footer__nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav-links a {
  font-family: var(--font-detail);
  font-size: 15px;
  font-weight: 700;
  color: var(--beige);
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}

.footer__nav-links a:hover {
  color: #a87f40;
  opacity: 1;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  width: 100%;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--white);
}

.footer__credit {
  font-family: var(--font-body);
  font-size: 12px;
 color: var(--white);
}

.footer__credit a {
  color: #a87f40;
  font-weight: 700;
  text-decoration: none;
}

.footer__credit a:hover {
  text-decoration: underline;
}


/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.wa-float a svg {
  width: 26px;
  height: 26px;
}

.wa-float a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.48);
}

.wa-float a::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}

.wa-float a::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1.5px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite 0.45s;
}

@keyframes waPulse {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

/* ===== ANIMAÇÕES ===== */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ===================================================================
   TABLET  (min-width: 481px)
   =================================================================== */
@media (min-width: 481px) {
  .navbar__inner {
    padding: 0 24px;
  }

  /* Footer */
  .footer {
    padding: 56px 24px 32px;
  }

  /* Botões: voltam para largura automática */
  .btn {
    width: auto;
    min-width: 180px;
    justify-content: flex-start;
  }

  /* Sobre: 2 colunas + card central em baixo */
  .sobre__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .sobre__col-esquerda {
    grid-column: 1;
    grid-row: 1;
  }

  .sobre__col-direita {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .stat-card {
    flex: 1;
  }

  .sobre__card-central {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 400px;
  }

  /* Botão do form: auto a partir do tablet */
  .candidatura__btn {
    align-self: flex-start;
    width: auto;
  }

  .campo-grupo {
    flex-direction: row;
  }
}


/* ===================================================================
   DESKTOP  (min-width: 769px)
   =================================================================== */
@media (min-width: 769px) {

  /* --- Navbar --- */
  .navbar__inner {
    padding: 0 24px;
    gap: 32px;
  }

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

  .navbar__cta {
    display: inline-block;
  }

  .navbar__hamburger {
    display: none;
  }

  /* --- Hero --- */
  .hero__inner {
    padding: calc(var(--nav-height) + 48px) 24px 100px;
    gap: 64px;
  }

  .hero__split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .hero__title {
    font-size: clamp(52px, 6vw, 80px);
  }

  .hero__logo-mark {
    width: clamp(180px, 20vw, 300px);
    align-self: auto;
  }

  .hero__subtitle br {
    display: inline;
  }

  /* --- Mercado --- */
  .mercado {
    padding: 80px 24px;
    gap: 56px;
  }

  .mercado__nums {
    flex-direction: row;
    align-items: stretch;
  }

  .mercado__divisor {
    width: 1px;
    height: auto;
    margin: 8px 0;
  }

  .mercado__num {
    flex: 1;
    padding: 12px 48px;
  }

  /* --- História da Fundadora --- */
  .creator-story__inner {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }

  .creator-story__photo-wrap {
    align-items: flex-start;
  }

  .creator-story__photo-container {
    max-width: 100%;
  }

  /* --- Sobre --- */
  .sobre {
    padding: 32px 24px;
  }

  .sobre__container {
    grid-template-columns: 250px 1fr 250px;
    grid-template-rows: auto;
    align-items: stretch;
  }

  .sobre__col-esquerda {
    grid-column: 1;
    grid-row: 1;
  }

  .sobre__card-central {
    grid-column: 2;
    grid-row: 1;
    min-height: 600px;
  }

  .sobre__col-direita {
    grid-column: 3;
    grid-row: 1;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .stat-card {
    flex: 1;
  }

  /* --- Diferenciais --- */
  .diferenciais {
    padding: 80px 24px;
  }

  .diferenciais__cards {
    flex-direction: row;
    align-items: stretch;
  }

  .diferenciais__capa {
    height: 455px;
  }

  /* --- Portfólio: carrossel horizontal --- */
  .portfolio {
    padding: 80px 0;
  }

  .portfolio__inner {
    padding: 0 24px;
  }

  .portfolio__carrossel {
    flex-direction: row;
    gap: 12px;
    height: 480px;
    overflow: hidden;
    align-items: stretch;
  }

  .servico-card {
    flex: 1;
    width: auto;
    height: 480px;
    min-height: auto;
    cursor: pointer;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .servico-card--ativo {
    flex: 4;
    cursor: default;
  }

  /* Restaura bg absoluto */
  .servico-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: transform 0.4s ease;
  }

  .servico-card:not(.servico-card--ativo):hover .servico-card__bg {
    transform: scale(1.04);
  }

  /* Restaura label vertical */
  .servico-card__label {
    display: flex;
    position: absolute;
    inset: 0;
    height: auto;
    align-items: flex-end;
    padding: 20px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    border-radius: 0;
    opacity: 1;
    transition: opacity 0.3s;
  }

  .servico-card--ativo .servico-card__label {
    opacity: 0;
    pointer-events: none;
  }

  .servico-card__label span {
    font-family: var(--font-detail);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin: 0 auto;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
  }

  /* Restaura conteúdo sobreposto */
  .servico-card__conteudo {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 32px 28px;
    opacity: 0;
    pointer-events: none;
    background: transparent;
    border-radius: 0;
    transition: opacity 0.2s ease 0s;
  }

  .servico-card--ativo .servico-card__conteudo {
    display: flex;
    opacity: 1;
    transition: opacity 0.2s ease 0.25s;
    pointer-events: auto;
    background: rgba(15, 15, 15, 0.42);
    backdrop-filter: blur(2px);
    --webkit-backdrop-filter: blur(2px);
    border-radius: 0 24px 24px 0;
  }

  .servico-card:not(.servico-card--ativo) .servico-card__conteudo {
    display: flex;
    opacity: 0;
    left: 0;
    right: 0;
    background: transparent;
    transition: opacity 0.1s ease 0s;
  }

  .servico-card__nome {
    color: var(--white);
  }

  .servico-card__descricao {
    color: rgba(255, 255, 255, 0.88);
  }

  /* --- Ticket --- */
  .ticket {
    padding: 80px 24px;
  }

  .ticket__card {
    flex-direction: row;
    gap: 0;
    padding: 48px 40px;
  }

  .ticket__divisor {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: 0 40px;
  }

  /* --- Passos --- */
  .passos {
    padding: 80px 24px;
  }

  .passos__inner {
    gap: 40px;
  }

  .passos__timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .passos__timeline::before {
    content: none;
  }

  .passos__step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 0;
  }

  .passos__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(50% + 28px + 10px);
    width: calc(100% - 56px - 20px);
    height: 2px;
    background: linear-gradient(to right, #cec8bb00 0%, var(--beige) 50%, #cec8bb00 100%);
    z-index: 0;
  }

  .passos__step-texto {
    display: contents;
  }

  .passos__step-titulo {
    margin-top: 10px;
    text-align: center;
  }

  .passos__sep {
    display: block;
    margin: 0 auto 8px;
  }

  /* --- Footer --- */
  .footer {
    padding: 64px 24px 40px;
  }

  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer__credit {
    text-align: right;
  }

  /* --- Candidatura --- */
  .candidatura {
    padding: 56px 24px;
  }

  .candidatura__inner {
    gap: 40px;
  }

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

  .candidatura__foto {
    min-height: unset;
    height: 440px;
  }

  .candidatura__btn {
    align-self: flex-start;
    width: auto;
  }
}


@media (prefers-reduced-motion: reduce) {
  .passos__seta,
  .passos__marcador {
    transition: none;
  }
}


/* ===================================================================
   WIDE  (min-width: 1281px)
   =================================================================== */
@media (min-width: 1281px) {
  :root {
    --container: 1400px;
  }
}


/* ===================================================================
   ULTRAWIDE  (min-width: 1920px)
   Reduz o zoom excessivo da imagem de capa em monitores muito largos
   =================================================================== */
@media (min-width: 1920px) {
  .hero {
    max-height: 860px;
  }

  .hero__background img {
    object-position: center 50%;
  }
}

@media (min-width: 2560px) {
  .hero__background img {
    object-position: center 50%;
  }
}
