﻿/* Font Face */
@font-face {
  font-family: 'Nasalization RG';
  src: url('../../fonts/nasalization/Nasalization%20Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Design Tokens */
:root {
  --purple: #7f00b4;
  --purple-light: #a855f7;
  --purple-glow: #b06bff;
  --purple-dark: #4b006a;
  --purple-deeper: #1e0030;
  --green: #00c853;
  --green-dark: #00783a;
  --black: #050507;
  --white: #f0eef8;
  --gray-900: #111115;
  --gray-800: #1a1a20;
  --gray-700: #2a2a35;
  --gray-400: #6b6b80;
  --gray-300: #9999aa;
  --text-dark: #f0eef8;
  --text-muted: #9999aa;
  --line: rgba(127, 0, 180, 0.12);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-space: clamp(80px, 12vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at top right, rgba(127, 0, 180, 0.18), transparent 22%),
    radial-gradient(circle at left center, rgba(0, 200, 83, 0.08), transparent 18%),
    linear-gradient(180deg, #050507 0%, #0a0a0f 100%);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: var(--purple) var(--black);
  cursor: none;
  width: 100%;
}

body.portfolio-modal-open {
  overflow: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 999px;
  border: 4px solid var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: none;
}

.mascotes-shell {
  width: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  position: relative;
}

/* Shared Buttons */
.btn-primary,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #050507;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-primary {
  padding: 16px 26px;
  box-shadow: 0 20px 40px rgba(0, 200, 83, 0.25);
}

.form-submit {
  width: 100%;
  padding: 16px 20px;
  margin-top: 15px;
  border-radius: 16px;
  cursor: pointer;
}

.btn-primary:hover,
.form-submit:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: transparent;
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  background: rgba(127, 0, 180, 0.1);
}

/* Header / Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 42px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  box-sizing: border-box;
}

nav.scrolled {
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(127, 0, 180, 0.15);
  padding: 16px 42px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo-image {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  min-width: 0;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(240, 238, 248, 0.72);
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--purple-light);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green);
  color: #050507;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 0 0 auto;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

body.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main Layout */
main section {
  padding: var(--section-space) 42px 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow-x: clip;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 100px);
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.section-chip,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-chip {
  color: var(--purple-light);
  background: rgba(127, 0, 180, 0.15);
  box-shadow: inset 0 0 0 1px rgba(127, 0, 180, 0.3);
}

.section-chip-dark {
  color: var(--purple-light);
  background: rgba(255, 255, 255, 0.08);
}

.hero-copy h1,
.section-heading h2,
.benefits-copy h2,
.cta-copy h2,
.deliverable-copy h3,
.process-card h3,
.portfolio-copy h3,
.cta-form-card h3 {
  font-family: 'Nasalization RG', sans-serif;
}

.hero-copy h1 {
  max-width: 610px;
  margin-top: 24px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.hero-copy h1 span {
  color: var(--purple-light);
}

.hero-copy p {
  max-width: 560px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-300);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 200, 83, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-cloud,
.intro-blob,
.benefits-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-cloud-a {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 68%);
  top: 50px;
  right: 70px;
}

.hero-cloud-b {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.16), transparent 70%);
  bottom: 50px;
  left: 30px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(127, 0, 180, 0.12);
}

.hero-ring-a {
  width: 460px;
  height: 460px;
}

.hero-ring-b {
  width: 540px;
  height: 540px;
  border-style: dashed;
}

.hero-character-wrap {
  position: relative;
  width: min(460px, 100%);
  z-index: 2;
}

.hero-character {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 50px rgba(82, 26, 113, 0.24));
}

/* Shared Section Headings */
.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.heading-accent-purple {
  color: var(--purple-light);
}

.heading-accent-green {
  color: var(--green);
}

/* O Que Entregamos */
.intro-section {
  position: relative;
  padding-top: var(--section-space);
  overflow: hidden;
}

