/* style.css , LP do Cyano Private Resort (condominiocyano.com.br).
   Nasceu de duas fontes do portal Costa Dorata (somente leitura):
     - empreendimentos/cyano/style.css  -> quase tudo das secoes (c-*), paleta do book;
     - styles.css global                -> so o que esta pagina usa (topo, formulario,
       menu de secoes, galeria em tela cheia, botao flutuante), RECOLORIDO com a paleta
       do Cyano. Nada de navy/champagne do portal aqui.
   E nosso a partir de agora: nao recopiar do portal. */

:root {
  /* Paleta oficial do book Cyano */
  --c-cocoa:        #372214;
  --c-taupe:        #846d5d;
  --c-sand:         #ded0b7;
  --c-cream:        #fffcf4;
  --c-cream-light:  #faf3e0;
  --c-sage:         #aeccaa;
  --c-cyan:         #79b1ad;   /* cor identitaria */

  /* Derivados do cyan (fundos escuros, acentos) */
  --c-teal:         #79b1ad;
  --c-teal-light:   #a8c9c6;
  --c-teal-deep:    #4d8d89;
  --c-teal-text:    #3f7773;   /* cyan escurecido para texto sobre creme/areia (contraste AA) */
  --c-teal-darker:  #2c5e5b;
  --c-teal-night:   #1c4644;
  --c-ink:          #372214;
  --c-ink-2:        #846d5d;

  --c-line:         rgba(55, 34, 20, 0.14);
  --c-line-paper:   rgba(255, 252, 244, 0.22);

  --c-serif-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --c-sans:          "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --c-mono:          "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --c-maxw: 1320px;
  --c-pad: clamp(20px, 4vw, 56px);
  --header-h: 68px;
  --secnav-h: 42px;
}
@media (max-width: 480px) { :root { --header-h: 60px; --secnav-h: 40px; } }

/* ---------- base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: calc(var(--header-h) + var(--secnav-h));
}
body {
  font-family: var(--c-sans);
  font-weight: 400;
  color: var(--c-cocoa);
  background: var(--c-cream);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
}
a:focus-visible, button:focus-visible, .lead-form input:focus-visible {
  outline: 2px solid var(--c-teal);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: 8px; top: -52px; z-index: 200;
  background: var(--c-cream); color: var(--c-cocoa);
  padding: 10px 16px; border-radius: 0 0 8px 8px; text-decoration: none;
  font-family: var(--c-mono); font-size: 12px; letter-spacing: 0.08em;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- topo ---------- */
.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  padding: 0 var(--c-pad);
  display: flex; align-items: center; gap: 28px;
  color: var(--c-cream);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease;
}
.top.scrolled {
  background: rgba(44, 94, 91, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(255, 252, 244, 0.18);
}
.top .brand { margin-right: auto; display: inline-flex; align-items: center; text-decoration: none; }
.top .brand-logo {
  height: 40px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: opacity .35s ease;
}
/* no comeco da pagina o logo grande do hero ja esta na tela: o do topo so aparece ao rolar */
.top:not(.scrolled) .brand-logo { opacity: 0; }
@media (max-width: 480px) { .top .brand-logo { height: 34px; } }

.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  text-decoration: none; opacity: 0.88;
}
.nav a:hover { opacity: 1; }
@media (max-width: 980px) { .nav { display: none; } }

.top-cta {
  display: inline-block; line-height: 1.2;
  font-family: var(--c-sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px; white-space: nowrap;
  background: var(--c-sand); color: var(--c-teal-darker); text-decoration: none;
  transition: background-color .25s ease;
}
.top-cta:hover { background: var(--c-cream); }
@media (max-width: 600px) {
  .top { gap: 12px; }
  .top-cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.1em; }
  .top-cta .lg { display: none; }
}

