/* Cyano Private Resort — design único do empreendimento
   Paleta oficial extraída do book digital (cocoa, taupe, sand, cream, sage, cyan). */

:root {
  /* Paleta oficial do book Cyano */
  --c-cocoa:        #372214;   /* marrom escuro (texto principal) */
  --c-taupe:        #846d5d;   /* marrom médio (texto secundário) */
  --c-sand:         #ded0b7;   /* areia (fundo neutro) */
  --c-sand-deep:    #c4b294;   /* areia mais quente */
  --c-cream:        #fffcf4;   /* cream/off-white (fundo principal) */
  --c-cream-light:  #faf3e0;   /* cream pouco mais quente */
  --c-sage:         #aeccaa;   /* verde sage (acento) */
  --c-cyan:         #79b1ad;   /* CYAN OFICIAL (cor do empreendimento) */

  /* Aliases legados mantidos por compatibilidade (apontam pra paleta oficial) */
  --c-teal:         #79b1ad;   /* = --c-cyan */
  --c-teal-light:   #a8c9c6;   /* derivado claro */
  --c-teal-deep:    #4d8d89;   /* derivado escuro pra accents */
  --c-teal-darker:  #2c5e5b;   /* derivado profundo (fundo dark) */
  --c-ink:          #372214;   /* = --c-cocoa */
  --c-ink-2:        #846d5d;   /* = --c-taupe */

  --c-line:         rgba(55, 34, 20, 0.14);
  --c-line-light:   rgba(55, 34, 20, 0.07);
  --c-line-paper:   rgba(255, 252, 244, 0.22);

  --c-serif-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --c-sans:          "Outfit", "Manrope", system-ui, sans-serif;
  --c-mono:          "JetBrains Mono", ui-monospace, monospace;

  --c-maxw: 1320px;
  --c-pad: clamp(20px, 4vw, 56px);
}

/* Reset suave e base */
body.cyano {
  font-family: var(--c-sans);
  font-weight: 400;
  color: var(--c-cocoa);
  background: var(--c-cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Header overrides — brand Cyano substitui Litoral Norte */
.cyano .top { color: var(--c-cream); }
.cyano .top a { color: var(--c-cream); opacity: 0.92; }
.cyano .top a:hover { opacity: 1; }
.cyano .top.scrolled {
  background: rgba(44, 94, 91, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 252, 244, 0.18);
}
.cyano .top .brand-cyano {
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.cyano .top .brand-cyano .brand-logo {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.cyano .top.scrolled .brand-cyano .brand-logo { height: 22px; transition: height .35s ease; }
.cyano .top .btn.solid {
  background: var(--c-sand);
  border-color: var(--c-sand);
  color: var(--c-teal-darker);
  opacity: 1;
}
.cyano .top .btn.solid:hover {
  background: var(--c-cream);
  border-color: var(--c-cream);
}

/* === 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;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(121, 177, 173, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(20, 50, 48, 0.65) 0%, transparent 60%),
    linear-gradient(135deg, var(--c-teal-darker) 0%, #1c4644 100%);
  z-index: -2;
}

/* Sombras de palmeira como elemento gráfico (recurso visual 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 .container { grid-template-columns: 1fr; gap: 40px; }
}

.c-hero .eyebrow {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-sand);
  opacity: 0.88;
  margin-bottom: 32px;
  display: block;
}

.c-hero .logo-cyano {
  width: clamp(220px, 30vw, 400px);
  height: auto;
  display: block;
  margin-bottom: clamp(28px, 4vw, 48px);
  filter: brightness(0) invert(1);
}

.c-hero .tagline {
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--c-cream);
  margin: 0 0 28px;
  max-width: 22ch;
  text-wrap: balance;
}
.c-hero .tagline em {
  font-style: italic;
  color: var(--c-sand);
}

.c-hero .sublead {
  font-family: var(--c-sans);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--c-cream);
  opacity: 0.86;
  max-width: 44ch;
  margin: 0 0 36px;
}

.c-hero .price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line-paper);
}
.c-hero .price-row .lbl {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.78;
}
.c-hero .price-row .v {
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: 0.01em;
  color: var(--c-cream);
}
.c-hero .price-row .terms {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.c-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero photo right side */
.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);
}
.c-hero .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botões custom do Cyano */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--c-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid var(--c-sand);
  background: transparent;
  color: var(--c-sand);
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.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);
  border-color: var(--c-teal);
}
.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);
}

