/* ============================================================
   Cauê Zarzour — caue.zarzour.com.br
   Hub de criador de conteúdo. Marca: ciano → azul + polaroid.
   ============================================================ */

:root {
  --cyan:      #18C5E0;
  --cyan-2:    #2ED8EE;
  --blue:      #1466E0;
  --blue-deep: #0B3A99;
  --ink:       #0E2440;
  --ink-soft:  #4A5C77;
  --line:      #E4EDF6;
  --bg:        #F3F9FE;
  --white:     #FFFFFF;
  --sun:       #FFC83D;

  --grad: linear-gradient(115deg, var(--cyan) 0%, var(--blue) 70%, var(--blue-deep) 100%);
  --grad-soft: linear-gradient(115deg, #E7FAFE 0%, #EAF2FF 100%);

  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --shadow:   0 18px 50px -22px rgba(13, 50, 110, .35);
  --shadow-s: 0 8px 26px -14px rgba(13, 50, 110, .30);

  --maxw: 1140px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Sora", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -.02em; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.1rem, 5vw, 2rem); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; }
.btn--solid { background: var(--grad); color: #fff; box-shadow: var(--shadow-s); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(20,102,224,.6); }
.btn--ghost { background: rgba(255,255,255,.65); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--cyan); color: var(--blue); }
.btn--lg { padding: .95rem 1.7rem; font-size: 1.05rem; }

/* ---------- Eyebrow / cabeçalhos de seção ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(24,197,224,.18); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,.95); }
.eyebrow--light .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 800; }
.section-sub { color: var(--ink-soft); margin-top: .7rem; font-size: 1.05rem; }

/* ---------- Marca ---------- */
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad); color: #fff; font-family: var(--display); font-weight: 800;
  font-size: .95rem; letter-spacing: -.03em; box-shadow: var(--shadow-s);
}
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.brand__name b { font-weight: 800; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem clamp(1.1rem, 5vw, 2rem);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(13,50,110,.5); }
.nav { margin-left: auto; display: flex; gap: 1.6rem; }
.nav a {
  font-weight: 600; font-size: .96rem; color: var(--ink-soft); position: relative; padding: .2rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--grad); border-radius: 2px; transition: width .22s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header__cta { margin-left: .4rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-soft);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: 0;
}
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 0; pointer-events: none; }
.blob--1 { width: 420px; height: 420px; top: -160px; right: -120px; background: radial-gradient(circle at 30% 30%, var(--cyan), transparent 70%); }
.blob--2 { width: 380px; height: 380px; bottom: -120px; left: -140px; background: radial-gradient(circle at 60% 40%, #9ad3ff, transparent 70%); }

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem); font-weight: 800; color: var(--ink);
  margin: .2rem 0 1.1rem;
}
.hero__title em {
  font-style: normal; position: relative; white-space: nowrap;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--ink-soft); max-width: 32rem; }
.hero__lead strong { color: var(--ink); font-weight: 700; }