/* ---------- hero ---------- */
.c-hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  background: var(--c-teal-darker);
  color: var(--c-cream);
  display: flex; align-items: center;
  padding: 140px var(--c-pad) clamp(80px, 8vw, 140px);
  overflow: hidden; isolation: isolate;
}
.c-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(121, 177, 173, 0.28) 0%, rgba(121, 177, 173, 0) 50%),
    radial-gradient(ellipse at 20% 80%, rgba(20, 50, 48, 0.65) 0%, rgba(20, 50, 48, 0) 60%),
    linear-gradient(135deg, var(--c-teal-darker) 0%, var(--c-teal-night) 100%);
}
/* sombras de palmeira: recurso grafico do book */
.c-hero .palm-shadow {
  position: absolute; inset: 0; z-index: -1; opacity: 0.22; pointer-events: none;
  background-image:
    repeating-linear-gradient(105deg, transparent 0 8px, rgba(245, 239, 226, 0.07) 8px 9px),
    repeating-linear-gradient(75deg, transparent 0 14px, rgba(245, 239, 226, 0.05) 14px 15px);
}
.c-hero .container {
  max-width: var(--c-maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .c-hero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 56px; min-height: 0; }
  .c-hero .container { grid-template-columns: 1fr; gap: 36px; }
}
.c-hero .logo-cyano {
  width: clamp(200px, 30vw, 400px); height: auto; display: block;
  margin-bottom: clamp(24px, 4vw, 48px);
  filter: brightness(0) invert(1);
}
.c-hero .tagline {
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1.08; letter-spacing: 0.01em;
  color: var(--c-cream); margin: 0 0 24px; max-width: 22ch; text-wrap: balance;
}
.c-hero .tagline em { font-style: italic; color: var(--c-sand); }
.c-hero .sublead {
  font-weight: 400; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6;
  color: var(--c-cream); opacity: 0.9; max-width: 44ch; margin: 0 0 30px;
}
.c-hero .price-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px;
  margin-bottom: 30px; padding-bottom: 22px;
  border-bottom: 1px solid var(--c-line-paper);
}
.c-hero .price-row .lbl,
.c-hero .price-row .terms {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.82;
}
.c-hero .price-row .v {
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(30px, 3.4vw, 42px); letter-spacing: 0.01em; color: var(--c-cream);
}
.c-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.c-hero .photo-wrap {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) { .c-hero .photo-wrap { aspect-ratio: 16 / 10; } }
.c-hero .photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- botoes ---------- */
.c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--c-sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 999px;
  border: 1px solid var(--c-sand); background: transparent; color: var(--c-sand);
  text-decoration: none; cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.c-btn:hover { background: var(--c-sand); color: var(--c-teal-darker); }
.c-btn.solid { background: var(--c-sand); color: var(--c-teal-darker); }
.c-btn.solid:hover { background: var(--c-cream); border-color: var(--c-cream); }
.c-btn.dark { background: var(--c-teal-darker); color: var(--c-cream); border-color: var(--c-teal-darker); }
.c-btn.dark:hover { background: var(--c-teal-deep); border-color: var(--c-teal-deep); color: var(--c-cream); }
.c-btn .arrow { width: 14px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.c-btn .arrow::after {
  content: ""; position: absolute; right: 0; top: 50%; width: 6px; height: 6px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 420px) {
  .c-hero .cta-row .c-btn { width: 100%; }
}

/* ---------- menu de secoes ---------- */
.lp-secnav {
  position: sticky; top: var(--header-h); z-index: 30;
  background: rgba(255, 252, 244, 0.95);
  backdrop-filter: saturate(140%) blur(8px); -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.lp-secnav .row {
  max-width: calc(var(--c-maxw) + 2 * var(--c-pad)); margin: 0 auto; padding: 0 var(--c-pad);
  display: flex; align-items: center; gap: 4px; height: var(--secnav-h);
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent 100%);
}
@media (min-width: 1000px) { .lp-secnav .row { -webkit-mask-image: none; mask-image: none; } }
.lp-secnav .row::-webkit-scrollbar { display: none; }
.lp-secnav a {
  flex: 0 0 auto; padding: 0 12px; min-height: var(--secnav-h);
  margin-left: 0;
  display: inline-flex; align-items: center;
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-taupe); text-decoration: none; border-bottom: 2px solid transparent;
}
.lp-secnav a:hover { color: var(--c-cocoa); }
.lp-secnav a:first-child { margin-left: -12px; }
.lp-secnav a.active { color: var(--c-cocoa); border-bottom-color: var(--c-teal); }

