/* ==========================================================================
   PODLIST CULTURAL — Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   VARIÁVEIS & RESET
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Nove';
  src: url('fonts/nove.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-medium.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SF UI Display';
  src: url('fonts/sf-ui-display-heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
  color-scheme: dark;
  --roxo-escuro:   #140320;
  --roxo-medio:    #1e0535;
  --roxo-deep:     #0a0116;
  --roxo:          #6F117F;
  --pink:          #DD2F77;
  --laranja:       #E5543F;
  --amarelo:       #F3B11A;
  --branco:        #ffffff;

  --texto-muted:   rgba(255, 255, 255, 0.60);
  --texto-faint:   rgba(255, 255, 255, 0.28);

  --glass:         rgba(255, 255, 255, 0.04);
  --glass-hover:   rgba(255, 255, 255, 0.07);
  --glass-border:  rgba(111, 17, 127, 0.22);
  --glass-border2: rgba(255, 255, 255, 0.07);

  --grad-quente:   linear-gradient(90deg, var(--amarelo), var(--laranja));
  --grad-vibrante: linear-gradient(135deg, var(--amarelo), var(--laranja), var(--pink));
  --grad-full:     linear-gradient(135deg, var(--roxo), var(--pink), var(--laranja));

  --fonte-display: 'Nove', 'SF UI Display', sans-serif;
  --fonte-corpo:   'SF UI Display', 'Inter', sans-serif;

  --radius:        16px;
  --radius-lg:     24px;
  --radius-pill:   100px;

  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corpo);
  background: var(--roxo-escuro);
  color: var(--branco);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--roxo-escuro); }
::-webkit-scrollbar-thumb { background: var(--roxo); border-radius: 2px; }

/* --------------------------------------------------------------------------
   UTILITÁRIOS
   -------------------------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid currentColor;
  vertical-align: middle;
  margin-bottom: 1px;
}

.sec-title {
  font-family: var(--fonte-display);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.sec-desc {
  font-size: 16px;
  line-height: 1.80;
  color: var(--texto-muted);
  max-width: 530px;
}

.grad-text {
  background: linear-gradient(90deg, var(--amarelo) 0%, var(--laranja) 45%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad-quente);
  color: #14032a;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .22s var(--ease-bounce), box-shadow .22s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-pri::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-pri:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(243, 177, 26, 0.45);
}
.btn-pri:hover::before { left: 150%; }

.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--branco);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color .22s, background .22s, transform .22s var(--ease);
}
.btn-sec:hover {
  border-color: var(--pink);
  background: rgba(221, 47, 119, 0.10);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   ANIMAÇÕES DE ENTRADA
   -------------------------------------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.fade.in { opacity: 1; transform: translateY(0); }

.fade-l {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.fade-l.in { opacity: 1; transform: translateX(0); }

.fade-r {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.fade-r.in { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .42s; }

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s, border-color .35s, backdrop-filter .35s;
}
.navbar.scrolled {
  padding: 13px 56px;
  background: rgba(20, 3, 32, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--fonte-display);
  font-size: 20px;
  color: var(--amarelo);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--amarelo);
  transition: width .28s var(--ease);
}
.nav-links a:hover         { color: var(--branco); }
.nav-links a:hover::after  { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad-quente);
  color: #14032a !important;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform .2s var(--ease-bounce), box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(243, 177, 26, 0.38);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  transform-origin: center;
}

/* Hamburger → X quando menu abre */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 32px 110px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 12% 55%, rgba(111,17,127,.55) 0%, transparent 58%),
    radial-gradient(ellipse 65% 80% at 90% 10%, rgba(221,47,119,.28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 62% 95%, rgba(229,84,63,.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 50% 50%, rgba(243,177,26,.04) 0%, transparent 70%),
    var(--roxo-escuro);
}

/* Triângulos flutuantes — DNA visual da marca */
.tri {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: triFloat linear infinite;
}
.tri::before {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left:  var(--s) solid transparent;
  border-right: var(--s) solid transparent;
  border-bottom: calc(var(--s) * 1.73) solid var(--c);
}
.t1  { --s:18px; --c:rgba(243,177,26,.22); top:12%; left:7%;  animation-duration:14s; animation-delay:0s;   }
.t2  { --s:11px; --c:rgba(221,47,119,.28); top:22%; left:88%; animation-duration:17s; animation-delay:-4s;  }
.t3  { --s:26px; --c:rgba(111,17,127,.25); top:70%; left:4%;  animation-duration:20s; animation-delay:-7s;  }
.t4  { --s:10px; --c:rgba(229,84,63,.32);  top:56%; left:93%; animation-duration:11s; animation-delay:-2s;  }
.t5  { --s:16px; --c:rgba(243,177,26,.18); top:88%; left:76%; animation-duration:16s; animation-delay:-9s;  }
.t6  { --s:8px;  --c:rgba(221,47,119,.38); top:38%; left:96%; animation-duration:12s; animation-delay:-5s;  }
.t7  { --s:14px; --c:rgba(111,17,127,.22); top:5%;  left:50%; animation-duration:19s; animation-delay:-11s; }
.t8  { --s:20px; --c:rgba(229,84,63,.15);  top:45%; left:2%;  animation-duration:13s; animation-delay:-3s;  }
.t9  { --s:12px; --c:rgba(221,47,119,.20); top:75%; left:54%; animation-duration:15s; animation-delay:-6s;  }
.t10 { --s:7px;  --c:rgba(243,177,26,.30); top:30%; left:32%; animation-duration:18s; animation-delay:-13s; }

@keyframes triFloat {
  0%   { opacity:0; transform: translateY(0)    rotate(0deg); }
  8%   { opacity:1; }
  92%  { opacity:1; }
  100% { opacity:0; transform: translateY(-90px) rotate(220deg); }
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243,177,26,.35), 0 12px 40px rgba(221,47,119,.22); }
  55%       { box-shadow: 0 0 0 16px rgba(243,177,26,.0), 0 12px 40px rgba(221,47,119,.22); }
}

