:root {
  --cck-white: #f8fff9;
  --cck-white-soft: #edf8f0;
  --cck-black: #050806;
  --cck-black-2: #111714;
  --cck-text: #07110b;
  --cck-muted: #53635a;
  --cck-muted-2: #718078;
  --cck-chroma: #25f46f;
  --cck-chroma-strong: #02c957;
  --cck-chroma-soft: #baffcf;
  --cck-gold: #c99a2e;
  --cck-gold-light: #f0c45a;
  --cck-line: rgba(5, 8, 6, 0.12);
  --cck-line-strong: rgba(5, 8, 6, 0.22);
  --cck-shadow: rgba(5, 8, 6, 0.14);
  --cck-container: 1160px;
  --cck-radius-lg: 32px;
  --cck-radius-md: 22px;
  --cck-transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cck-text);
  background: var(--cck-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  color: var(--cck-black);
  background: var(--cck-chroma);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

#home,
#download,
#recursos,
#galeria,
#faq {
  scroll-margin-top: 18px;
}

.cck-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 244, 111, 0.28), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(5, 8, 6, 0.08), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(37, 244, 111, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f2fff5 42%, #ffffff 100%);
}

.cck-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(5, 8, 6, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 8, 6, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.cck-bg-orb {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  filter: blur(78px);
  opacity: 0.30;
  background: rgba(37, 244, 111, 0.48);
}

.cck-bg-orb-one {
  top: -150px;
  left: -130px;
}

.cck-bg-orb-two {
  right: -170px;
  bottom: -190px;
  background: rgba(5, 8, 6, 0.16);
}

.cck-container {
  width: min(var(--cck-container), calc(100% - 34px));
  margin: 0 auto;
}

/* Header e navegação */

.cck-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(5, 8, 6, 0.10);
  background: rgba(248, 255, 249, 0.82);
  backdrop-filter: blur(22px);
}

.cck-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 244, 111, 0.95), rgba(5, 8, 6, 0.28), transparent);
}

.cck-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cck-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cck-text);
  min-width: max-content;
}

.cck-brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: visible;
  border-color: transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.cck-brand-mark img {
  width: 64px;
  height: 64px;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  transform: translateY(-3px) translateZ(0);
  filter: saturate(1.04) contrast(1.03);
  backface-visibility: hidden;
}

.cck-brand-copy {
  display: grid;
  line-height: 1.05;
}

.cck-brand-copy strong {
  color: var(--cck-black);
  font-size: 15px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.cck-brand-copy small {
  margin-top: 5px;
  color: var(--cck-chroma-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cck-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.cck-nav-links a {
  position: relative;
  color: #26322b;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color var(--cck-transition), transform var(--cck-transition);
}

.cck-nav-links a:hover,
.cck-nav-links a:focus-visible {
  color: var(--cck-chroma-strong);
  transform: translateY(-1px);
}

.cck-nav-links .cck-nav-cta {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--cck-gold);
  background: transparent;
  box-shadow: none;
}

.cck-nav-links .cck-nav-cta:hover,
.cck-nav-links .cck-nav-cta:focus-visible {
  color: var(--cck-gold-light);
}

.cck-nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--cck-line);
  border-radius: 13px;
  background: rgba(37, 244, 111, 0.12);
  cursor: pointer;
  padding: 10px;
}

.cck-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--cck-black);
}

/* Componentes base */

.cck-hero-copy,
.cck-device-panel,
.cck-download-card,
.cck-feature-card,
.cck-faq-list details {
  border: 1px solid var(--cck-line);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 244, 111, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 255, 248, 0.76));
  box-shadow:
    0 24px 78px var(--cck-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.70) inset;
}

.cck-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cck-line);
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform var(--cck-transition),
    box-shadow var(--cck-transition),
    border-color var(--cck-transition),
    background var(--cck-transition),
    color var(--cck-transition);
}

.cck-button:hover {
  transform: translateY(-2px);
}