/* === Seções gerais === */
.c-section {
  padding: clamp(90px, 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;
}

/* Cabeçalho de seção */
.c-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: clamp(48px, 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.28em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-head .num .sec { opacity: 1; }
.c-head h2 {
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: clamp(36px, 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); }
.c-head .lead {
  font-family: var(--c-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  margin-top: 22px;
  max-width: 58ch;
  opacity: 0.9;
  color: inherit;
}

/* === Conceito - stats grid === */
.c-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 80px);
}
@media (max-width: 760px) { .c-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .c-stats { grid-template-columns: 1fr; } }
.c-stats .stat {
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
}
.c-section.dark .c-stats .stat,
.c-section.deep .c-stats .stat { border-top-color: var(--c-line-paper); }
.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.24em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0.8;
}

/* === Localização === */
.c-loc {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
@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-section.sand .c-loc-item,
.c-section.cream .c-loc-item { border-bottom-color: var(--c-line); }
.c-loc-item:last-child { border-bottom: none; }
.c-loc-item .n {
  font-family: var(--c-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding-top: 6px;
  opacity: 0.82;
}
.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-family: var(--c-sans);
  font-size: 14px;
  opacity: 0.86;
  margin: 0;
  line-height: 1.5;
}

/* === 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);
}
.c-club-grid .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-club-grid .cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 40, 40, 0.72) 100%);
  pointer-events: none;
}
.c-club-grid .cell .cap {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: var(--c-cream);
  z-index: 2;
}
.c-club-grid .cell .cap .s {
  font-family: var(--c-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.92;
}
.c-club-grid .cell .cap .n {
  font-family: var(--c-serif-display);
  font-weight: 400;
  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 { grid-column: span 4; min-height: 280px; }
.c-club-grid .cell.c5 { grid-column: span 4; min-height: 280px; }
.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: 260px !important; }
  .c-club-grid .cell.c1 { grid-column: span 2 !important; min-height: 360px !important; }
}
@media (max-width: 560px) {
  .c-club-grid { grid-template-columns: 1fr; }
  .c-club-grid .cell { grid-column: span 1 !important; min-height: 240px !important; }
  .c-club-grid .cell.c1 { grid-column: span 1 !important; min-height: 280px !important; }
}

/* === Amenidades list === */
.c-amen-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line-paper);
}
@media (max-width: 760px) { .c-amen-list { grid-template-columns: 1fr 1fr; } }
.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 .it { 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-weight: 400;
  font-size: 19px;
  line-height: 1.2;
}
.c-amen-list .it .s {
  font-family: var(--c-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 6px;
}

/* === Condições e Cronograma === */
.c-conditions {
  margin-top: clamp(48px, 5vw, 72px);
  padding: clamp(28px, 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(24px, 2.8vw, 32px);
  line-height: 1.16;
  letter-spacing: 0.005em;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.c-conditions .sub {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
  color: var(--c-ink-2);
}
.c-conditions .terms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.c-conditions .terms-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  padding: 10px 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.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
.c-conditions .terms-list .val {
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.005em;
  color: var(--c-teal-deep);
}

/* === Equipe (Andora + M&B) === */
.c-sig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 760px) { .c-sig-grid { grid-template-columns: 1fr; } }
.c-sig {
  border-top: 1px solid var(--c-line);
  padding-top: 28px;
}
.c-section.dark .c-sig,
.c-section.deep .c-sig { border-top-color: var(--c-line-paper); }
.c-sig .role {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-bottom: 18px;
}
.c-sig h3 {
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px;
  letter-spacing: 0.005em;
}
.c-sig .desc {
  font-family: var(--c-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.86;
}

/* === FAQ === */
.c-faq-list { display: grid; gap: 4px; margin-top: 32px; }
.c-faq-item {
  border-top: 1px solid var(--c-line);
}
.c-section.dark .c-faq-item,
.c-section.deep .c-faq-item { border-top-color: var(--c-line-paper); }
.c-faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.c-section.dark .c-faq-item:last-child,
.c-section.deep .c-faq-item:last-child { border-bottom-color: var(--c-line-paper); }
.c-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: clamp(19px, 1.9vw, 24px);
  letter-spacing: 0.005em;
  line-height: 1.22;
}
.c-faq-q .ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
  margin-left: 16px;
  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); }