@keyframes pillPulse {
  0%, 100% { border-color: rgba(243,177,26,.28); box-shadow: none; }
  50%       { border-color: rgba(243,177,26,.75); box-shadow: 0 0 22px rgba(243,177,26,.16); }
}

@keyframes caseGlow {
  0%, 100% { box-shadow: 0 24px 64px rgba(243,177,26,.22); }
  50%       { box-shadow: 0 24px 80px rgba(229,84,63,.36); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

@keyframes heroShimmer {
  0%  { background-position: 0% center; }
  100%{ background-position: 300% center; }
}

.hero-title .grad-text {
  background: linear-gradient(90deg,
    var(--amarelo), var(--laranja), var(--pink),
    rgba(255,255,255,.55), var(--pink), var(--laranja), var(--amarelo));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 5s linear infinite;
}

.hero-title {
  font-family: var(--fonte-display);
  font-size: clamp(76px, 15vw, 158px);
  line-height: .88;
  letter-spacing: -5px;
  margin-bottom: 2px;
}

.hero-sub {
  display: block;
  font-family: var(--fonte-display);
  font-size: clamp(28px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 48px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 36px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(243, 177, 26, 0.28);
  background: rgba(243, 177, 26, 0.06);
  animation: pillPulse 3.2s ease-in-out infinite;
}

.eyebrow-pill::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid currentColor;
  vertical-align: middle;
  margin-bottom: 1px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.78;
  color: var(--texto-muted);
  max-width: 490px;
  margin: 0 auto 60px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  user-select: none;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.32), transparent);
  animation: linePulse 2.4s ease-in-out infinite;
}
@keyframes linePulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%     { transform: scaleY(.3); opacity: .2; }
}

/* --------------------------------------------------------------------------
   SEÇÕES
   -------------------------------------------------------------------------- */
section { padding: 112px 0; }

/* --------------------------------------------------------------------------
   SOBRE — layout editorial
   -------------------------------------------------------------------------- */