.cck-button-primary,
.cck-download-card .cck-button:not(.cck-button-disabled) {
  color: #031107;
  border-color: rgba(37, 244, 111, 0.70);
  background: linear-gradient(135deg, #25f46f 0%, #7dffaa 55%, #dcffe6 100%);
  box-shadow: 0 16px 40px rgba(37, 244, 111, 0.24);
}

.cck-button-primary:hover,
.cck-download-card .cck-button:not(.cck-button-disabled):hover {
  color: #031107;
  box-shadow: 0 20px 58px rgba(37, 244, 111, 0.34);
}

.cck-button-secondary {
  color: var(--cck-black);
  border-color: rgba(5, 8, 6, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.cck-button-secondary:hover {
  color: var(--cck-chroma-strong);
  border-color: rgba(37, 244, 111, 0.46);
}

.cck-button-disabled {
  color: var(--cck-muted-2);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.60);
}

.cck-button-disabled:hover {
  transform: none;
}

/* Hero */

.cck-hero {
  padding: 32px 0 56px;
}

.cck-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.cck-hero-copy,
.cck-device-panel {
  height: 100%;
  min-height: clamp(540px, 50vw, 580px);
  align-self: stretch;
}

.cck-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding:
    clamp(18px, 2.2vw, 28px)
    clamp(26px, 4vw, 50px)
    clamp(26px, 3vw, 38px);
  border-radius: var(--cck-radius-lg);
}

.cck-status {
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(30px, 3.4vw, 46px);
  padding: 8px 12px;
  border: 1px solid rgba(37, 244, 111, 0.42);
  border-radius: 999px;
  color: #063917;
  background:
    linear-gradient(180deg, rgba(37, 244, 111, 0.22), rgba(37, 244, 111, 0.07)),
    rgba(255, 255, 255, 0.78);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cck-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cck-chroma);
  box-shadow:
    0 0 8px rgba(37, 244, 111, 0.90),
    0 0 18px rgba(37, 244, 111, 0.42);
}

.cck-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.060em;
}

.cck-hero-copy p {
  max-width: 620px;
  margin: clamp(42px, 4.4vw, 58px) 0 0;
  color: var(--cck-muted);
  font-size: 16px;
  line-height: 1.72;
}

.cck-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(48px, 5vw, 72px);
}

.cck-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: clamp(28px, 3.2vw, 42px);
}

.cck-hero-stats div {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(5, 8, 6, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.cck-hero-stats strong {
  color: var(--cck-chroma-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.cck-hero-stats span {
  color: var(--cck-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cck-device-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 16px;
  border-radius: var(--cck-radius-lg);
  overflow: hidden;
}

.cck-device-top,
.cck-device-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px 14px;
}

.cck-device-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(5, 8, 6, 0.18);
}

.cck-device-screen {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(5, 8, 6, 0.12);
  border-radius: 24px;
  background: #ffffff;
}

.cck-device-screen img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.cck-device-footer {
  justify-content: center;
  padding: 10px 2px 2px;
}

.cck-device-footer span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(37, 244, 111, 0.26);
  border-radius: 999px;
  color: #063917;
  background: rgba(37, 244, 111, 0.12);
  font-size: 11px;
  font-weight: 850;
}

.cck-hero-banner-carousel {
  isolation: isolate;
  min-height: 0;
  aspect-ratio: 4 / 5;
  background: #f8fff9;
}

.cck-hero-banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: cckHeroBannerFade 15s infinite;
}

.cck-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.01);
}

.cck-hero-banner-one {
  animation-delay: 0s;
}

.cck-hero-banner-two {
  animation-delay: 5s;
}

.cck-hero-banner-three {
  animation-delay: 10s;
}

.cck-hero-banner-carousel:hover .cck-hero-banner {
  animation-play-state: paused;
}

