/* ═══════════════════════════════════════════════════
   COZTA Landing Page — style.css
   Tema Dark (padrão) + Light via [data-theme="light"]
   Paleta: Ciano #29ABE2 (CMYK 78-18-0-0)
   Fontes: Outfit (display) + DM Sans (corpo)
═══════════════════════════════════════════════════ */

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══════════════════════════════════════════════════
   TEMA DARK (padrão)
══════════════════════════════════════════════════ */
:root {
  --bg:          #080808;
  --bg-mid:      #0f0f0f;
  --bg-light:    #161616;
  --bg-card:     #111111;
  --cyan:        #29ABE2;
  --cyan-soft:   #50BFEA;
  --cyan-deep:   #1A87B8;
  --cyan-dim:    rgba(41,171,226,0.12);
  --cyan-border: rgba(41,171,226,0.28);
  --text:        #efefef;
  --text-muted:  #848484;
  --text-dim:    #454545;
  --white:       #ffffff;
  --black:       #000000;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.13);
  --glass:       rgba(255,255,255,0.035);
  --glass-hover: rgba(255,255,255,0.065);
  --nav-scroll-bg:    rgba(8,8,8,0.92);
  --nav-mobile-bg:    rgba(8,8,8,0.97);
  --logo-src:    url('assets/logo-cozta-branca.png');
  --orb-opacity: 1;
  --shadow-card: 0 24px 60px rgba(0,0,0,0.5);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --trans:       0.25s ease;
  --trans-slow:  0.45s cubic-bezier(0.16,1,0.3,1);
}

/* ══════════════════════════════════════════════════
   TEMA LIGHT
══════════════════════════════════════════════════ */
[data-theme="light"] {
  --bg:          #f5f5f5;
  --bg-mid:      #eeeeee;
  --bg-light:    #e8e8e8;
  --bg-card:     #ffffff;
  --cyan:        #1A87B8;
  --cyan-soft:   #29ABE2;
  --cyan-deep:   #136a93;
  --cyan-dim:    rgba(26,135,184,0.09);
  --cyan-border: rgba(26,135,184,0.25);
  --text:        #111111;
  --text-muted:  #555555;
  --text-dim:    #999999;
  --white:       #ffffff;
  --black:       #000000;
  --border:      rgba(0,0,0,0.08);
  --border-mid:  rgba(0,0,0,0.14);
  --glass:       rgba(0,0,0,0.03);
  --glass-hover: rgba(0,0,0,0.055);
  --nav-scroll-bg:  rgba(245,245,245,0.93);
  --nav-mobile-bg:  rgba(245,245,245,0.98);
  --orb-opacity: 0.55;
  --shadow-card: 0 12px 40px rgba(0,0,0,0.1);
}

/* Transição suave ao trocar de tema */
body {
  transition: background var(--trans-slow), color var(--trans-slow);
}

/* ── Base ────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.desktop-only { display: none; }
@media (min-width: 900px) { .desktop-only { display: inline; } }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
  border-radius: 8px; transition: all var(--trans);
  white-space: nowrap; letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--cyan); color: var(--white);
  box-shadow: 0 0 0 0 rgba(41,171,226,0);
}
[data-theme="light"] .btn--primary { color: var(--white); }
.btn--primary:hover {
  background: var(--cyan-soft); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(41,171,226,0.4);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn--ghost:hover {
  border-color: var(--cyan); color: var(--cyan);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white); color: var(--black);
  font-family: 'Outfit', sans-serif; font-weight: 700;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn--full { width: 100%; }

/* ── Section common ──────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.section-label--light { color: var(--cyan-soft); }
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.15; color: var(--text);
  margin-bottom: 16px;
}
[data-theme="light"] .section-title { color: var(--black); }
.section-title--light { color: var(--white); }
[data-theme="light"] .section-title--light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-sub--light { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 64px; }
.section-header--light { text-align: center; }
.section-header--light .section-sub { margin: 0 auto; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--trans), border-color var(--trans);
}
.nav.scrolled {
  background: var(--nav-scroll-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  gap: 16px;
}
.nav__logo { display: flex; align-items: center; height: 40px; }
.nav__logo img { height: 32px; width: auto; transition: filter var(--trans-slow); }

/* No tema light: trocar para logo preta */
[data-theme="light"] .nav__logo img { content: url('assets/logo-cozta-preta.png'); }