.intro-blob {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(127, 0, 180, 0.18), transparent 68%);
  left: -180px;
  top: 40px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.deliverable-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--gray-900);
  border: 1px solid rgba(127, 0, 180, 0.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.deliverable-card-accent {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 20px;
  align-items: end;
  background: linear-gradient(135deg, #1a1a20, #1e0030 62%, #4b006a);
  color: var(--white);
}

.deliverable-card-accent .card-kicker,
.deliverable-card-accent p {
  color: rgba(255, 255, 255, 0.88);
}

.deliverable-card-accent .card-kicker {
  background: rgba(255, 255, 255, 0.14);
}

.deliverable-copy h3 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.08;
}

.deliverable-copy p {
  margin-top: 16px;
  max-width: 46ch;
  color: var(--gray-300);
  font-size: 15px;
  line-height: 1.7;
}

.deliverable-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  list-style: none;
}

.deliverable-list li {
  padding-left: 18px;
  position: relative;
  color: var(--white);
  line-height: 1.6;
}

.deliverable-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
}

.deliverable-character {
  align-self: end;
  justify-self: center;
  max-height: 350px;
  filter: drop-shadow(0 16px 34px rgba(61, 28, 82, 0.24));
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Processo Breve */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--gray-900);
  border: 1px solid rgba(127, 0, 180, 0.1);
}

.process-number {
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'Nasalization RG', sans-serif;
  font-size: 14px;
  color: var(--purple-light);
}

.process-card h3 {
  font-size: 1.12rem;
  line-height: 1.15;
}

.process-card p {
  margin-top: 14px;
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.65;
}

/* Por Que Funciona */
.benefits-section {
  padding-top: var(--section-space);
  overflow: hidden;
}

.benefits-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 24%, rgba(168, 85, 247, 0.24), transparent 24%),
    linear-gradient(135deg, #111115, #1e0030);
  color: var(--white);
  overflow: hidden;
}

.benefits-copy h2 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(246, 241, 252, 0.84);
  line-height: 1.65;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.benefits-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.benefits-aura {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 126, 106, 0.42), transparent 70%);
  bottom: 20px;
}

.benefits-character {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  max-height: 460px;
  object-fit: contain;
}

/* Portfolio */
.portfolio-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.portfolio-content {
  padding-right: 12px;
}

.portfolio-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 18px;
}

.portfolio-content h2 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-family: 'Nasalization RG', sans-serif;
}

.portfolio-content p {
  margin-top: 18px;
  max-width: 42ch;
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.75;
}

.portfolio-controls {
  display: flex;
  gap: 14px;
  justify-content: center;
  width: min(100%, 620px);
  margin-top: 1px;
}

.portfolio-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 22px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.portfolio-arrow:hover {
  border-color: var(--purple-light);
  background: rgba(127, 0, 180, 0.12);
  transform: translateY(-2px);
}

.portfolio-carousel {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-track {
  position: relative;
  width: min(100%, 620px);
  height: 520px;
}

.portfolio-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 360px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s var(--ease),
    filter 0.45s var(--ease),
    z-index 0.45s var(--ease);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.portfolio-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.portfolio-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-slide.is-active {
  z-index: 5;
  transform: translate(-50%, -50%) scale(1.06);
  opacity: 1;
  filter: none;
}

.portfolio-slide.is-prev {
  z-index: 4;
  transform: translate(calc(-50% - 165px), -50%) scale(0.88);
  opacity: 0.85;
  filter: saturate(0.85);
}

.portfolio-slide.is-next {
  z-index: 4;
  transform: translate(calc(-50% + 165px), -50%) scale(0.88);
  opacity: 0.85;
  filter: saturate(0.85);
}

.portfolio-slide.is-prev-2 {
  z-index: 3;
  transform: translate(calc(-50% - 255px), -50%) scale(0.72);
  opacity: 0.45;
  filter: blur(0.5px) saturate(0.7);
}

.portfolio-slide.is-next-2 {
  z-index: 3;
  transform: translate(calc(-50% + 255px), -50%) scale(0.72);
  opacity: 0.45;
  filter: blur(0.5px) saturate(0.7);
}

.portfolio-slide.is-hidden {
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(5, 5, 7, 0.84);
  backdrop-filter: blur(16px);
}

.portfolio-modal.is-open {
  display: flex;
}

.portfolio-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.portfolio-modal-image {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  border-radius: 28px;
}

.portfolio-modal-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.portfolio-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 7, 0.42);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-tap-highlight-color: transparent;
}