/* ---------- secoes ---------- */
.c-section { padding: clamp(80px, 11vw, 160px) var(--c-pad); position: relative; }
.c-section.dark  { background: var(--c-teal-deep);   color: var(--c-cream); }
.c-section.deep  { background: var(--c-teal-darker); color: var(--c-cream); }
.c-section.sand  { background: var(--c-sand);  color: var(--c-ink); }
.c-section.cream { background: var(--c-cream); color: var(--c-ink); }
.c-section .container { max-width: var(--c-maxw); margin: 0 auto; }

.c-head {
  display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start;
  margin-bottom: clamp(44px, 5vw, 80px);
}
@media (max-width: 760px) { .c-head { grid-template-columns: 1fr; gap: 16px; } }
.c-head .num {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  opacity: 0.72; display: flex; flex-direction: column; gap: 14px;
}
.c-head h2 {
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px); line-height: 1.04; letter-spacing: 0.005em;
  margin: 0; color: inherit; text-wrap: balance;
}
.c-head h2 em { font-style: italic; color: var(--c-teal-light); }
.c-section.sand .c-head h2 em,
.c-section.cream .c-head h2 em { color: var(--c-teal-text); }
.c-head .lead {
  font-weight: 400; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6;
  margin: 22px 0 0; max-width: 58ch; opacity: 0.92; color: inherit;
}

/* conceito */
.c-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px); margin-top: clamp(44px, 6vw, 80px);
}
@media (max-width: 760px) { .c-stats { grid-template-columns: 1fr 1fr; } }
.c-stats .stat { border-top: 1px solid var(--c-line); padding-top: 18px; }
.c-stats .stat .v {
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(38px, 5vw, 62px); line-height: 1; letter-spacing: 0.005em;
}
.c-stats .stat .v small { font-size: 0.4em; vertical-align: super; letter-spacing: 0.08em; margin-left: 4px; opacity: 0.7; }
.c-stats .stat .l {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 14px; opacity: 0.82;
}

/* localizacao */
.c-loc { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
@media (max-width: 880px) { .c-loc { grid-template-columns: 1fr; } }
.c-map {
  position: relative; aspect-ratio: 4 / 3; background: var(--c-teal-darker);
  border: 1px solid var(--c-line-paper); overflow: hidden;
}
.c-map svg { width: 100%; height: 100%; display: block; }
.c-loc-list { display: flex; flex-direction: column; gap: 22px; }
.c-loc-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px;
  padding-bottom: 22px; border-bottom: 1px solid var(--c-line-paper);
}
.c-loc-item:last-child { border-bottom: none; }
.c-loc-item .n { font-family: var(--c-mono); font-size: 12px; letter-spacing: 0.16em; padding-top: 6px; opacity: 0.85; }
.c-loc-item .t { font-family: var(--c-serif-display); font-weight: 400; font-size: 22px; line-height: 1.18; margin: 0 0 4px; }
.c-loc-item .d { font-size: 14px; opacity: 0.9; margin: 0; line-height: 1.5; }
.map-embed { margin-top: clamp(28px, 4vw, 44px); }
.map-embed iframe { width: 100%; height: 420px; border: 0; border-radius: 4px; display: block; }