#sobre {
  background: var(--roxo-escuro);
  position: relative;
  overflow: hidden;
}
#sobre::after {
  content: '';
  position: absolute;
  top: -160px; right: -180px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,17,127,.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
#sobre .container { position: relative; z-index: 1; }

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}

.sobre-titulo-wrap .sec-title {
  font-size: clamp(50px, 7.5vw, 84px);
  line-height: .88;
  margin-bottom: 0;
}
.sobre-titulo-wrap .eyebrow { margin-bottom: 22px; }

.sobre-corpo { padding-top: 12px; }
.sobre-corpo .sec-desc { max-width: 100%; }
.sobre-corpo .sec-desc + .sec-desc { margin-top: 18px; }

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 48px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stat {
  padding: 0 52px;
  border-right: 1px solid var(--glass-border);
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; }

.stat strong {
  display: block;
  font-family: var(--fonte-display);
  font-size: clamp(48px, 6vw, 68px);
  background: var(--grad-quente);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transform: translateY(14px) scale(.85);
  transition: transform .85s var(--ease-bounce);
}
.stat.in strong { transform: translateY(0) scale(1); }
.stat small {
  font-size: 11px;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  display: block;
}

/* --------------------------------------------------------------------------
   SERVIÇOS
   -------------------------------------------------------------------------- */
#servicos {
  background: var(--roxo-medio);
  position: relative;
  overflow: hidden;
}
#servicos::before {
  content: '';
  position: absolute;
  bottom: -110px; right: -90px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,47,119,.11) 0%, transparent 68%);
  pointer-events: none;
}
#servicos .container { position: relative; z-index: 1; }

.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform .30s var(--ease), border-color .30s, background .30s;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  border-radius: inherit;
  pointer-events: none;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-quente);
  opacity: 0;
  transition: opacity .30s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(221,47,119,.36);
  background: var(--glass-hover);
  box-shadow: 0 28px 64px rgba(111,17,127,.30), 0 0 0 1px rgba(221,47,119,.10);
}
.card:hover::before { opacity: 1; }
.card:hover::after  { opacity: 1; }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111,17,127,.45), rgba(221,47,119,.25));
  border: 1px solid rgba(221,47,119,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: transform .28s var(--ease), box-shadow .28s;
}
.card:hover .card-icon {
  transform: scale(1.10) rotate(-4deg);
  box-shadow: 0 12px 30px rgba(221,47,119,.30);
}
.card-title {
  font-family: var(--fonte-display);
  font-size: 22px;
  margin-bottom: 13px;
  line-height: 1.2;
}
.card-body  { font-size: 14px; color: var(--texto-muted); line-height: 1.72; }

.card-tri {
  position: absolute;
  bottom: 18px; right: 20px;
  width: 0; height: 0;
  opacity: .05;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 38px solid var(--amarelo);
  transition: opacity .30s;
}
.card:hover .card-tri { opacity: .12; }

/* --------------------------------------------------------------------------
   EQUIPE
   -------------------------------------------------------------------------- */
#equipe {
  background: var(--roxo-escuro);
  position: relative;
  overflow: hidden;
}
#equipe::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 580px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,17,127,.16) 0%, transparent 70%);
  pointer-events: none;
}
#equipe .container { position: relative; z-index: 1; }

.equipe-header {
  text-align: center;
  margin-bottom: 72px;
}
.equipe-header .sec-desc { margin: 0 auto; }

.equipe-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 52px 44px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  transition: transform .30s var(--ease), border-color .30s, background .30s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111,17,127,.50);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 56px rgba(111,17,127,.30);
}

.team-avatar {
  width: 124px; height: 124px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--roxo), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border: 3px solid rgba(243,177,26,.30);
  animation: avatarPulse 3.4s ease-in-out infinite;
}
.team-avatar img { width:100%; height:100%; object-fit:cover; object-position: top center; }

.team-avatar-link { display: block; text-decoration: none; border-radius: 50%; }
.team-avatar-link:hover .team-avatar { box-shadow: 0 0 0 3px rgba(243,177,26,.60); }