.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 1.8rem; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.8); border: 1px solid var(--line);
  padding: .45rem .85rem; border-radius: 999px; font-size: .9rem; color: var(--ink-soft);
  box-shadow: var(--shadow-s);
}
.hero__chips .ico { width: 1.1em; height: 1.1em; fill: var(--blue); }
.hero__chips b { color: var(--ink); font-weight: 800; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ----- Polaroid + chips flutuantes ----- */
.hero__media { position: relative; display: grid; place-items: center; }
.polaroid {
  background: #fff; padding: 14px 14px 0; border-radius: 8px;
  box-shadow: var(--shadow); transform: rotate(-3deg);
  transition: transform .4s ease; max-width: 340px; width: 100%;
}
.hero__media:hover .polaroid { transform: rotate(-1.5deg) translateY(-4px); }
.polaroid img { border-radius: 4px; aspect-ratio: 1/1; object-fit: cover; object-position: 50% 38%; transform: scale(1.18); }
.polaroid figcaption {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  text-align: center; padding: .85rem .5rem 1.1rem; font-size: 1.05rem;
}
.polaroid figcaption span { display: block; font-weight: 500; font-size: .82rem; color: var(--ink-soft); margin-top: .15rem; }

.float-chip {
  position: absolute; background: #fff; border-radius: 14px; padding: .55rem .9rem;
  font-size: .82rem; color: var(--ink-soft); box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1.1; animation: floaty 5s ease-in-out infinite;
}
.float-chip b { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--blue); }
.float-chip--a { top: 6%; left: -4%; animation-delay: .2s; }
.float-chip--b { bottom: 16%; right: -6%; animation-delay: 1.1s; }
.float-chip--c { bottom: -3%; left: 8%; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ----- Marquee ----- */
.marquee {
  position: relative; z-index: 1; overflow: hidden;
  background: var(--grad); color: #fff; padding: .8rem 0;
  font-family: var(--display); font-weight: 700; letter-spacing: .02em;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: scrollx 32s linear infinite; }
.marquee__track span { white-space: nowrap; padding-right: 1rem; font-size: 1.05rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   NÚMEROS
   ============================================================ */
.stats { padding-top: clamp(2.8rem, 6vw, 4rem); padding-bottom: clamp(2.8rem, 6vw, 4rem); }
.stats__grid {
  list-style: none; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
.stats__grid li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1rem; box-shadow: var(--shadow-s);
}
.stats__num {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats__label { font-size: .9rem; color: var(--ink-soft); margin-top: .35rem; display: block; }

/* ============================================================
   CANAIS
   ============================================================ */
.channels__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.channel {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem 1.5rem; box-shadow: var(--shadow-s);
  display: flex; flex-direction: column; gap: .35rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.channel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--plat, var(--grad));
}
.channel:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.channel__ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--plat, var(--grad)); margin-bottom: .8rem; box-shadow: var(--shadow-s);
}
.channel__ico svg { width: 30px; height: 30px; fill: #fff; }
.channel__plat { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.channel__handle { color: var(--ink-soft); font-size: .92rem; }
.channel__count { margin-top: .4rem; font-size: .95rem; color: var(--ink-soft); }
.channel__count b { font-family: var(--display); font-size: 1.25rem; color: var(--ink); font-weight: 800; }
.channel__cta {
  margin-top: 1.1rem; font-family: var(--display); font-weight: 700; font-size: .98rem;
  color: var(--blue); display: inline-flex; align-items: center; gap: .4rem;
}
.channel__cta span { transition: transform .2s ease; }
.channel:hover .channel__cta span { transform: translateX(4px); }

.channel--tiktok   { --plat: linear-gradient(135deg, #25F4EE 0%, #111 55%, #FE2C55 100%); }
.channel--tiktok   .channel__cta { color: #111; }
.channel--instagram{ --plat: linear-gradient(120deg, #F58529, #DD2A7B 45%, #8134AF 75%, #515BD4); }
.channel--instagram .channel__cta { color: #C42A78; }
.channel--youtube  { --plat: linear-gradient(135deg, #FF4E45, #FF0033); }
.channel--youtube  .channel__cta { color: #E60029; }

/* linha secundária */
.channels__row {
  max-width: var(--maxw); margin: 1.2rem auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem;
}
.chiplink {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .65rem 1.2rem; font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  box-shadow: var(--shadow-s); transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.chiplink .ico { width: 1.15em; height: 1.15em; fill: var(--blue); }
.chiplink:hover { transform: translateY(-2px); color: var(--ink); border-color: var(--cyan); }

/* ============================================================
   CONTEÚDO (pilares)
   ============================================================ */
.pillars { background: #fff; }
.pillars__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.pillar {
  background: var(--grad-soft); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.4rem; transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar__emoji {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  background: #fff; font-size: 1.7rem; box-shadow: var(--shadow-s); margin-bottom: 1rem;
}
.pillar h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: .45rem; }
.pillar p { font-size: .95rem; color: var(--ink-soft); }

/* ============================================================
   EM DESTAQUE (vídeos)
   ============================================================ */
.featured__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.video { display: flex; flex-direction: column; gap: .7rem; }
.video__thumb {
  position: relative; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-s);
  aspect-ratio: 16/10; background: #d7e6f5;
}
.video__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video:hover .video__thumb img { transform: scale(1.07); }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,0,51,.92); display: grid; place-items: center; box-shadow: 0 8px 22px -8px rgba(0,0,0,.5);
  transition: transform .2s ease, background .2s ease;
}
.video__play::before { content: ""; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.video:hover .video__play { transform: scale(1.12); }
.video__title { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1.25; }
.featured__more { text-align: center; margin-top: 2.4rem; }

/* ============================================================
   PRODUTOS
   ============================================================ */
.products { background: #fff; }
.products__card {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--grad-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3rem); display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 2rem; align-items: center; box-shadow: var(--shadow-s);
}
.products__text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: .8rem; }
.products__text p { color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.4rem; }
.products__note { font-size: .85rem; color: var(--ink-soft); margin-top: .9rem; }
.products__deco { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.products__deco .tag {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1rem; font-weight: 600; font-size: .95rem; color: var(--ink);
  box-shadow: var(--shadow-s);
}

/* ============================================================
   PARCERIAS
   ============================================================ */
.partner { background: var(--grad); position: relative; overflow: hidden; }
.partner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,.18), transparent 45%);
  pointer-events: none;
}
.partner__inner { position: relative; max-width: 680px; margin: 0 auto; text-align: center; color: #fff; }
.partner__inner h2 { font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 800; margin-bottom: .9rem; }
.partner__lead { font-size: 1.1rem; color: rgba(255,255,255,.92); margin-bottom: 1.8rem; }
.partner__lead strong { color: #fff; }
.partner .btn--solid {
  background: #fff; color: var(--blue); border: none; box-shadow: 0 14px 34px -14px rgba(0,0,0,.45);
}
.partner .btn--solid .ico { fill: var(--blue); }
.partner .btn--solid:hover { transform: translateY(-2px); background: #fff; }
.partner__note { margin-top: 1.1rem; font-size: .85rem; color: rgba(255,255,255,.8); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #fff; padding: clamp(2.6rem, 6vw, 3.6rem) 1.2rem; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; display: grid; gap: 1rem; justify-items: center; }
.brand--footer .brand__name { color: #fff; }
.site-footer__tag { color: rgba(255,255,255,.62); font-size: .98rem; }
.social { display: flex; gap: .7rem; }
.social a {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: background .2s ease, transform .2s ease;
}
.social a svg { width: 20px; height: 20px; fill: #fff; }
.social a:hover { background: var(--grad); transform: translateY(-3px); }
.site-footer__copy { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: .4rem; }

/* ============================================================
   BOTÃO FLUTUANTE
   ============================================================ */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 60;
  width: 50px; height: 50px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .25s ease;
}
.to-top svg { width: 24px; height: 24px; fill: #fff; }
.to-top.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* ============================================================
   REVEAL (scroll)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 2; }
  .hero__media { order: 1; margin-bottom: 1rem; }
  .eyebrow, .hero__chips, .hero__cta { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .channels__grid { grid-template-columns: 1fr; max-width: 460px; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
  .products__card { grid-template-columns: 1fr; text-align: center; }
  .products__text p { margin-inline: auto; }
  .products__deco { margin-top: .5rem; }
}

@media (max-width: 560px) {
  .nav { display: none; }
  .float-chip--a { top: 2%; left: 0; }
  .float-chip--b { right: 0; }
  .float-chip--c { left: 2%; }
  .pillars__grid, .featured__grid { grid-template-columns: 1fr; }
  .stats__grid { gap: .7rem; }
  .btn--lg { width: 100%; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