.portfolio-slide:focus-visible,
.portfolio-arrow:focus-visible,
.portfolio-modal-close:focus-visible {
  box-shadow: 0 0 0 2px rgba(5, 5, 7, 0.9), 0 0 0 4px rgba(168, 85, 247, 0.75);
}

/* CTA / Formulario */
.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 42px;
}

.cta-copy {
  padding: 8px 0;
}

.cta-copy h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

.cta-copy p {
  margin: 20px 0 26px;
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.75;
}

.cta-form-card {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #111115, #1a1a20);
  border: 1px solid rgba(127, 0, 180, 0.15);
  box-shadow: var(--shadow-soft);
}

.cta-form-card h3 {
  font-size: 1.45rem;
}

.cta-form-card > p {
  margin-top: 8px;
  color: var(--gray-400);
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-top: 16px;
}

.form-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-300);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: none;
  background: rgba(127, 0, 180, 0.04);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  border-color: var(--purple-light);
  outline: none;
  box-shadow: none;
}

/* Footer */
footer {
  background: #140d1d;
  border-top: 1px solid rgba(127, 0, 180, 0.15);
  padding: 60px 42px 42px;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  font-family: 'Nasalization RG', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-image {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(240, 238, 248, 0.62);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1a1a20;
  border: 1px solid #2a2a35;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s ease;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.footer-social a:hover {
  border-color: var(--purple);
  background: rgba(127, 0, 180, 0.15);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Nasalization RG', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(240, 238, 248, 0.62);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(240, 238, 248, 0.62);
}

/* WhatsApp Float */
#whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  opacity: 0;
  transform: scale(0) translateY(20px);
  animation: floatIn 0.5s 0.8s var(--ease) forwards;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@keyframes floatIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .deliverables-grid,
  .benefits-panel,
  .cta-grid,
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-showcase {
    padding-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }

  main section,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  nav {
    padding: 20px 24px;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
    flex: 0 0 auto;
  }

  body.nav-open .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px 16px;
    border-radius: 20px;
    background: rgba(5, 5, 7, 0.96);
    border: 1px solid rgba(127, 0, 180, 0.18);
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .nav-cta {
    display: inline-flex;
    order: 4;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-grid {
    min-height: auto;
    gap: 20px;
  }

  .hero-section {
    min-height: auto;
    display: block;
    padding-top: calc(var(--section-space) + 52px);
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .deliverable-card,
  .benefits-panel,
  .cta-form-card {
    padding: 24px;
  }

  .deliverable-card-accent {
    grid-template-columns: 1fr;
  }

  .deliverable-character {
    max-height: 240px;
  }

  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .portfolio-carousel {
    min-height: 420px;
  }

  .portfolio-controls {
    width: 100%;
    margin-top: 8px;
  }

  .portfolio-track {
    height: 420px;
  }

  .portfolio-slide {
    width: 190px;
    height: 300px;
  }

  .portfolio-slide.is-prev {
    transform: translate(calc(-50% - 112px), -50%) scale(0.8);
  }

  .portfolio-slide.is-next {
    transform: translate(calc(-50% + 112px), -50%) scale(0.8);
  }

  .portfolio-slide.is-prev-2,
  .portfolio-slide.is-next-2 {
    opacity: 0;
    pointer-events: none;
  }

  .portfolio-modal {
    padding: 18px;
  }

  .portfolio-modal-image {
    max-height: 82vh;
  }

  .portfolio-modal-dialog {
    gap: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  #whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #cursor {
    display: none;
  }

  .hero-cloud,
  .hero-ring,
  .intro-blob,
  .benefits-aura,
  #whatsapp-float {
    animation: none !important;
  }

  .reveal,
  .portfolio-slide,
  .portfolio-modal-dialog,
  #whatsapp-float {
    opacity: 1 !important;
    transform: none !important;
  }

  .portfolio-track,
  .portfolio-slide {
    transition: none !important;
  }

  .portfolio-slide.is-hidden {
    opacity: 0 !important;
  }
}