.team-name {
  font-family: var(--fonte-display);
  font-size: 26px;
  margin-bottom: 7px;
  line-height: 1.1;
}
.team-role {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 20px;
}
.team-bio {
  font-size: 14px;
  color: var(--texto-muted);
  line-height: 1.72;
}

.equipe-carousel {
  position: relative;
  margin: 48px auto 0;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 5;
  background: var(--roxo-deep);
  touch-action: pan-y;
}
.equipe-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(calc(var(--pos, 0) * -100%));
  transition: transform .45s var(--ease);
}
.equipe-slide {
  flex: 1 0 100%;
  width: 100%;
  height: 100%;
}
.equipe-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.equipe-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border2);
  background: rgba(20,3,42,.55);
  backdrop-filter: blur(4px);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.equipe-arrow:hover { background: rgba(20,3,42,.80); border-color: rgba(243,177,26,.45); }
.equipe-prev { left: 14px; }
.equipe-next { right: 14px; }

.equipe-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.equipe-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.equipe-dot.is-active { background: var(--amarelo); transform: scale(1.25); }

/* --------------------------------------------------------------------------
   AGENDA
   -------------------------------------------------------------------------- */
.agenda-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.agenda-header .eyebrow { justify-content: center; }

.agenda-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.agenda-img { flex: 1 1 320px; min-height: 320px; }
.agenda-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.agenda-info {
  flex: 1 1 320px;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.agenda-date {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #14032a;
  background: var(--grad-quente);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.agenda-event {
  font-family: var(--fonte-display);
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.agenda-desc {
  font-size: 14px;
  color: var(--texto-muted);
  line-height: 1.72;
  margin-bottom: 24px;
}
.agenda-lineup { display: flex; flex-wrap: wrap; gap: 10px; }
.agenda-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--branco);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-border2);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   CRIAÇÃO DE SITES (Presença Digital)
   -------------------------------------------------------------------------- */
#presenca { background: var(--roxo-medio); }

.presenca-intro {
  margin-bottom: 72px;
}
.presenca-intro .sec-desc { max-width: 560px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: background .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(243,177,26,.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  border-radius: inherit;
  pointer-events: none;
}
.feature-item:hover {
  background: var(--glass-hover);
  border-color: rgba(243,177,26,.25);
  transform: translateY(-4px);
  box-shadow: inset 3px 0 0 rgba(243,177,26,.50);
}
.feature-item:hover::before { opacity: 1; }

.feature-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(111,17,127,.32), rgba(243,177,26,.14));
  border: 1px solid rgba(243,177,26,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.feature-item:hover .feature-icon {
  transform: scale(1.10) rotate(-3deg);
  box-shadow: 0 8px 22px rgba(243,177,26,.22);
}
.feature-body { flex: 1; }
.feature-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--branco);
}
.feature-body span {
  font-size: 13px;
  color: var(--texto-muted);
  line-height: 1.65;
}

.presenca-case {
  background: linear-gradient(90deg, var(--amarelo), var(--laranja));
  border-radius: 20px;
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  animation: caseGlow 4.5s ease-in-out infinite;
}
.presenca-case-text p {
  font-size: 16px;
  font-weight: 600;
  color: #14032a;
  line-height: 1.6;
  max-width: 520px;
}
.presenca-case .eyebrow { color: rgba(20,3,42,.55); margin-bottom: 10px; }
.presenca-case .btn-pri {
  background: #14032a;
  color: var(--amarelo) !important;
  flex-shrink: 0;
  box-shadow: none;
}
.presenca-case .btn-pri:hover {
  box-shadow: 0 14px 36px rgba(20,3,42,.35);
}

/* --------------------------------------------------------------------------
   CONTATO
   -------------------------------------------------------------------------- */