/* galeria do beach club */
.c-club-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto); gap: 14px;
}
.c-club-grid .cell {
  position: relative; overflow: hidden; background: var(--c-teal-darker);
  border: 0; padding: 0; margin: 0; cursor: zoom-in; text-align: left; color: var(--c-cream);
}
.c-club-grid .cell img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.c-club-grid .cell:hover img { transform: scale(1.03); }
.c-club-grid .cell::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 40, 40, 0) 55%, rgba(20, 40, 40, 0.72) 100%);
}
.c-club-grid .cell .cap { position: absolute; left: 22px; bottom: 20px; z-index: 2; display: block; }
.c-club-grid .cell .cap .s {
  display: block; font-family: var(--c-mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; opacity: 0.95;
}
.c-club-grid .cell .cap .n { display: block; font-family: var(--c-serif-display); font-size: 22px; margin-top: 4px; }
.c-club-grid .cell.c1 { grid-column: span 7; grid-row: span 2; min-height: 480px; }
.c-club-grid .cell.c2 { grid-column: span 5; min-height: 234px; }
.c-club-grid .cell.c3 { grid-column: span 5; min-height: 234px; }
.c-club-grid .cell.c4,
.c-club-grid .cell.c5,
.c-club-grid .cell.c6 { grid-column: span 4; min-height: 280px; }
@media (max-width: 980px) {
  .c-club-grid { grid-template-columns: repeat(2, 1fr); }
  .c-club-grid .cell { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 240px !important; }
  .c-club-grid .cell.c1 { grid-column: span 2 !important; min-height: 340px !important; }
}
@media (max-width: 560px) {
  .c-club-grid { grid-template-columns: 1fr; }
  .c-club-grid .cell,
  .c-club-grid .cell.c1 { grid-column: span 1 !important; min-height: 230px !important; }
}

/* lazer */
.c-amen-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--c-line-paper); }
.c-amen-list .it { padding: 24px 18px; border-right: 1px solid var(--c-line-paper); border-bottom: 1px solid var(--c-line-paper); }
.c-amen-list .it:nth-child(4n) { border-right: none; }
@media (max-width: 760px) {
  .c-amen-list { grid-template-columns: 1fr 1fr; }
  .c-amen-list .it { padding: 20px 14px; border-right: 1px solid var(--c-line-paper); }
  .c-amen-list .it:nth-child(2n) { border-right: none; }
}
.c-amen-list .it .n { font-family: var(--c-serif-display); font-style: italic; font-size: 20px; line-height: 1.2; }
.c-amen-list .it .s {
  font-family: var(--c-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.82; margin-top: 6px;
}

/* lotes */
.c-conditions {
  padding: clamp(26px, 3vw, 44px); background: var(--c-cream); border: 1px solid var(--c-line);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3vw, 48px); align-items: center;
}
@media (max-width: 760px) { .c-conditions { grid-template-columns: 1fr; } }
.c-conditions .titulo {
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(26px, 2.8vw, 34px); line-height: 1.16; margin: 0 0 8px; color: var(--c-ink);
}
.c-conditions .sub {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-ink-2); margin: 0 0 26px;
}
.c-conditions .terms-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.c-conditions .terms-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--c-line); color: var(--c-ink);
}
.c-conditions .terms-list li:last-child { border-bottom: none; }
.c-conditions .terms-list .l { font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.c-conditions .terms-list .val {
  font-family: var(--c-serif-display); font-size: 19px; color: var(--c-teal-text); text-align: right;
}

/* duvidas */
.c-faq-list { display: grid; }
.c-faq-item { border-top: 1px solid var(--c-line); }
.c-faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.c-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; background: transparent; border: none; padding: 22px 0;
  text-align: left; cursor: pointer; color: inherit;
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(20px, 1.9vw, 25px); line-height: 1.22;
}
.c-faq-q .ic {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid currentColor;
  flex-shrink: 0; position: relative; opacity: 0.6;
  transition: background-color .25s ease, opacity .25s ease;
}
.c-faq-q .ic::before,
.c-faq-q .ic::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1px;
  background: currentColor; transform: translate(-50%, -50%); transition: transform .25s ease;
}
.c-faq-q .ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.c-faq-item.open .c-faq-q .ic { opacity: 1; background: var(--c-teal-deep); border-color: var(--c-teal-deep); }
.c-faq-item.open .c-faq-q .ic::before,
.c-faq-item.open .c-faq-q .ic::after { background: var(--c-cream); }
.c-faq-item.open .c-faq-q .ic::after { transform: translate(-50%, -50%) rotate(0deg); }
.c-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; font-size: 15.5px; line-height: 1.7; }
.c-faq-a p { margin: 0; max-width: 72ch; }
.c-faq-item.open .c-faq-a { max-height: 900px; padding-bottom: 24px; }