.nav__links { display: none; align-items: center; gap: 8px; }
@media (min-width: 900px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: 8px;
  transition: color var(--trans), background var(--trans);
}
.nav__links a:hover { color: var(--text); background: var(--glass); }
.nav__cta {
  background: var(--cyan) !important; color: var(--white) !important;
  font-family: 'Outfit', sans-serif; font-weight: 700 !important;
  padding: 9px 20px !important; border-radius: 8px;
}
.nav__cta:hover { background: var(--cyan-soft) !important; transform: translateY(-1px); }

/* ── Botão de tema ───────────────────────────────── */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--glass); border: 1.5px solid var(--border-mid);
  color: var(--text-muted); cursor: pointer;
  transition: all var(--trans);
}
.theme-toggle:hover { background: var(--glass-hover); color: var(--cyan); border-color: var(--cyan-border); }
.theme-toggle svg { width: 18px; height: 18px; transition: transform 0.5s ease; }
.theme-toggle:hover svg { transform: rotate(20deg); }
/* Ícone: esconde sol no dark, lua no light */
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

.nav__hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
}
@media (min-width: 900px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-muted); transition: all var(--trans);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--nav-mobile-bg); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); padding: 16px 24px 24px;
}
.nav__mobile.open { display: flex; }
.mobile-link {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--trans);
}
.mobile-link:last-child { border-bottom: none; color: var(--cyan); font-weight: 700; }
.mobile-link:hover { color: var(--text); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px; overflow: hidden;
  background: var(--bg);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); animation: orbFloat 8s ease-in-out infinite;
  opacity: var(--orb-opacity);
}
.hero__orb--1 {
  width: 560px; height: 560px; top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(41,171,226,0.28) 0%, transparent 70%);
  animation-duration: 9s;
}
.hero__orb--2 {
  width: 420px; height: 420px; bottom: -60px; left: -80px;
  background: radial-gradient(circle, rgba(41,171,226,0.18) 0%, transparent 70%);
  animation-duration: 11s; animation-delay: -3s;
}
.hero__orb--3 {
  width: 280px; height: 280px; top: 40%; left: 38%;
  background: radial-gradient(circle, rgba(41,171,226,0.1) 0%, transparent 70%);
  animation-duration: 13s; animation-delay: -6s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-20px) scale(1.05); }
  66%      { transform: translate(-15px,15px) scale(0.97); }
}
.hero__inner {
  position: relative; max-width: 760px; margin: 0 auto;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  color: var(--cyan); border-radius: 100px;
  padding: 8px 18px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.7s var(--trans-slow) both;
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px var(--cyan); }
  50%      { box-shadow: 0 0 16px var(--cyan); }
}
.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text); margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.1s var(--trans-slow) both;
}
[data-theme="light"] .hero__title { color: var(--black); }
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-soft) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem; color: var(--text-muted); max-width: 580px;
  margin-bottom: 40px; line-height: 1.75;
  animation: fadeSlideUp 0.8s 0.2s var(--trans-slow) both;
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 60px;
  animation: fadeSlideUp 0.8s 0.3s var(--trans-slow) both;
}
.hero__stats {
  display: flex; align-items: center;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 32px;
  backdrop-filter: blur(12px);
  animation: fadeSlideUp 0.8s 0.4s var(--trans-slow) both;
}
.hero__stat { text-align: center; padding: 0 28px; }
.hero__stat-num {
  display: block;
  font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--text); line-height: 1;
}
[data-theme="light"] .hero__stat-num { color: var(--black); }
.hero__stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.hero__stat-divider { width: 1px; height: 48px; background: var(--border-mid); flex-shrink: 0; }
.hero__scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SOBRE ───────────────────────────────────────── */
.sobre {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 100%);
}
.sobre__inner { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) {
  .sobre__inner { grid-template-columns: 200px 1fr; gap: 80px; align-items: start; }
}
.sobre__label {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); padding-top: 8px;
}
@media (min-width: 900px) {
  .sobre__label { writing-mode: vertical-lr; transform: rotate(180deg); text-align: right; align-self: start; }
}
.sobre__title {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 28px;
}
[data-theme="light"] .sobre__title { color: var(--black); }
.sobre__title em { font-style: normal; color: var(--cyan); }
.sobre__text { color: var(--text-muted); line-height: 1.8; }
.sobre__text p { margin-bottom: 16px; }
.sobre__text strong { color: var(--text); font-weight: 500; }
[data-theme="light"] .sobre__text strong { color: var(--black); }
.sobre__pillars { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.pillar {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px; transition: all var(--trans);
}
.pillar:hover { background: var(--glass-hover); border-color: var(--border-mid); }
.pillar__icon { font-size: 1.2rem; color: var(--cyan); }
.pillar__text { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); }