#contato {
  background: var(--roxo-escuro);
  position: relative;
  overflow: hidden;
}
#contato::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,47,119,.09) 0%, transparent 70%);
  pointer-events: none;
}
#contato .container { position: relative; z-index: 1; }

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 56px;
  align-items: start;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 44px;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border2);
  text-decoration: none;
  color: var(--branco);
  transition: background .22s, border-color .22s, transform .22s var(--ease);
}
.social-item:hover {
  background: rgba(111,17,127,.22);
  border-color: var(--roxo);
  transform: translateX(6px);
}
.social-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.social-info         { flex: 1; }
.social-info strong  { display: block; font-size: 14px; font-weight: 600; }
.social-info small   { font-size: 12px; color: rgba(255,255,255,.36); }
.social-arr {
  color: rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color .2s, transform .2s var(--ease);
}
.social-item:hover .social-arr {
  color: rgba(255,255,255,.60);
  transform: translateX(4px);
}

.wa-card {
  background: linear-gradient(135deg, rgba(111,17,127,.38), rgba(221,47,119,.22));
  border: 1px solid rgba(221,47,119,.28);
  border-radius: 24px;
  padding: 52px 44px;
}
.wa-card h3 {
  font-family: var(--fonte-display);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.wa-card p {
  font-size: 15px;
  color: var(--texto-muted);
  line-height: 1.72;
  margin-bottom: 30px;
}
.wa-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--amarelo);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: var(--roxo-deep);
  border-top: 1px solid var(--glass-border);
  padding: 48px 0;
}
.footer-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo .nav-logo-img { height: 36px; width: 36px; }
.footer-logo-text          { font-family: var(--fonte-display); font-size: 19px; color: var(--amarelo); }
.footer-copy          { font-size: 13px; color: rgba(255,255,255,.28); }
.footer-links         { display: flex; gap: 26px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.32);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--amarelo); }

/* --------------------------------------------------------------------------
   FAB WHATSAPP
   -------------------------------------------------------------------------- */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
  transition: transform .22s var(--ease-bounce), box-shadow .22s;
}
.fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 18px 44px rgba(37,211,102,.52);
}

/* --------------------------------------------------------------------------
   MENU MOBILE
   -------------------------------------------------------------------------- */
.m-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20,3,32,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}
.m-menu.open {
  display: flex;
  animation: menuOpen .28s var(--ease) both;
}
@keyframes menuOpen {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}
.m-menu a {
  font-family: var(--fonte-display);
  font-size: 38px;
  color: var(--branco);
  text-decoration: none;
  transition: color .2s;
}
.m-menu a:hover { color: var(--amarelo); }
.m-menu-long {
  font-size: 26px !important;
  text-align: center;
  line-height: 1.25;
  max-width: 80vw;
}
.m-close {
  display: none; /* O hamburger faz transform → X; este botão é redundante */
}

/* --------------------------------------------------------------------------
   RESPONSIVO — sistema cross-device completo
   -------------------------------------------------------------------------- */

/* Hero com altura correta em mobile (exclui chrome do browser) */
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}

/* iOS / Android: respeita safe areas (home indicator, notch) */
@supports (padding: env(safe-area-inset-bottom)) {
  .fab {
    bottom: max(28px, calc(env(safe-area-inset-bottom) + 16px));
    right:  max(28px, calc(env(safe-area-inset-right)  + 20px));
  }
  footer  { padding-bottom: max(48px, calc(env(safe-area-inset-bottom) + 20px)); }
  .m-menu { padding-bottom: env(safe-area-inset-bottom); }
}

/* Touch: feedback visual em dispositivos sem hover */
@media (hover: none) and (pointer: coarse) {
  .btn-pri:active      { transform: scale(.97); opacity: .92; }
  .btn-sec:active      { background: rgba(221,47,119,.14); transform: scale(.98); }
  .nav-cta:active      { transform: scale(.97); }
  .fab:active          { transform: scale(.94); }
  .social-item:active  { transform: translateX(3px); }
  .feature-item:active { transform: translateY(-2px); }
  .card:active         { transform: translateY(-4px); }
}

/* Fallback JS: quando media queries não disparam (DPR=1, modo desktop forçado) */
.navbar.mobile-nav .nav-links,
.navbar.mobile-nav .nav-cta  { display: none; }
.navbar.mobile-nav .hamburger { display: flex; }

/* ===========================================================
   ≤ 1024px — Tablet / Laptop pequeno
   =========================================================== */