@keyframes cckHeroBannerFade {
  0% {
    opacity: 0;
    transform: scale(1.018);
  }

  7%,
  31% {
    opacity: 1;
    transform: scale(1);
  }

  39%,
  100% {
    opacity: 0;
    transform: scale(1.018);
  }
}

/* Seções */

.cck-download-section,
.cck-section,
.cck-gallery-section {
  position: relative;
  padding: 70px 0;
}

.cck-download-section::before,
.cck-section::before,
.cck-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1080px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(37, 244, 111, 0.58), rgba(5, 8, 6, 0.18), transparent);
}

#download.cck-download-section,
#recursos.cck-section,
#galeria.cck-gallery-section {
  padding-top: 48px;
}

#faq.cck-section {
  padding-top: 34px;
}

.cck-section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.cck-section-head > span,
.cck-download-card span,
.cck-feature-card span {
  color: var(--cck-chroma-strong);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cck-section-head h2 {
  margin: 14px 0;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.cck-section-head p {
  margin: 0;
  color: var(--cck-muted);
  font-size: 15.8px;
  line-height: 1.68;
}

/* Download */

.cck-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.cck-download-card {
  min-height: 300px;
  height: 100%;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: stretch;
  gap: 18px;
  padding: 24px;
  border-radius: var(--cck-radius-md);
}

.cck-download-card-featured {
  border-color: rgba(37, 244, 111, 0.44);
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 244, 111, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 255, 245, 0.86));
}

.cck-download-card-disabled {
  opacity: 0.52;
  filter: grayscale(0.45);
}

.cck-download-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 244, 111, 0.34);
  border-radius: 20px;
  color: var(--cck-chroma-strong);
  background: rgba(37, 244, 111, 0.12);
}

.cck-download-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cck-download-icon-android svg path {
  fill: none;
}

.cck-download-card > div:not(.cck-download-icon) {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(84px, 1fr) auto;
  align-content: start;
  row-gap: 12px;
}

.cck-download-card > div:not(.cck-download-icon) > span {
  min-height: 16px;
  display: inline-flex;
  align-items: center;
}

.cck-download-card h3 {
  min-height: 36px;
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.05;
}

.cck-download-card p {
  min-height: 84px;
  margin: 0;
  color: var(--cck-muted);
  font-size: 14.8px;
  line-height: 1.62;
}

.cck-download-card .cck-button {
  position: relative;
  left: -41px;
  width: min(100%, 220px);
  justify-self: center;
  margin-top: 6px;
}

.cck-download-note {
  min-height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 9px 14px;
  border: 1px solid rgba(37, 244, 111, 0.34);
  border-radius: 999px;
  color: #063917;
  background: rgba(37, 244, 111, 0.12);
  font-size: 12.5px;
  font-weight: 850;
  text-align: center;
}

.cck-download-note.is-visible {
  display: flex;
}

/* Recursos */

.cck-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cck-feature-card {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  align-content: start;
  padding: 24px;
  border-radius: var(--cck-radius-md);
  text-align: center;
}

.cck-feature-card span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(5, 8, 6, 0.12);
  border-radius: 999px;
  color: #031107;
  background: linear-gradient(135deg, #25f46f, #dcffe6);
}

.cck-feature-card h3 {
  margin: 16px 0 10px;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
}

.cck-feature-card p {
  margin: 0;
  color: var(--cck-muted);
  font-size: 14.6px;
  line-height: 1.60;
}

/* Galeria */

.cck-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cck-gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(5, 8, 6, 0.12);
  border-radius: var(--cck-radius-md);
  background: #ffffff;
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(5, 8, 6, 0.12);
}

.cck-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.cck-gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(37, 244, 111, 0.36);
  border-radius: 999px;
  color: #063917;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cck-gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.04) contrast(1.03);
}

/* FAQ */

.cck-faq-shell {
  max-width: 900px;
  display: grid;
  gap: 28px;
}