/* ── SERVIÇOS ────────────────────────────────────── */
.servicos { padding: 100px 0; background: var(--bg-mid); }
.servicos__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px)  { .servicos__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .servicos__grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.servico-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all var(--trans-slow); position: relative; overflow: hidden;
}
.servico-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--trans);
}
.servico-card:hover::before { opacity: 1; }
.servico-card:hover {
  border-color: var(--cyan-border); transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.servico-card--featured {
  background: linear-gradient(135deg, var(--cyan-dim) 0%, var(--bg-card) 100%);
  border-color: var(--cyan-border);
  grid-column: 1 / -1;
}
@media (min-width: 1000px) { .servico-card--featured { grid-column: 1; grid-row: 1; } }
.servico-card__num {
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--cyan); margin-bottom: 20px;
}
.servico-card__icon { width: 52px; height: 52px; color: var(--cyan); margin-bottom: 20px; }
.servico-card__icon svg { width: 100%; height: 100%; }
.servico-card__title {
  font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
[data-theme="light"] .servico-card__title { color: var(--black); }
.servico-card__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.servico-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.servico-card__tags span {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  color: var(--cyan); border-radius: 6px; padding: 4px 12px;
}

/* ── METODOLOGIA ─────────────────────────────────── */
.metodologia { padding: 100px 0; position: relative; background: var(--bg-light); }
.metodologia__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
}
.metodo__steps { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
.metodo-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: all var(--trans);
}
.metodo-step--last { border-bottom: none; }
.metodo-step:hover .metodo-step__body { transform: translateX(6px); }
.metodo-step__num {
  font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--cyan-border); line-height: 1; padding-top: 4px;
  transition: color var(--trans);
}
.metodo-step:hover .metodo-step__num { color: var(--cyan); }
.metodo-step__body { transition: transform var(--trans); }
.metodo-step__body h3 {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
[data-theme="light"] .metodo-step__body h3 { color: var(--black); }
.metodo-step__body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── PRODUTO ─────────────────────────────────────── */
.produto { padding: 100px 0; background: var(--bg-mid); }
.poseidon__hero { display: grid; grid-template-columns: 1fr; gap: 60px; margin-bottom: 80px; }
@media (min-width: 900px) { .poseidon__hero { grid-template-columns: 1fr 1fr; align-items: center; } }
.poseidon__logo-wrap { margin-bottom: 28px; }
.poseidon__logo { max-height: 56px; width: auto; }
/* No light: logo horizontal preta do POSEIDON */
[data-theme="light"] .poseidon__logo { filter: brightness(0); }
.poseidon__desc { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.poseidon__benefits { display: flex; flex-direction: column; gap: 14px; }
.poseidon__benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text);
}
[data-theme="light"] .poseidon__benefits li { color: var(--black); }
.poseidon__benefits li svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }
.poseidon__screens { display: flex; justify-content: center; align-items: center; }
.screen-stack { position: relative; width: 100%; max-width: 520px; aspect-ratio: 16/10; }
.screen {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-mid); box-shadow: var(--shadow-card);
  transition: transform var(--trans-slow);
}
.screen img { width: 100%; height: 100%; object-fit: cover; }
.screen--back  { width:85%; top:8%; left:15%; transform:rotate(3deg);  opacity:0.45; z-index:1; }
.screen--mid   { width:85%; top:4%; left:8%;  transform:rotate(-2deg); opacity:0.72; z-index:2; }
.screen--front { width:88%; top:0;  left:4%;  transform:rotate(0);     z-index:3; }
.screen-stack:hover .screen--back  { transform: rotate(6deg) translateX(12px); }
.screen-stack:hover .screen--mid   { transform: rotate(-4deg) translateX(-8px); }
.screen-stack:hover .screen--front { transform: translateY(-8px); }
.modulos__title {
  font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 700;
  color: var(--text); margin-bottom: 32px; text-align: center;
}
[data-theme="light"] .modulos__title { color: var(--black); }
.modulos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 700px)  { .modulos__grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1000px) { .modulos__grid { grid-template-columns: repeat(6,1fr); } }
.modulo-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; transition: all var(--trans);
}
.modulo-card:hover {
  background: var(--glass-hover); border-color: var(--cyan-border);
  transform: translateY(-4px);
}
.modulo-card__icon { font-size: 1.75rem; margin-bottom: 12px; }
.modulo-card h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
[data-theme="light"] .modulo-card h4 { color: var(--black); }
.modulo-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BAND ────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cyan-deep) 0%, #0d3a50 100%);
  border-top: 1px solid rgba(41,171,226,0.25);
  border-bottom: 1px solid rgba(41,171,226,0.25);
}
[data-theme="light"] .cta-band {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
}
.cta-band__inner {
  display: flex; flex-direction: column; gap: 32px;
  align-items: center; text-align: center;
}
@media (min-width: 800px) {
  .cta-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-band__text h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800; color: #ffffff; line-height: 1.2; margin-bottom: 10px;
}
.cta-band__text p { color: rgba(255,255,255,0.78); font-size: 1rem; }