@media (max-width: 1024px) {
  .navbar          { padding: 14px 24px; }
  .navbar.scrolled { padding: 10px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger       { display: flex; }

  section  { padding: 80px 0; }
  .hero    { padding: 104px 24px 80px; }

  .sobre-grid      { gap: 40px; margin-bottom: 52px; }
  .servicos-header { flex-direction: column; align-items: flex-start; }
  .presenca-case   { padding: 36px 28px; }
  .presenca-case-text { max-width: 100%; }

  footer       { padding: 36px 0; }
  .footer-in   { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ===========================================================
   ≤ 768px — Tablet portrait / Mobile grande
   =========================================================== */
@media (max-width: 768px) {
  .container    { padding: 0 24px; }
  section       { padding: 72px 0; }
  .hero         { padding: 94px 24px 68px; }

  .hero-title   { font-size: clamp(52px, 15vw, 100px); letter-spacing: -3px; }
  .hero-sub     { font-size: clamp(15px, 4.5vw, 28px); letter-spacing: 9px; margin-bottom: 36px; }
  .hero-desc    { font-size: 15px; max-width: 100%; margin-bottom: 44px; }
  .eyebrow-pill { font-size: 8px; letter-spacing: 2.2px; padding: 8px 16px; margin-bottom: 26px; }

  .sobre-titulo-wrap .sec-title { font-size: clamp(38px, 9.5vw, 72px); }
  .sobre-grid   { gap: 32px; }
  .stat         { padding: 0 20px; }

  .cards-grid   { gap: 14px; }
  .card         { padding: 28px 22px; }
  .card-title   { font-size: 20px; }

  .equipe-header { margin-bottom: 48px; }

  .contato-grid  { gap: 40px; }
  .wa-card       { padding: 40px 30px; }
  .wa-card h3    { font-size: 28px; }

  .m-menu     { gap: 32px; }
  .m-menu a   { font-size: 32px; }
  .m-menu-long { font-size: 22px !important; }
}

/* ===========================================================
   ≤ 520px — Mobile padrão
   =========================================================== */
@media (max-width: 520px) {
  .container  { padding: 0 18px; }
  section     { padding: 60px 0; }
  .hero       { padding: 88px 18px 64px; }

  .hero-title  { font-size: clamp(48px, 16.5vw, 76px); letter-spacing: -2px; }
  .hero-sub    { font-size: clamp(12px, 5vw, 18px); letter-spacing: 5px; margin-bottom: 24px; }
  .hero-desc   { font-size: 14px; line-height: 1.72; margin-bottom: 36px; }
  .hero-btns   { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn-pri,
  .hero-btns .btn-sec { justify-content: center; min-height: 52px; font-size: 15px; padding: 14px 20px; white-space: normal; }
  .eyebrow-pill { font-size: 7px; letter-spacing: 1.5px; padding: 7px 12px; margin-bottom: 20px; }
  .hero-wordmark { max-width: 300px; width: 90%; margin-bottom: 24px; }

  .sec-title   { font-size: clamp(28px, 7.5vw, 40px); }
  .sec-desc    { font-size: 14px; }

  .sobre-titulo-wrap .sec-title { font-size: clamp(36px, 12vw, 52px); }
  .sobre-grid  { gap: 20px; margin-bottom: 40px; }
  .sobre-corpo { padding-top: 0; }
  .sobre-stats { grid-template-columns: 1fr; }
  .stat        { padding: 24px 0; border-right: none; border-bottom: 1px solid var(--glass-border); }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }

  .servicos-header { margin-bottom: 36px; }
  .cards-grid  { grid-template-columns: 1fr; gap: 10px; }
  .card        { padding: 22px 18px; }
  .card-icon   { width: 48px; height: 48px; margin-bottom: 18px; }
  .card-title  { font-size: 18px; }
  .card-body   { font-size: 13px; }

  .equipe-header { margin-bottom: 36px; }
  .team-card   { padding: 36px 22px; max-width: 100%; }

  .presenca-intro  { margin-bottom: 44px; }
  .presenca-case   { flex-direction: column; align-items: stretch; padding: 24px 18px; gap: 20px; }
  .presenca-case .btn-pri { width: 100%; justify-content: center; }

  .contato-grid  { gap: 28px; }
  .socials       { margin-top: 24px; gap: 8px; }
  .social-item   { padding: 14px 14px; gap: 12px; }
  .social-ico    { width: 40px; height: 40px; }
  .wa-card       { padding: 28px 18px; }
  .wa-card h3    { font-size: 22px; }
  .wa-num        { font-size: 17px; gap: 8px; }

  footer         { padding: 28px 0; }
  .footer-in     { gap: 14px; }
  .footer-links  { gap: 16px; }
  .footer-copy   { font-size: 12px; }

  .m-menu   { gap: 22px; }
  .m-menu a { font-size: 28px; }
  .m-menu-long { font-size: 18px !important; }
  .m-close  { top: 20px; right: 20px; }

  .net-banner   { max-width: calc(100vw - 36px); white-space: normal; text-align: center; font-size: 12px; }
  .update-toast { left: 16px; right: 16px; max-width: none; bottom: 88px; }
}

/* ===========================================================
   ≤ 380px — Mobile pequeno (iPhone SE, Galaxy A compact)
   =========================================================== */
@media (max-width: 380px) {
  .container     { padding: 0 16px; }
  .navbar        { padding: 12px 16px; }
  .nav-logo-img  { height: 32px; }
  .nav-logo-text { font-size: 17px; }

  .hero-title    { font-size: clamp(40px, 17vw, 58px); letter-spacing: -1.5px; }
  .sobre-titulo-wrap .sec-title { font-size: clamp(32px, 13vw, 46px); }

  .m-menu a  { font-size: 24px; }
  .m-menu    { gap: 18px; }
  .m-menu-long { font-size: 16px !important; }

  .wa-card h3 { font-size: 19px; }
  .team-card  { padding: 28px 16px; }
  .card       { padding: 18px 14px; }
}

/* --------------------------------------------------------------------------
   ACESSIBILIDADE
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--amarelo);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .equipe-track { transition: none; }
  .fade, .fade-l, .fade-r {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tri { display: none; }
  html { scroll-behavior: auto; }
  .btn-pri:hover, .btn-sec:hover, .card:hover, .social-item:hover, .feature-item:hover { transform: none; }
  .team-avatar, .eyebrow-pill, .presenca-case { animation: none; }
  .hero-title .grad-text { animation: none; background-size: auto; }
  .stat strong, .stat.in strong { transform: none; transition: none; }
  .m-menu.open { animation: none; }
}

/* --------------------------------------------------------------------------
   SKIP LINK (acessibilidade)
   -------------------------------------------------------------------------- */
.skip-link {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  overflow: visible;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  width: auto;
  background: var(--amarelo);
  color: #14032a;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   INDICADOR DE REDE
   -------------------------------------------------------------------------- */
.net-banner {
  position: fixed;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  white-space: nowrap;
  pointer-events: none;
  transition: top .38s var(--ease), opacity .38s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  opacity: 0;
}
.net-banner.show { top: 78px; opacity: 1; }
.net-banner.offline {
  background: rgba(20,3,32,.96);
  color: #fc8181;
  border: 1px solid rgba(229,84,63,.50);
}
.net-banner.restored {
  background: rgba(20,3,32,.96);
  color: #68d391;
  border: 1px solid rgba(37,211,102,.45);
}

/* --------------------------------------------------------------------------
   TOAST DE ATUALIZAÇÃO PWA
   -------------------------------------------------------------------------- */
.update-toast {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 2000;
  background: rgba(20,3,32,.96);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--texto-muted);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  animation: toastIn .35s var(--ease-bounce) both;
  max-width: 280px;
}
.update-toast[hidden] { display: none; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.update-btn {
  background: var(--grad-quente);
  color: #14032a;
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease-bounce), box-shadow .2s;
  flex-shrink: 0;
}
.update-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243,177,26,.35);
}
