/* ===== Fonts ===== */
@font-face { font-family: "SF Pro Display"; src: url("assets/fonts/SFProDisplay-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "SF Pro Display"; src: url("assets/fonts/SFProDisplay-Medium.otf") format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "SF Pro Display"; src: url("assets/fonts/SFProDisplay-Bold.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }

/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; scrollbar-color: #2a3050 #06070f; scrollbar-width: thin; }
body {
  margin: 0;
  background: #06070f;
  color: #e8edfb;
  font-family: "SF Pro Display", -apple-system, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(123, 77, 255, 0.35); color: #fff; }

/* Barra de rolagem escura (evita a barra clara padrão do sistema em cima do fundo escuro) */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #06070f; }
::-webkit-scrollbar-thumb { background: #2a3050; border-radius: 8px; border: 2px solid #06070f; }
::-webkit-scrollbar-thumb:hover { background: #3b4270; }

.container { width: calc(100% - 2rem); max-width: 1200px; margin: 0 auto; }

/* ===== Keyframes ===== */
@keyframes auroraDrift { 0% { transform: translate3d(-4%, -3%, 0) scale(1.05); } 50% { transform: translate3d(4%, 3%, 0) scale(1.15); } 100% { transform: translate3d(-4%, -3%, 0) scale(1.05); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shimmer { 0% { background-position: 0% center; } 50% { background-position: 100% center; } 100% { background-position: 0% center; } }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(59, 123, 255, 0.5); } 50% { box-shadow: 0 0 0 7px rgba(59, 123, 255, 0); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes brakeIn { 0% { opacity: 0; transform: translateY(64px) scale(0.92); } 55% { opacity: 1; transform: translateY(-10px) scale(1.025); } 78% { transform: translateY(4px) scale(0.995); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes slideBrakeIn { 0% { opacity: 0; transform: translateX(-40px); } 60% { opacity: 1; transform: translateX(8px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes portScroll { 0%, 7% { transform: translateY(0); } 48%, 55% { transform: translateY(var(--pscroll, -980px)); } 96%, 100% { transform: translateY(0); } }

.reveal-cs { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-cs.is-visible { opacity: 1; transform: translateY(0); }

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

/* ===== Aurora background ===== */
.aurora-bg { position: fixed; inset: 0; z-index: -3; background: #06070f; overflow: hidden; transform: translateZ(0); }
.aurora-blob { position: absolute; will-change: transform; background-size: cover; background-position: center; background-repeat: no-repeat; }
.aurora-blue { width: 55vw; height: 55vw; top: -18vw; right: -12vw; background-image: url("assets/aurora-blue.webp"); opacity: 0.4; animation: auroraDrift 34s ease-in-out infinite; }
.aurora-purple { width: 50vw; height: 50vw; bottom: -20vw; left: -13vw; background-image: url("assets/aurora-purple.webp"); opacity: 0.36; animation: auroraDrift 46s ease-in-out infinite reverse; }
.aurora-cyan { width: 32vw; height: 32vw; top: 34%; left: 38%; background-image: url("assets/aurora-cyan.webp"); opacity: 0.08; animation: auroraDrift 40s ease-in-out infinite; }
.aurora-bg--sub .aurora-blue { top: -24vw; opacity: 0.36; }
.aurora-bg--sub .aurora-purple { opacity: 0.32; }
.diagonal-overlay {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; transform: translateZ(0);
  background-image: repeating-linear-gradient(-30deg, rgba(148, 163, 210, 0.035) 0, rgba(148, 163, 210, 0.035) 1px, transparent 1px, transparent 46px);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 78%);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  width: calc(100% - 2rem); max-width: 1200px; margin: 1rem auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0.8rem 0.7rem 1.4rem;
  background: rgba(8, 11, 22, 0.9);
  border: 1px solid rgba(148, 163, 210, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 38px; width: auto; object-fit: contain; display: block; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; font-size: 0.96rem; font-weight: 500; }
.main-nav > a { color: #c7d0ea; }
.main-nav > a.is-active { color: #fff; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  color: #c7d0ea; display: inline-flex; align-items: center; gap: 0.35rem;
  background: none; border: none; padding: 0; font: inherit; font-weight: 500; font-size: 0.96rem;
}
.nav-chevron { display: inline-block; font-size: 0.7rem; transition: transform 0.25s ease; }
.nav-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.nav-panel { position: absolute; top: 100%; left: 50%; margin-left: -120px; min-width: 240px; padding-top: 0.7rem; }
.nav-panel-inner {
  display: flex; flex-direction: column; padding: 0.5rem; border-radius: 14px;
  background: rgba(10, 13, 26, 0.96); border: 1px solid rgba(148, 163, 210, 0.16);
  backdrop-filter: blur(20px); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-dropdown.is-open .nav-panel-inner { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-panel-inner a { display: flex; align-items: center; gap: 0.6rem; padding: 0.62rem 0.8rem; border-radius: 10px; color: #c7d0ea; font-size: 0.92rem; font-weight: 500; transition: background 0.2s ease, color 0.2s ease; }
.nav-panel-inner a:hover { background: rgba(59, 123, 255, 0.12); color: #fff; }

.btn-fale-conosco { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.6rem 1.15rem; border-radius: 11px; background: #fff; color: #05060f; font-weight: 700; font-size: 0.92rem; letter-spacing: -0.01em; }

.nav-toggle {
  display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 163, 210, 0.28); color: #e8edfb; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ===== Buttons ===== */
.btn-gradient {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.95rem 1.5rem; border-radius: 12px;
  background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff);
  color: #fff; font-weight: 700; font-size: 1rem; border: none;
  box-shadow: 0 14px 34px rgba(59, 123, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(123, 77, 255, 0.45); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.95rem 1.5rem; border-radius: 12px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(148, 163, 210, 0.28);
  color: #e8edfb; font-weight: 600; font-size: 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(148, 163, 210, 0.5); color: #e8edfb; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.4rem; border-radius: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; font-weight: 700; font-size: 1rem; border: none;
}
.btn-whatsapp svg { flex: none; }

/* ===== Section heading (eyebrow) ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem; margin: 0 0 0.9rem;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; font-weight: 700; color: #2de1f0;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: linear-gradient(115deg, #2de1f0, #b24bff); }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.06; letter-spacing: -0.03em; margin: 0 0 0.9rem; font-weight: 700; }
.section-head p { color: #8a96b8; font-size: 1.06rem; margin: 0; max-width: 600px; }
.section-head--sm h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.1; margin: 0 0 0.8rem; }
.section-head--sm p { margin: 0 0 1.6rem; }

.grad-text { background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Hero ===== */
.hero { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; padding: 4.5rem 0 3rem; }
.hero-left { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.6rem; padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border: 1px solid rgba(148, 163, 210, 0.26); border-radius: 999px; background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem; color: #8a96b8;
}
.hero-badge-tag {
  display: inline-flex; align-items: center; padding: 0.18rem 0.6rem; border-radius: 999px;
  background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff);
  color: #fff; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em;
}
.hero-title { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.0; letter-spacing: -0.035em; font-weight: 700; margin: 0 0 1.4rem; }
.hero-lead { color: #9aa6c6; font-size: 1.15rem; max-width: 540px; margin: 0 0 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0.9rem; margin-bottom: 2.6rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; padding-top: 1.8rem; border-top: 1px solid rgba(148, 163, 210, 0.14); }
.hero-stats strong { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.hero-stats span { font-size: 0.84rem; color: #8a96b8; }

.hero-visual { position: relative; z-index: 1; display: grid; place-items: center; min-height: 480px; }

/* ===== Hero cards (imagens 3D da marca, com flutuação + zoom individual no hover) ===== */
.hero-cards-scene { position: relative; width: min(100%, 520px); height: 460px; }

.hero-float-card {
  position: absolute; will-change: transform;
}
.hero-float-card img {
  display: block; width: 100%; height: auto;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-float-card:hover img { transform: scale(1.1); }

.hero-float-card--review {
  width: 320px; top: 0; left: 0;
  animation: floatY 7.5s ease-in-out infinite;
}

.hero-float-card--insta {
  width: 230px; top: 148px; right: -20px;
  animation: floatY2 8.5s ease-in-out infinite; animation-delay: -2s;
}

.hero-float-card--crm {
  width: 270px; bottom: -8px; left: 58px;
  animation: floatY 9s ease-in-out infinite; animation-delay: -4.5s;
}

.hero-cards-scene--solo { height: auto; display: grid; place-items: center; }
.hero-cards-scene--solo .hero-float-card--crm { position: static; width: min(100%, 320px); animation: floatY 9s ease-in-out infinite; }

/* ===== Tech marquee ===== */
.tech-strip { margin: 1rem 0 2rem; padding: 1.4rem 0; border-top: 1px solid rgba(148, 163, 210, 0.1); border-bottom: 1px solid rgba(148, 163, 210, 0.1); overflow: hidden; }
.tech-strip-label { text-align: center; margin: 0 0 1rem; color: #5c6789; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.marquee-mask {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 9s linear infinite; align-items: center; color: #c7d0ea; font-weight: 600; font-size: 1.05rem; }
.marquee-track img { height: 26px; width: auto; flex: none; object-fit: contain; }

/* ===== Cards with cursor lighting ===== */
[data-lit] { position: relative; overflow: hidden; }
[data-spot] { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
[data-lit]:hover [data-spot] { opacity: 1; }

/* ===== Services grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 0.9rem; padding: 1.8rem;
  border-radius: 20px; border: 1px solid rgba(148, 163, 210, 0.14);
  background: linear-gradient(160deg, #10142a, #0b0e1c);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(148, 163, 210, 0.3); box-shadow: 0 26px 60px rgba(4, 8, 20, 0.55); color: #e8edfb; }
.service-card [data-spot] { border-radius: 20px; background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(123, 77, 255, 0.2), transparent 62%); }
.service-card-bar { position: absolute; top: 0; left: 1.8rem; width: 44px; height: 3px; background: linear-gradient(115deg, #2de1f0, #b24bff); }
.service-card-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: #2de1f0; background: rgba(59, 123, 255, 0.12); border: 1px solid rgba(123, 77, 255, 0.28); }
.service-card-icon svg { width: 26px; height: 26px; }
.service-card-icon--brand img { width: 30px; height: 30px; object-fit: contain; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.service-card-icon--brand:hover img { animation: brand-icon-wiggle 0.6s ease-in-out; }
@keyframes brand-icon-wiggle {
  0% { transform: rotate(0deg) scale(1); }
  30% { transform: rotate(-12deg) scale(1.1); }
  60% { transform: rotate(10deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .service-card-icon--brand img { transition: none; }
  .service-card-icon--brand:hover img { animation: none; }
}
.service-card h3 { margin: 0; font-size: 1.28rem; font-weight: 700; letter-spacing: -0.02em; }
.service-card-desc { margin: 0; color: #8a96b8; font-size: 0.98rem; flex: 1; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid rgba(148, 163, 210, 0.12); }
.service-card-price { font-weight: 700; font-size: 1.02rem; }
.service-card-more { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.88rem; font-weight: 600; color: #2de1f0; }

/* ===== Combos ===== */
.combos-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; margin-bottom: 2rem; }
.combo-card {
  position: relative; display: flex; flex-direction: column; gap: 1.1rem; padding: 1.9rem 1.7rem;
  border-radius: 22px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(160deg, #10142a, #0b0e1c);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.combo-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(4, 8, 20, 0.55); }
.combo-card [data-spot] { border-radius: 22px; background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(45, 225, 240, 0.16), transparent 62%); }
.combo-card--popular { border-color: rgba(123, 77, 255, 0.5); background: linear-gradient(160deg, rgba(59, 123, 255, 0.14), rgba(123, 77, 255, 0.1)); }
.combo-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.combo-tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #8a96b8; }
.combo-badge { padding: 0.24rem 0.6rem; border-radius: 999px; background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; }
.combo-name { margin: 0; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.combo-sub { margin: 0; color: #8a96b8; font-size: 0.95rem; }
.combo-list { list-style: none; padding: 0; margin: 0.2rem 0; display: grid; gap: 0.6rem; }
.combo-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.96rem; color: #e8edfb; }
.check-dot { flex: none; width: 18px; height: 18px; border-radius: 50%; background: #2ee6a6; display: grid; place-items: center; color: #06131a; font-size: 0.7rem; font-weight: 700; }
.combo-price-wrap { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(148, 163, 210, 0.14); }
.combo-price-row { display: flex; align-items: baseline; gap: 0.4rem; }
.combo-price-row span:first-child { font-size: 0.85rem; color: #8a96b8; }
.combo-price-row strong { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.combo-price-row span:last-child { font-size: 0.9rem; color: #8a96b8; }
.combo-save { margin: 0.2rem 0 0; font-size: 0.82rem; color: #2ee6a6; }
.combo-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: auto; padding: 0.85rem 1.2rem; border-radius: 12px; font-weight: 700; font-size: 0.96rem; transition: transform 0.25s ease; }
.combo-cta:hover { transform: translateY(-2px); }
.combo-cta--gradient { background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); border: none; color: #fff; }
.combo-cta--outline { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(148, 163, 210, 0.28); color: #e8edfb; }

/* ===== Configurator ===== */
.configurator-panel { position: relative; padding: 2rem; border-radius: 24px; border: 1px solid rgba(148, 163, 210, 0.2); background: linear-gradient(160deg, rgba(59, 123, 255, 0.08), rgba(123, 77, 255, 0.06)); overflow: hidden; }
.configurator-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: stretch; }
.configurator-left h3 { margin: 0 0 0.4rem; font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; }
.configurator-left > p { margin: 0 0 1.4rem; color: #8a96b8; font-size: 0.98rem; }
.picker-grid { display: grid; gap: 0.7rem; }
.picker-btn {
  display: flex; align-items: center; gap: 0.9rem; width: 100%; text-align: left; padding: 0.9rem 1rem;
  border-radius: 14px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(148, 163, 210, 0.16);
  color: #e8edfb; transition: border-color 0.2s ease, background 0.2s ease;
}
.picker-btn.is-selected { background: rgba(59, 123, 255, 0.1); border-color: rgba(123, 77, 255, 0.45); }
.picker-checkbox { flex: none; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: transparent; border: 1px solid rgba(148, 163, 210, 0.4); color: #fff; font-size: 0.8rem; font-weight: 700; }
.picker-btn.is-selected .picker-checkbox { background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); border-color: transparent; }
.picker-info { flex: 1; min-width: 0; }
.picker-name { display: block; font-weight: 600; font-size: 1rem; }
.picker-note { display: block; font-size: 0.82rem; color: #8a96b8; }
.picker-price { font-weight: 700; font-size: 0.98rem; white-space: nowrap; }

.configurator-right { display: flex; flex-direction: column; gap: 1rem; padding: 1.6rem; border-radius: 18px; background: rgba(6, 7, 15, 0.55); border: 1px solid rgba(148, 163, 210, 0.16); }
.summary-row { display: flex; align-items: center; justify-content: space-between; }
.summary-row span { color: #8a96b8; font-size: 0.9rem; }
.progress-track { height: 8px; border-radius: 999px; background: rgba(148, 163, 210, 0.14); overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); border-radius: 999px; transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.discount-box { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0.9rem; border-radius: 12px; background: rgba(148, 163, 210, 0.08); transition: background 0.3s ease; }
.discount-box.has-discount { background: rgba(46, 230, 166, 0.12); }
.discount-box span { font-size: 0.9rem; color: #c7d0ea; }
.discount-box strong { font-size: 1.15rem; color: #2ee6a6; }
.summary-detail { display: grid; gap: 0.35rem; margin-top: 0.2rem; }
.subtotal-row { display: flex; align-items: center; justify-content: space-between; color: #8a96b8; font-size: 0.92rem; }
.subtotal-row span:last-child.is-strike { text-decoration: line-through; }
.final-row { display: flex; align-items: baseline; justify-content: space-between; }
.final-row span { font-weight: 600; }
.final-row strong { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.savings-text { margin: 0; font-size: 0.82rem; color: #2ee6a6; min-height: 1rem; }
.configurator-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: auto; padding: 0.95rem 1.2rem; border-radius: 12px; background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); color: #fff; font-weight: 700; font-size: 1rem; box-shadow: 0 14px 34px rgba(59, 123, 255, 0.35); transition: transform 0.25s ease; }
.configurator-cta:hover { transform: translateY(-2px); color: #fff; }
.configurator-note { margin: 0; font-size: 0.76rem; color: #5c6789; text-align: center; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 0.8rem; max-width: 840px; }
.faq-item { border-radius: 16px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(155deg, #10142a, #0b0e1c); overflow: hidden; }
.faq-item.is-open { border-color: rgba(123, 77, 255, 0.4); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left;
  padding: 1.2rem 1.4rem; background: transparent; border: none; color: #e8edfb; font-family: inherit; font-size: 1.06rem; font-weight: 600;
}
.faq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(59, 123, 255, 0.14); color: #2de1f0; font-size: 1.1rem; transition: transform 0.3s ease; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer { margin: 0; padding: 0 1.4rem 1.3rem; color: #8a96b8; font-size: 0.98rem; line-height: 1.6; }

/* ===== Contact ===== */
.contact-section { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2.5rem; align-items: start; padding: 5rem 0; }
.contact-section h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 1rem; font-weight: 700; }
.contact-section > div > p { color: #8a96b8; font-size: 1.05rem; max-width: 440px; margin: 0 0 1.8rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 0.9rem; }
.contact-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.98rem; }
.contact-list li::before { content: ""; width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg); background: linear-gradient(115deg, #2de1f0, #b24bff); flex: none; }

.contact-form { padding: 2rem; display: grid; gap: 1.2rem; border-radius: 22px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(155deg, #10142a, #0b0e1c); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4); }
.form-field { display: grid; gap: 0.5rem; }
.form-field span { font-weight: 600; font-size: 0.9rem; }
.form-field span .optional { font-weight: 400; color: #5c6789; }
.form-field input, .form-field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 11px; border: 1px solid rgba(148, 163, 210, 0.26);
  background: rgba(6, 7, 15, 0.6); color: #e8edfb; font: inherit;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 1rem 1.2rem; border: none; border-radius: 12px; background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); color: #fff; font-weight: 700; font-size: 1rem; font-family: inherit; }
.btn-submit:disabled { opacity: 0.6; cursor: default; }
.form-note { margin: 0; font-size: 0.82rem; color: #5c6789; text-align: center; }

/* ===== Footer ===== */
.site-footer {
  width: calc(100% - 2rem); max-width: 1200px; margin: 1rem auto 3rem; padding-top: 2.4rem;
  border-top: 1px solid rgba(148, 163, 210, 0.14); display: flex; flex-wrap: wrap; gap: 1.4rem;
  align-items: center; justify-content: space-between; color: #8a96b8;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-brand-text strong { color: #e8edfb; font-size: 1.05rem; }
.footer-brand-text span { font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.92rem; }
.footer-links a { color: #8a96b8; }
.footer-instagram { display: inline-flex; }
.footer-instagram svg { width: 30px; height: 30px; }
.footer-legal { flex-basis: 100%; text-align: center; font-size: 0.78rem; color: #5c6789; margin-top: 0.6rem; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; width: 3.5rem; height: 3.5rem; display: grid; place-items: center;
  border-radius: 50%; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35); z-index: 120;
}

/* ===== Call trigger ("Prefere que a gente ligue?") ===== */
.call-trigger {
  display: inline-flex; align-items: center; gap: 0.4rem; background: none; border: none; padding: 0;
  color: #6b7593; font-weight: 500; font-size: 0.82rem; font-family: inherit; transition: color 0.2s ease;
}
.call-trigger svg { flex: none; width: 15px; height: 15px; }
.call-trigger:hover { color: #a8b3d1; }
/* display:flex (block-level) garante quebra de linha, ficando sempre abaixo do CTA anterior */
.call-trigger--block { display: flex; width: fit-content; margin-top: 0.6rem; }
/* Agrupa o CTA principal + o trigger de ligação, centralizando um em relação ao outro
   (inline-flex fica no tamanho do conteúdo fora de grid, e estica dentro de grid — ambos ficam centralizados) */
.whatsapp-cta-group { display: inline-flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.whatsapp-cta-group .call-trigger--block { margin-top: 0; }

.call-fab {
  position: fixed; right: 1.5rem; bottom: 5.1rem; width: 2.5rem; height: 2.5rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(10, 13, 26, 0.85); border: 1px solid rgba(148, 163, 210, 0.22); color: #8a96b8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); z-index: 120;
}
.call-fab svg { width: 17px; height: 17px; }
.call-fab:hover { color: #e8edfb; border-color: rgba(148, 163, 210, 0.4); }

/* ===== Call modal ===== */
.call-modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.2rem;
  background: rgba(4, 5, 12, 0.72); backdrop-filter: blur(6px);
}
.call-modal-overlay[hidden] { display: none; }
.call-modal {
  position: relative; width: 100%; max-width: 420px; padding: 2rem; border-radius: 22px;
  border: 1px solid rgba(148, 163, 210, 0.18); background: linear-gradient(155deg, #10142a, #0b0e1c);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.call-modal h3 { margin: 0 0 0.5rem; font-size: 1.5rem; letter-spacing: -0.02em; }
.call-modal-lead { margin: 0 0 1.4rem; color: #8a96b8; font-size: 0.94rem; }
.call-modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 9px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 163, 210, 0.24); color: #8a96b8;
}
.call-modal-close:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.call-form { display: grid; gap: 1.1rem; }
.call-modal-cancel { background: none; border: none; padding: 0.3rem; color: #5c6789; font-weight: 600; font-size: 0.86rem; font-family: inherit; text-align: center; }
.call-modal-cancel:hover { color: #8a96b8; }
.call-modal-error { margin: -0.4rem 0 0; color: #ff8a8a; font-size: 0.86rem; }
.call-modal-error[hidden] { display: none; }
.call-modal-success { text-align: center; padding: 0.6rem 0; }
.call-modal-success[hidden] { display: none; }
.call-modal-success-icon {
  width: 52px; height: 52px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; font-size: 1.4rem; font-weight: 700;
}
.call-modal-success p { color: #8a96b8; margin: 0 0 1.4rem; }

/* ===== Service page ===== */
.breadcrumb-back { display: inline-flex; align-items: center; gap: 0.4rem; margin: 2rem 0 0; color: #8a96b8; font-size: 0.9rem; font-weight: 500; }

.service-hero { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: center; padding: 2rem 0 3rem; }
.service-hero-left { max-width: 640px; }
.service-hero-left h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; margin: 0 0 1.3rem; }
.service-hero-left .hero-lead { margin: 0 0 2.2rem; }
.service-hero-left .hero-ctas { margin-bottom: 0; }

.service-hero-visual { position: relative; display: grid; place-items: center; min-height: 340px; }
.service-hero-ring { position: absolute; inset: 12%; border-radius: 50%; background: conic-gradient(from 0deg, #2de1f0, #3b7bff, #7b4dff, #b24bff, #2de1f0); filter: blur(60px); opacity: 0.22; }
.service-card-float {
  position: relative; width: min(100%, 360px); padding: 2.2rem; border-radius: 24px; border: 1px solid rgba(148, 163, 210, 0.18);
  background: linear-gradient(160deg, rgba(16, 20, 42, 0.9), rgba(11, 14, 28, 0.9)); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  animation: floatY 8s ease-in-out infinite;
}
.service-card-float-icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px; color: #2de1f0; background: rgba(59, 123, 255, 0.14); border: 1px solid rgba(123, 77, 255, 0.3); margin-bottom: 1.4rem; }
.service-card-float-icon svg { width: 32px; height: 32px; }
.service-card-float-icon--brand img { width: 38px; height: 38px; object-fit: contain; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.service-card-float-icon--brand:hover img { animation: brand-icon-wiggle 0.6s ease-in-out; }
.service-card-float-icon.service-card-float-icon--sites { width: 100%; height: auto; background: none; border: none; border-radius: 0; padding: 0; justify-content: center; margin-bottom: 1.6rem; }
.service-card-float-icon--sites img { width: 100%; max-width: 210px; height: auto; display: block; margin: 0 auto; }
.service-card-float-icon.service-card-float-icon--gmn { width: 100%; height: auto; background: none; border: none; border-radius: 0; padding: 0; justify-content: flex-start; margin-bottom: 1.6rem; }
.service-card-float-icon--gmn img { width: 100%; max-width: 230px; height: auto; }
.service-card-float-icon.service-card-float-icon--crm { width: 100%; height: auto; background: none; border: none; border-radius: 0; padding: 0; justify-content: center; margin: -0.8rem 0 0.4rem; }
.service-card-float-icon--crm img { width: 100%; max-width: 220px; height: auto; display: block; margin: 0 auto; }
.service-card-float-icon.service-card-float-icon--ads { width: 100%; height: auto; background: none; border: none; border-radius: 0; padding: 0; justify-content: flex-start; margin-bottom: 1.6rem; }
.service-card-float-icon--ads img { width: 100%; max-width: 300px; height: auto; }
.service-card-float-icon.service-card-float-icon--insta { width: 100%; height: auto; background: none; border: none; border-radius: 0; padding: 0; justify-content: center; margin-bottom: 1.6rem; }
.service-card-float-icon--insta img { width: 100%; max-width: 132px; height: auto; display: block; margin: 0 auto; }
.service-card-float.hide-name strong[data-s-name] { display: none; }
@media (prefers-reduced-motion: reduce) {
  .service-card-float-icon--brand img { transition: none; }
  .service-card-float-icon--brand:hover img { animation: none; }
}
.service-card-float strong { display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.service-card-float p { margin: 0 0 1.4rem; color: #8a96b8; font-size: 0.95rem; }
.service-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-chip { padding: 0.4rem 0.8rem; border-radius: 999px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 163, 210, 0.2); font-size: 0.82rem; color: #c7d0ea; }

/* Portfolio / case */
.portfolio-section { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: center; padding: 2.5rem 0 1rem; }
.portfolio-section.portfolio-section--screenshot-mode { grid-template-columns: 1fr; }
.portfolio-section.portfolio-section--screenshot-mode .portfolio-left { max-width: 720px; }
.portfolio-left { max-width: 520px; }
.portfolio-left h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 0.7rem; font-weight: 700; }
.portfolio-left p { margin: 0 0 1.4rem; color: #8a96b8; font-size: 1.02rem; }
.portfolio-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.4rem; }
.portfolio-tab { padding: 0.5rem 1rem; border-radius: 999px; font: inherit; font-size: 0.88rem; font-weight: 600; background: rgba(255, 255, 255, 0.04); color: #c7d0ea; border: 1px solid rgba(148, 163, 210, 0.2); transition: all 0.2s ease; }
.portfolio-tab.is-active { background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); color: #fff; border-color: transparent; }
.portfolio-visit { display: inline-flex; align-items: center; gap: 0.5rem; color: #2de1f0; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.portfolio-visit svg { width: 15px; height: 15px; flex: none; }

.portfolio-preview {
  position: relative; display: block; border-radius: 14px; overflow: hidden; border: 1px solid rgba(148, 163, 210, 0.2);
  background: #0b0e1c; box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-preview:hover { transform: translateY(-4px); box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6); }
.browser-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.8rem; background: rgba(16, 20, 42, 0.95); border-bottom: 1px solid rgba(148, 163, 210, 0.16); }
.browser-dots { display: flex; gap: 0.32rem; flex: none; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; min-width: 0; display: flex; align-items: center; gap: 0.4rem; padding: 0.25rem 0.7rem; border-radius: 7px; background: rgba(6, 7, 15, 0.6); border: 1px solid rgba(148, 163, 210, 0.14); color: #8a96b8; font-size: 0.75rem; }
.browser-url svg { width: 11px; height: 11px; flex: none; }
.browser-url span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.portfolio-viewport { position: relative; height: 300px; overflow: hidden; background: #fff; }
.portfolio-viewport iframe { display: block; width: 100%; height: 1300px; border: 0; pointer-events: none; animation: portScroll 20s ease-in-out infinite; }
.portfolio-badge { position: absolute; right: 0.7rem; bottom: 0.7rem; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.75rem; border-radius: 999px; background: rgba(6, 7, 15, 0.82); backdrop-filter: blur(6px); color: #fff; font-size: 0.76rem; font-weight: 600; }
.portfolio-badge svg { width: 12px; height: 12px; }
.portfolio-preview--screenshot { width: 100%; cursor: default; }
.portfolio-viewport--img { height: auto; background: #fdf9ee; }
.portfolio-viewport--img img { display: block; width: 100%; height: auto; }

/* Resultado / stat highlight */
.stat-highlight { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: center; padding: 2.5rem 0 1rem; }
.stat-highlight-left { max-width: 520px; }
.stat-highlight-left h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 0.7rem; font-weight: 700; }
.stat-highlight-left p { margin: 0; color: #8a96b8; font-size: 1.02rem; }
.stat-highlight-img {
  display: block; width: 100%; max-width: 360px; height: auto; margin: 0 auto; border-radius: 20px; border: 1px solid rgba(148, 163, 210, 0.2);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-highlight-img:hover { transform: translateY(-4px); box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6); }

/* Problem / solution */
.problem-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; padding: 1rem 0 2rem; }
.problem-card { padding: 1.9rem; border-radius: 20px; background: linear-gradient(180deg, rgba(255, 84, 112, 0.1), rgba(255, 84, 112, 0.03)); border: 1px solid rgba(255, 84, 112, 0.2); }
.problem-tag { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 0.9rem; padding: 0.28rem 0.7rem; border-radius: 999px; background: rgba(255, 84, 112, 0.16); color: #ff8095; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.problem-card p { margin: 0; font-size: 1.25rem; font-style: italic; line-height: 1.4; color: #f4d2d9; }
.solution-card { padding: 1.9rem; border-radius: 20px; background: linear-gradient(160deg, #10142a, #0b0e1c); border: 1px solid rgba(123, 77, 255, 0.28); }
.solution-tag { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 0.9rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
.solution-card p { margin: 0; font-size: 1.1rem; line-height: 1.5; color: #e8edfb; }

/* Review */
.review-section { padding: 0.6rem 0 2.2rem; }
.review-shot { max-width: 640px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(148, 163, 210, 0.18); box-shadow: 0 26px 60px rgba(4, 8, 20, 0.5); }
.review-shot img { display: block; width: 100%; height: auto; }

/* Included */
.included-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.included-item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 1.1rem 1.3rem; border-radius: 14px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(155deg, #10142a, #0b0e1c); }
.included-item .check-dot { width: 22px; height: 22px; margin-top: 1px; font-size: 0.78rem; }
.included-item span:last-child { font-size: 1rem; color: #e8edfb; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.step-card { position: relative; padding: 1.6rem 1.4rem; border-radius: 18px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(155deg, #10142a, #0b0e1c); }
.step-number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; margin-bottom: 1rem; font-weight: 700; color: #fff; background: linear-gradient(115deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); }
.step-card strong { display: block; font-size: 1.08rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-card p { margin: 0; color: #8a96b8; font-size: 0.92rem; }

/* Investment */
.investment-panel { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; padding: 2.4rem; border-radius: 24px; border: 1px solid rgba(148, 163, 210, 0.2); background: linear-gradient(160deg, rgba(59, 123, 255, 0.1), rgba(123, 77, 255, 0.07)); overflow: hidden; }
.investment-label { margin: 0 0 0.6rem; color: #8a96b8; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.investment-price { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.6rem; display: block; }
.investment-note { margin: 0 0 1.4rem; color: #8a96b8; font-size: 0.98rem; max-width: 420px; }
.investment-pill { margin: 0; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border-radius: 999px; background: rgba(46, 230, 166, 0.12); border: 1px solid rgba(46, 230, 166, 0.24); color: #2ee6a6; font-size: 0.88rem; font-weight: 600; }
.investment-ctas { display: grid; gap: 0.8rem; }
.investment-ctas .btn-gradient, .investment-ctas .btn-outline { justify-content: center; padding: 1rem 1.4rem; }

/* Others */
.others-list { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.other-chip { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1.2rem; border-radius: 14px; border: 1px solid rgba(148, 163, 210, 0.16); background: linear-gradient(155deg, #10142a, #0b0e1c); font-weight: 600; transition: border-color 0.25s ease, transform 0.25s ease; }
.other-chip:hover { border-color: rgba(148, 163, 210, 0.4); transform: translateY(-2px); color: #e8edfb; }
.other-chip-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; color: #2de1f0; background: rgba(59, 123, 255, 0.12); }
.other-chip-icon svg { width: 20px; height: 20px; }
.other-chip-icon--brand img { width: 22px; height: 22px; object-fit: contain; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.other-chip-icon--brand:hover img, .other-chip:hover .other-chip-icon--brand img { animation: brand-icon-wiggle 0.6s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
  .other-chip-icon--brand img { transition: none; }
  .other-chip-icon--brand:hover img, .other-chip:hover .other-chip-icon--brand img { animation: none; }
}

/* ===== About page ===== */
.about-hero { padding: 4.5rem 0 2rem; max-width: 820px; }
.about-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); line-height: 1.03; letter-spacing: -0.035em; font-weight: 700; margin: 0 0 1.3rem; }
.about-hero p { color: #9aa6c6; font-size: 1.15rem; margin: 0; }

.about-stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; padding: 1rem 0 3rem; }
.about-stat { position: relative; padding: 2rem 1.8rem; border-radius: 20px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(155deg, #10142a, #0b0e1c); overflow: hidden; }
.about-stat-bar { position: absolute; top: 0; left: 1.8rem; width: 44px; height: 3px; background: linear-gradient(115deg, #2de1f0, #b24bff); }
.about-stat strong { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; }
.about-stat p { margin: 0.5rem 0 0; color: #8a96b8; }

.founder-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: center; padding: 2rem 0 3rem; }
.founder-photo-stage { display: grid; place-items: center; }
.founder-photo-wrap { position: relative; width: 100%; max-width: 400px; }
.founder-photo-ring { position: absolute; inset: -8%; border-radius: 50%; background: conic-gradient(from 0deg, #2de1f0, #3b7bff, #7b4dff, #b24bff, #2de1f0); filter: blur(50px); opacity: 0.22; }
.founder-photo-frame { position: relative; padding: 3px; background: linear-gradient(135deg, #2de1f0, #3b7bff 42%, #7b4dff 72%, #b24bff); clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px); }
.founder-photo-inner { clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px); overflow: hidden; background: #000; }
.founder-photo-inner img { width: 100%; height: auto; display: block; object-fit: cover; }
.founder-text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.06; letter-spacing: -0.03em; margin: 0 0 1.2rem; font-weight: 700; }
.founder-text p { color: #9aa6c6; font-size: 1.08rem; max-width: 520px; margin: 0 0 1.2rem; }
.founder-text p.founder-mission { color: #8a96b8; font-size: 1.02rem; margin: 0; }

.mission-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.mission-card { padding: 2rem 1.8rem; border-radius: 20px; border: 1px solid rgba(148, 163, 210, 0.14); background: linear-gradient(155deg, #10142a, #0b0e1c); }
.mission-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1.1rem; color: #2de1f0; background: rgba(59, 123, 255, 0.12); border: 1px solid rgba(123, 77, 255, 0.28); }
.mission-icon svg { width: 26px; height: 26px; }
.mission-card strong { display: block; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.mission-card p { margin: 0; color: #8a96b8; }

.about-cta-panel { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; padding: 2.6rem; border-radius: 24px; border: 1px solid rgba(148, 163, 210, 0.2); background: linear-gradient(160deg, rgba(59, 123, 255, 0.1), rgba(123, 77, 255, 0.07)); overflow: hidden; }
.about-cta-panel h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 0.7rem; font-weight: 700; }
.about-cta-panel p { margin: 0; color: #8a96b8; font-size: 1.05rem; max-width: 460px; }
.about-cta-actions { display: grid; gap: 0.8rem; }
.about-cta-actions .btn-whatsapp, .about-cta-actions .btn-outline { justify-content: center; padding: 1rem 1.4rem; }

/* ===== Sections spacing (shared) ===== */
section { padding: 5rem 0 1rem; }
.hero, .service-hero { padding-top: 4.5rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services-grid, .combos-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { flex-wrap: wrap; padding: 0.65rem 0.9rem; gap: 0.6rem; }
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex; order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 0.15rem;
    padding-top: 0.5rem; margin-top: 0.15rem; border-top: 1px solid rgba(148, 163, 210, 0.14); font-size: 1rem;
  }
  .main-nav.is-open > a, .main-nav.is-open > .nav-dropdown > .nav-dropdown-toggle { padding: 0.65rem 0.3rem; }
  .main-nav.is-open .nav-panel { display: none; position: static; margin-left: 0; padding-top: 0.2rem; }
  .main-nav.is-open .nav-dropdown.is-open .nav-panel { display: block; }
  .main-nav.is-open .nav-panel-inner { box-shadow: none; border: none; background: rgba(255, 255, 255, 0.02); }

  .hero { grid-template-columns: 1fr; gap: 1.4rem; padding: 2.4rem 0 1rem; }
  .hero-visual { min-height: 260px; margin-top: 0.6rem; overflow: hidden; }
  .hero-cards-scene { width: min(100%, 340px); height: auto; }
  .hero-cards-scene--solo .hero-float-card--crm { width: 220px; }
  .services-grid, .combos-grid, .stats-grid { grid-template-columns: 1fr; }
  .configurator-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .contact-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }

  .service-hero { grid-template-columns: 1fr; gap: 1.6rem; padding: 1.4rem 0 2rem; }
  .service-hero-visual { display: none; }
  .portfolio-section { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat-highlight { grid-template-columns: 1fr; gap: 1.6rem; }
  .stat-highlight-img { max-width: 100%; }
  .problem-solution-grid, .included-grid, .steps-grid, .investment-panel { grid-template-columns: 1fr; }

  .about-stats-grid, .mission-grid { grid-template-columns: 1fr; }
  .founder-section { grid-template-columns: 1fr; gap: 2rem; }
  .about-cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .hero-stats { grid-template-columns: 1fr; }
}

/* ===== Legal pages ===== */
.legal-hero { padding-top: 4.5rem; padding-bottom: 0; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.08; letter-spacing: -0.03em; margin: 0.4rem 0 0.6rem; font-weight: 700; }
.legal-updated { color: #8a96b8; margin: 0; }
.legal-content { max-width: 780px; padding-top: 1rem; }
.legal-content h2 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; margin: 2.2rem 0 0.8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #9aa6c6; line-height: 1.7; margin: 0 0 1rem; }
.legal-content ul { color: #9aa6c6; line-height: 1.7; margin: 0 0 1rem; padding-left: 1.3rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content strong { color: #e7ebf7; }
.legal-content a { color: #2de1f0; text-decoration: underline; text-underline-offset: 2px; }

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  max-width: 640px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem; border-radius: 16px; border: 1px solid rgba(148, 163, 210, 0.18);
  background: linear-gradient(160deg, #10142a, #0b0e1c); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; flex: 1 1 260px; color: #9aa6c6; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner p a { color: #2de1f0; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.btn-outline--sm, .btn-gradient--sm { padding: 0.55rem 1rem; font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions button { flex: 1; }
}