/* ── CONTATO ─────────────────────────────────────── */
.contato { padding: 100px 0; background: var(--bg); }
.contato__inner { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 900px) { .contato__inner { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.contato__title {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2; color: var(--text);
  margin-bottom: 16px; margin-top: 12px;
}
[data-theme="light"] .contato__title { color: var(--black); }
.contato__title em { font-style: normal; color: var(--cyan); }
.contato__sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; line-height: 1.7; }
.contato__channels { display: flex; flex-direction: column; gap: 16px; }
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--border);
  transition: all var(--trans);
}
.channel:hover { background: var(--glass-hover); border-color: var(--cyan-border); transform: translateX(4px); }
.channel__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--cyan);
}
.channel__icon svg { width: 22px; height: 22px; }
.channel__label { display: block; font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }
.channel__value { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text); margin-top: 2px; }
[data-theme="light"] .channel__value { color: var(--black); }
.contato__form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.83rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.03em;
}
.optional { font-weight: 400; color: var(--text-dim); }
.form-group input,
.form-group textarea {
  width: 100%; background: var(--glass);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text); font: 0.95rem/1.5 'DM Sans', sans-serif;
  padding: 13px 16px; transition: border-color var(--trans), background var(--trans);
  -webkit-appearance: none;
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea { color: var(--black); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--cyan);
  background: var(--cyan-dim);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; }
.form-note a { color: var(--text-dim); }

/* ── FOOTER ──────────────────────────────────────── */
.footer { padding: 60px 0 32px; background: var(--bg-light); border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; gap: 48px; margin-bottom: 48px; }
@media (min-width: 800px) {
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: start; }
}
.footer__brand p { font-size: 0.88rem; color: var(--text-dim); margin-top: 14px; line-height: 1.7; }
.footer__logo { height: 28px; width: auto; }
[data-theme="light"] .footer__logo { content: url('assets/logo-cozta-preta.png'); }
.footer__nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer__col-title {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 4px;
}
[data-theme="light"] .footer__col-title { color: var(--black); }
.footer__col a { font-size: 0.88rem; color: var(--text-dim); transition: color var(--trans); }
.footer__col a:hover { color: var(--cyan); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer__bottom p { font-size: 0.82rem; color: var(--text-dim); }

/* ── Scroll-reveal ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--trans-slow), transform 0.7s var(--trans-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 500px) {
  .hero__stats { flex-direction: column; gap: 20px; padding: 20px 24px; }
  .hero__stat-divider { width: 80px; height: 1px; }
  .hero__stat { padding: 0; }
  .contato__form { padding: 24px 20px; }
  .modulos__grid { grid-template-columns: 1fr; }
}