#faq .cck-section-head {
  max-width: 820px;
  display: grid;
  gap: 28px;
  margin: -18px auto 0;
  text-align: center;
}

#faq .cck-section-head > span {
  display: block;
  margin: 0;
  color: var(--cck-chroma-strong);
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#faq .cck-section-head h2 {
  margin: 0;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

#faq .cck-section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--cck-muted);
  font-size: 16px;
  line-height: 1.68;
}

.cck-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.cck-faq-list details {
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.cck-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--cck-black);
  font-weight: 900;
}

.cck-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--cck-muted);
  font-size: 14.8px;
  line-height: 1.64;
}

/* Rodapé */

.cck-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(5, 8, 6, 0.10);
  background: rgba(255, 255, 255, 0.62);
}

.cck-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--cck-muted-2);
  font-size: 13px;
}

.cck-footer a {
  color: var(--cck-chroma-strong);
  font-weight: 850;
}

/* Modal da galeria */

.cck-modal,
.cck-support-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cck-modal {
  z-index: 200;
}

.cck-support-modal {
  z-index: 220;
}

.cck-modal.is-open,
.cck-support-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cck-modal-backdrop,
.cck-support-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  cursor: pointer;
  background: rgba(5, 8, 6, 0.58);
  backdrop-filter: blur(10px);
}

.cck-modal-backdrop {
  cursor: zoom-out;
}

.cck-modal-box {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 38px));
  max-height: min(78vh, 720px);
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(37, 244, 111, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 244, 111, 0.18), transparent 34%),
    #ffffff;
  box-shadow: 0 34px 110px rgba(5, 8, 6, 0.24);
}

.cck-modal-box > span {
  color: var(--cck-chroma-strong);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cck-modal-box img {
  width: 100%;
  max-height: calc(min(78vh, 720px) - 72px);
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.cck-modal-close,
.cck-support-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--cck-black);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.cck-modal-close {
  border: 1px solid rgba(37, 244, 111, 0.38);
}

.cck-support-close {
  border: 1px solid rgba(201, 154, 46, 0.34);
}

/* Modal de suporte */

.cck-support-box {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 38px));
  max-height: min(86vh, 760px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(201, 154, 46, 0.42);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 244, 111, 0.20), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(201, 154, 46, 0.20), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 249, 0.96));
  box-shadow: 0 34px 110px rgba(5, 8, 6, 0.26);
  scrollbar-width: thin;
  scrollbar-color: var(--cck-gold) rgba(5, 8, 6, 0.08);
}

.cck-support-box::-webkit-scrollbar {
  width: 7px;
}

.cck-support-box::-webkit-scrollbar-track {
  margin: 18px 0;
  border-radius: 999px;
  background: rgba(5, 8, 6, 0.08);
}

.cck-support-box::-webkit-scrollbar-thumb {
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cck-gold-light) 0%, var(--cck-gold) 100%);
}

.cck-support-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffd978 0%, #d9a93b 100%);
}