/* ---------- contato ---------- */
.c-cta {
  position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(80px, 10vw, 140px) var(--c-pad);
  overflow: hidden; isolation: isolate; color: var(--c-cream);
  background: var(--c-teal-darker);
}
.c-cta .bg { position: absolute; inset: 0; z-index: -2; }
.c-cta .bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-cta .scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(77, 141, 137, 0.62) 0%, rgba(44, 94, 91, 0.9) 100%);
}
.c-cta .inner { max-width: 860px; margin: 0 auto; width: 100%; }
.c-cta .eyebrow {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--c-sand); margin-bottom: 20px; display: inline-block;
}
.c-cta h2 {
  font-family: var(--c-serif-display); font-weight: 400;
  font-size: clamp(36px, 5.5vw, 68px); line-height: 1.06; margin: 0 0 20px;
  text-wrap: balance; color: var(--c-cream);
}
.c-cta h2 em { font-style: italic; color: var(--c-sand); }
.c-cta .sub { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 52ch; margin: 0 auto; }
.c-cta .legal {
  margin: 26px 0 0; font-family: var(--c-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.8;
}

/* formulario: cartao claro sobre a foto */
.lead-form {
  margin: 34px auto 0; display: grid; gap: 14px; max-width: 540px; text-align: left;
  background: var(--c-cream); color: var(--c-cocoa);
  padding: 28px 26px 24px; border-radius: 16px;
  box-shadow: 0 20px 56px rgba(8, 20, 20, 0.34);
}
@media (max-width: 420px) { .lead-form { padding: 22px 16px 18px; } }
.lead-form label {
  display: grid; gap: 6px; font-family: var(--c-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-taupe);
}
.lead-form input {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid #d6c9b3;
  background: #fff; color: var(--c-cocoa); font-size: 16px; font-family: var(--c-sans);
}
.lead-form input::placeholder { color: #a89a8a; }
.lead-form input:focus-visible { outline: 2px solid var(--c-teal-deep); outline-offset: 1px; border-color: var(--c-teal-deep); }
.lf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .lf-2col { grid-template-columns: 1fr; } }
.lf-perfil { display: grid; gap: 6px; }
.lf-perfil-label {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-taupe);
}
.lf-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 420px) { .lf-pills { grid-template-columns: 1fr; } }
.lead-form label.lf-pill {
  display: block; position: relative; cursor: pointer;
  font-family: var(--c-sans); font-size: 14.5px; text-transform: none; letter-spacing: normal;
  border: 1.5px solid #d6c9b3; border-radius: 12px; padding: 12px 14px; background: #fff;
  transition: border-color .15s, background-color .15s;
}
.lf-pill input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.lf-pill-t { display: block; font-weight: 500; color: var(--c-cocoa); }
.lf-pill-d { display: block; font-size: 12px; color: var(--c-taupe); margin-top: 2px; }
.lf-pill.is-checked { border-color: var(--c-teal-deep); background: rgba(121, 177, 173, 0.16); }
.lf-pill.is-checked .lf-pill-t::before { content: "✓ "; color: var(--c-teal-text); }
.lf-pill:focus-within { outline: 2px solid var(--c-teal-deep); outline-offset: 2px; }
.lead-form label.lf-consent {
  display: flex; gap: 8px; align-items: flex-start; text-transform: none; letter-spacing: normal;
  font-family: var(--c-sans); font-size: 13px; line-height: 1.5; color: #5d4e43;
}
.lead-form .lf-consent input { width: auto; margin: 3px 0 0; flex: 0 0 auto; }
.lead-form .lf-consent a { color: inherit; text-decoration: underline; }
.lf-submit { justify-self: stretch; margin-top: 4px; font-size: 12px; }
.lf-submit[disabled] { opacity: 0.7; cursor: progress; }
.lf-msg { font-size: 14px; min-height: 18px; margin: 0; text-align: center; color: #94432f; font-weight: 500; }
.lf-privacy { font-size: 12px; color: var(--c-taupe); margin: 0; text-align: center; }

/* ---------- rodape ---------- */
.rodape { background: var(--c-teal-night); color: var(--c-cream); }
.rodape .row {
  padding: clamp(52px, 6vw, 90px) 0 32px; margin: 0 max(var(--c-pad), calc((100% - var(--c-maxw)) / 2));
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 760px) { .rodape .row { grid-template-columns: 1fr; } }
.rodape .brand-foot { display: inline-block; margin-bottom: 20px; padding: 0; }
.rodape .brand-foot-logo { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.rodape .assina { max-width: 46ch; line-height: 1.6; margin: 0; font-size: 14px; opacity: 0.88; }
.rodape .h {
  font-family: var(--c-mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  opacity: 0.7; margin: 0 0 14px;
}
.rodape a:not(.brand-foot) {
  display: block; color: var(--c-cream); text-decoration: none; font-size: 14px;
  opacity: 0.88; padding: 6px 0;
}
.rodape a:not(.brand-foot):hover { opacity: 1; text-decoration: underline; }
.rodape .aviso {
  margin: 0 max(var(--c-pad), calc((100% - var(--c-maxw)) / 2)); padding: 20px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--c-line-paper);
  font-size: 11px; line-height: 1.6; color: rgba(255, 252, 244, 0.62);
}
@media (max-width: 760px) { .rodape .aviso { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); } }

/* ---------- foto em tela cheia ---------- */
.lb-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12, 28, 27, 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px 100px; opacity: 0; transition: opacity .25s ease;
}
.lb-overlay[hidden] { display: none; }
.lb-overlay.open { opacity: 1; }
.lb-img { max-width: 100%; max-height: calc(100vh - 170px); display: block; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.lb-close {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 252, 244, 0.08); border: 1px solid rgba(255, 252, 244, 0.28);
  color: var(--c-cream); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lb-close:hover { background: rgba(255, 252, 244, 0.18); }
.lb-cap {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); margin: 0;
  color: var(--c-sand); font-family: var(--c-serif-display); font-style: italic; font-size: 18px;
  background: rgba(44, 94, 91, 0.75); padding: 8px 22px; border-radius: 999px;
  white-space: nowrap; max-width: calc(100vw - 48px); overflow: hidden; text-overflow: ellipsis;
}
body.lb-active { overflow: hidden; }

/* ---------- botao flutuante do celular (injetado por /assets/sticky-cta.js) ---------- */
.cd-scta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--c-teal-night); border-top: 1px solid var(--c-teal);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(115%); opacity: 0; pointer-events: none;
  transition: transform .22s ease-out, opacity .22s ease-out;
}
.cd-scta.show { transform: none; opacity: 1; pointer-events: auto; }
.cd-scta-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; width: 100%; padding: 12px 18px;
  background: var(--c-sand); color: var(--c-teal-darker);
  font-family: var(--c-sans); font-weight: 500; font-size: 16px;
  border-radius: 10px; text-decoration: none; touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.cd-scta-btn:active { background: var(--c-cream); }
.cd-scta-btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
@media (min-width: 761px) { .cd-scta { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
  .cd-scta { transition: opacity .2s linear; transform: none; }
}

/* ---------- entrada suave (classe posta pelo page.js) ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.in { opacity: 1; transform: none; }