.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: 15px;
  line-height: 1.7;
}
.c-faq-a p { margin: 0 0 12px; max-width: 72ch; opacity: 0.9; }
.c-faq-item.open .c-faq-a {
  max-height: 1200px;
  padding-bottom: 24px;
}

/* === CTA Final === */
.c-cta {
  position: relative;
  min-height: 80vh;
  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);
}
.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.55) 0%, rgba(44, 94, 91, 0.86) 100%);
}
.c-cta .inner {
  max-width: 860px;
  margin: 0 auto;
}
.c-cta .eyebrow {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.9;
  color: var(--c-sand);
  margin-bottom: 22px;
  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;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
  text-wrap: balance;
  color: var(--c-cream);
}
.c-cta h2 em {
  font-style: italic;
  color: var(--c-sand);
}
.c-cta .sub {
  font-family: var(--c-sans);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  opacity: 0.92;
  max-width: 52ch;
  margin: 0 auto 36px;
}
.c-cta .wa-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 30px 20px 24px;
  background: #fff;
  color: var(--c-ink);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--c-sans);
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}
.c-cta .wa-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}
.c-cta .wa-card .wa-icon {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}
.c-cta .wa-card .lbl { display: flex; flex-direction: column; align-items: flex-start; }
.c-cta .wa-card .lbl .l {
  font-family: var(--c-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1a6e38;
}
.c-cta .wa-card .lbl .n {
  font-family: var(--c-serif-display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.005em;
  color: var(--c-ink);
  margin-top: 2px;
}
.c-cta .legal {
  margin-top: 26px;
  font-family: var(--c-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.74;
}

/* === Footer overrides (escopo .cyano) === */
.cyano footer {
  background: var(--c-teal-darker);
  color: var(--c-cream);
}
.cyano footer .row {
  padding: clamp(56px, 6vw, 90px) var(--c-pad) 32px;
  max-width: var(--c-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 760px) { .cyano footer .row { grid-template-columns: 1fr; } }
.cyano footer .brand-foot {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
  padding: 0;
}
.cyano footer .brand-foot .brand-foot-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.cyano footer h4 {
  font-family: var(--c-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.78;
  margin: 0 0 18px;
}
.cyano footer a {
  display: block;
  color: var(--c-cream);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.88;
  padding: 6px 0;
  transition: opacity .2s ease;
}
.cyano footer a:hover { opacity: 1; }
.cyano footer .legal {
  max-width: var(--c-maxw);
  margin: 0 auto;
  padding: 24px var(--c-pad);
  border-top: 1px solid var(--c-line-paper);
  font-family: var(--c-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.66;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}

/* === Dock WhatsApp === */
.cyano .dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.cyano .dock.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cyano .wa-fab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 18px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--c-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cyano .wa-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4); }
.cyano .wa-fab img.wa-icon {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}
.cyano .wa-fab::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: cwapulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes cwapulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 640px) {
  .cyano .dock { right: 18px; bottom: 18px; }
  .cyano .wa-fab {
    width: 60px; height: 60px; padding: 0;
    border-radius: 50%; justify-content: center; gap: 0;
  }
  .cyano .wa-fab .lbl { display: none; }
  .cyano .wa-fab img.wa-icon { width: 32px; height: 32px; }
}

/* Links inline em parágrafos */
.c-section .lead a,
.c-section p a,
.c-cta p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(91, 174, 171, 0.55);
  text-underline-offset: 3px;
  transition: text-decoration-color .25s ease;
}
.c-section.sand .lead a,
.c-section.sand p a,
.c-section.cream .lead a,
.c-section.cream p a {
  text-decoration-color: rgba(77, 141, 137, 0.55);
}
.c-section .lead a:hover,
.c-section p a:hover { text-decoration-color: currentColor; }

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.fade-in.in { opacity: 1; transform: none; }

/* Sobrescreve .lead global de styles.css */
.cyano .c-head .lead { color: inherit; font-family: var(--c-sans); font-style: normal; }