.cck-support-box > span {
  color: var(--cck-gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cck-support-box h2 {
  margin: 0;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.cck-support-box > p {
  max-width: 520px;
  margin: 0;
  color: var(--cck-muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.cck-download-choice-box {
  width: min(720px, calc(100vw - 38px));
}

.cck-download-choice-options {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.cck-download-choice-option {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(37, 244, 111, 0.30);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 0%, rgba(37, 244, 111, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(5, 8, 6, 0.10);
  transition:
    transform var(--cck-transition),
    border-color var(--cck-transition),
    box-shadow var(--cck-transition);
}

.cck-download-choice-option:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 244, 111, 0.58);
  box-shadow: 0 24px 62px rgba(37, 244, 111, 0.18);
}

.cck-download-choice-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 244, 111, 0.34);
  border-radius: 18px;
  color: var(--cck-chroma-strong);
  background: rgba(37, 244, 111, 0.12);
}

.cck-download-choice-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cck-download-choice-option small {
  display: block;
  margin-bottom: 4px;
  color: var(--cck-gold);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cck-download-choice-option strong {
  display: block;
  color: var(--cck-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.cck-download-choice-option em {
  display: block;
  margin-top: 8px;
  color: var(--cck-muted);
  font-size: 13.5px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

.cck-download-choice-alert {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(194, 141, 37, 0.36);
  border-radius: 14px;
  background: rgba(194, 141, 37, 0.10);
  color: #6f4f10;
  font-size: 12.5px;
  font-weight: 750;
}

.cck-support-form {
  display: grid;
  gap: 13px;
  margin-top: 4px;
}

.cck-support-form label {
  display: grid;
  gap: 7px;
}

.cck-support-form label > span {
  color: var(--cck-black);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cck-support-form input,
.cck-support-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 8, 6, 0.14);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--cck-text);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition:
    border-color var(--cck-transition),
    box-shadow var(--cck-transition),
    background var(--cck-transition);
}

.cck-support-form textarea {
  resize: vertical;
  min-height: 126px;
}

.cck-support-form input:focus,
.cck-support-form textarea:focus {
  border-color: rgba(37, 244, 111, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 244, 111, 0.12);
}

.cck-support-form .cck-button {
  width: min(100%, 260px);
  justify-self: center;
  margin-top: 6px;
}

.cck-support-form .cck-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.cck-support-message {
  min-height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(37, 244, 111, 0.34);
  border-radius: 999px;
  color: #063917;
  background: rgba(37, 244, 111, 0.12);
  font-size: 12.5px;
  font-weight: 850;
  text-align: center;
}

.cck-support-message.is-visible {
  display: flex;
}

/* Responsivo */

@media (prefers-reduced-motion: reduce) {
  .cck-hero-banner {
    animation: none;
  }

  .cck-hero-banner-one {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .cck-hero-grid,
  .cck-download-grid,
  .cck-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cck-hero-copy,
  .cck-device-panel {
    height: auto;
    min-height: auto;
    grid-column: span 2;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 14px;
  }

  #home,
  #download,
  #recursos,
  #galeria,
  #faq {
    scroll-margin-top: 14px;
  }

  #download.cck-download-section,
  #recursos.cck-section,
  #galeria.cck-gallery-section {
    padding-top: 42px;
  }

  #faq.cck-section {
    padding-top: 30px;
  }

  .cck-nav-toggle {
    display: block;
  }

  .cck-nav-links {
    position: absolute;
    top: 78px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--cck-line);
    border-radius: 0 0 22px 22px;
    background: rgba(248, 255, 249, 0.96);
    box-shadow: 0 30px 80px rgba(5, 8, 6, 0.16);
  }

  .cck-nav-links.is-open {
    display: flex;
  }

  .cck-nav-links a,
  .cck-nav-links .cck-nav-cta {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
  }

  .cck-hero {
    padding-top: 24px;
    padding-bottom: 46px;
  }

  .cck-hero-grid,
  .cck-download-grid,
  .cck-feature-grid,
  .cck-gallery-grid {
    grid-template-columns: 1fr;
  }

  .cck-hero-copy,
  .cck-device-panel {
    grid-column: auto;
  }

  .cck-hero-copy {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .cck-status {
    margin-bottom: 28px;
  }

  .cck-hero-copy p {
    margin-top: 36px;
  }

  .cck-hero-actions {
    margin-top: 42px;
  }

  .cck-hero-stats {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .cck-button {
    width: 100%;
  }

  .cck-device-panel {
    padding: 14px;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 300px;
  }

  .cck-hero-banner-carousel {
    aspect-ratio: 4 / 5;
  }

  .cck-download-card {
    grid-template-columns: 1fr;
  }

  .cck-download-card > div:not(.cck-download-icon) {
    grid-template-rows: auto auto auto auto;
  }

  .cck-download-card h3,
  .cck-download-card p {
    min-height: 0;
  }

  .cck-download-card .cck-button {
    left: 0;
    width: min(100%, 260px);
  }

  #faq .cck-faq-shell,
  #faq .cck-section-head {
    gap: 24px;
  }

  #faq .cck-section-head {
    margin-top: -10px;
  }
}

@media (max-width: 540px) {
  .cck-container {
    width: min(100% - 26px, var(--cck-container));
  }

  .cck-brand-copy strong {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .cck-brand-copy small {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .cck-brand-mark {
    width: 54px;
    height: 54px;
  }

  .cck-brand-mark img {
    width: 50px;
    height: 50px;
  }

  .cck-hero-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .cck-hero-copy,
  .cck-device-panel,
  .cck-download-card,
  .cck-feature-card,
  .cck-gallery-item {
    border-radius: 22px;
  }

  .cck-footer-grid {
    justify-content: center;
    text-align: center;
  }

  .cck-support-modal {
    padding: 14px;
  }

  .cck-support-box {
    width: calc(100vw - 28px);
    border-radius: 24px;
  }

  .cck-download-choice-option {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cck-download-choice-icon {
    justify-self: center;
  }

  .cck-support-form .cck-button {
    width: 100%;
  }
}


/* Ajuste responsivo para celulares, tablets, desktops grandes e TVs */

@media (min-width: 1440px) {
  :root {
    --cck-container: 1320px;
  }

  .cck-hero {
    padding-top: 42px;
    padding-bottom: 70px;
  }

  .cck-hero-copy,
  .cck-device-panel {
    min-height: clamp(600px, 44vw, 660px);
  }

  .cck-hero-copy h1 {
    font-size: clamp(78px, 5.2vw, 98px);
  }

  .cck-hero-copy p {
    max-width: 720px;
    font-size: 17.2px;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 455px;
  }

  .cck-section-head {
    max-width: 880px;
  }

  .cck-section-head h2 {
    font-size: clamp(48px, 3.8vw, 66px);
  }

  .cck-section-head p {
    font-size: 16.8px;
  }

  .cck-gallery-item,
  .cck-gallery-item img {
    min-height: 260px;
  }
}

@media (min-width: 1800px) {
  :root {
    --cck-container: 1520px;
  }

  .cck-nav {
    min-height: 88px;
  }

  .cck-nav-links a {
    font-size: 13.2px;
  }

  .cck-hero-grid {
    gap: 24px;
  }

  .cck-hero-copy,
  .cck-device-panel {
    min-height: clamp(660px, 40vw, 740px);
  }

  .cck-hero-copy {
    padding-left: clamp(48px, 4vw, 72px);
    padding-right: clamp(48px, 4vw, 72px);
  }

  .cck-hero-copy h1 {
    font-size: clamp(92px, 5vw, 118px);
  }

  .cck-hero-copy p {
    max-width: 780px;
    font-size: 18.2px;
    line-height: 1.78;
  }

  .cck-button {
    min-height: 56px;
    padding: 15px 24px;
    font-size: 15px;
  }

  .cck-hero-stats div {
    min-height: 108px;
  }

  .cck-hero-stats strong {
    font-size: 38px;
  }

  .cck-device-panel {
    padding: 20px;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 520px;
  }

  .cck-download-section,
  .cck-section,
  .cck-gallery-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  #download.cck-download-section,
  #recursos.cck-section,
  #galeria.cck-gallery-section {
    padding-top: 64px;
  }

  #faq.cck-section {
    padding-top: 46px;
  }

  .cck-download-card,
  .cck-feature-card {
    padding: 30px;
  }

  .cck-feature-card {
    min-height: 280px;
  }

  .cck-gallery-item,
  .cck-gallery-item img {
    min-height: 310px;
  }
}

@media (min-width: 2400px) {
  :root {
    --cck-container: 1680px;
  }

  .cck-hero-copy,
  .cck-device-panel {
    min-height: 780px;
  }

  .cck-hero-copy h1 {
    font-size: clamp(104px, 4.8vw, 132px);
  }

  .cck-hero-copy p {
    max-width: 860px;
    font-size: 19.4px;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 590px;
  }

  .cck-section-head h2 {
    font-size: clamp(62px, 3.2vw, 82px);
  }

  .cck-section-head p {
    font-size: 18px;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .cck-hero-grid {
    grid-template-columns: 0.98fr 1.02fr;
    align-items: stretch;
  }

  .cck-hero-copy,
  .cck-device-panel {
    grid-column: auto;
    min-height: 540px;
  }

  .cck-hero-copy {
    padding: 28px;
  }

  .cck-hero-copy h1 {
    font-size: clamp(52px, 5.8vw, 66px);
  }

  .cck-hero-copy p {
    margin-top: 32px;
    font-size: 15.2px;
    line-height: 1.68;
  }

  .cck-hero-actions {
    margin-top: 34px;
  }

  .cck-hero-stats {
    gap: 8px;
    padding-top: 24px;
  }

  .cck-hero-stats div {
    min-height: 84px;
    padding: 10px;
  }

  .cck-hero-stats strong {
    font-size: 28px;
  }

  .cck-hero-stats span {
    font-size: 10px;
  }

  .cck-device-panel {
    padding: 14px;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 380px;
  }
}

@media (min-width: 761px) and (max-width: 899px) {
  .cck-hero-copy,
  .cck-device-panel {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .cck-download-grid,
  .cck-feature-grid {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .cck-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cck-gallery-item,
  .cck-gallery-item img {
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  .cck-container {
    width: min(100% - 22px, var(--cck-container));
  }

  .cck-nav {
    min-height: 72px;
  }

  .cck-brand {
    gap: 8px;
  }

  .cck-brand-copy strong {
    max-width: 185px;
    font-size: 11.8px;
  }

  .cck-brand-copy small {
    font-size: 9px;
  }

  .cck-nav-links {
    top: 72px;
    left: 11px;
    right: 11px;
  }

  .cck-hero-copy {
    padding: 22px;
  }

  .cck-status {
    font-size: 9.6px;
    letter-spacing: 0.10em;
  }

  .cck-hero-copy h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .cck-hero-copy p {
    margin-top: 28px;
    font-size: 14.8px;
  }

  .cck-hero-actions {
    margin-top: 34px;
  }

  .cck-device-screen,
  .cck-device-screen img {
    min-height: 260px;
  }

  .cck-section-head h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .cck-download-card,
  .cck-feature-card {
    padding: 20px;
  }

  .cck-support-box {
    max-height: min(88vh, 680px);
    padding: 22px;
  }
}

.cck-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 16px;
}

.cck-footer-links a {
  color: rgba(255, 245, 221, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cck-footer-links a:hover {
  color: var(--cck-gold);
}


/* Ajuste pontual - links do rodapé CCK sem alterar o rodapé antigo */
.cck-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 30px;
}

.cck-footer-links a {
  color: #B8860B;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--cck-transition), opacity var(--cck-transition);
}

.cck-footer-links a:hover {
  color: #7A4F00;
  opacity: 0.92;
}

@media (max-width: 720px) {
  .cck-footer-links {
    justify-content: center;
    gap: 12px 24px;
  }
}


/* Ajuste pontual - mensagens do suporte CCK no próprio formulário */
.cck-support-message.is-loading {
  border-color: rgba(240, 196, 90, 0.36);
  color: #6f4d00;
  background: rgba(240, 196, 90, 0.12);
}

.cck-support-message.is-success {
  border-color: rgba(37, 244, 111, 0.42);
  color: #063917;
  background: rgba(37, 244, 111, 0.14);
}

.cck-support-message.is-error {
  border-color: rgba(255, 117, 117, 0.42);
  color: #6e1111;
  background: rgba(255, 117, 117, 0.12);
}
