/* ==========================================================
   Express Impressoras — Site institucional
   Paleta: navy (#0a1f3d) + ciano (#00b8d4) + amarelo (#ffd60a)
   ========================================================== */

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

:root {
  --navy-900: #050f23;
  --navy-800: #0a1f3d;
  --navy-700: #0f2d56;
  --navy-600: #143a6e;
  --navy-500: #1f4d8a;

  --cyan-600: #0077b6;
  --cyan-500: #00b8d4;
  --cyan-400: #5ed5e3;
  --cyan-100: #d3f0f4;

  --yellow-500: #ffd60a;
  --yellow-400: #ffe246;
  --yellow-100: #fff6c2;

  --white: #ffffff;
  --offwhite: #f5f8fc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --green: #06d6a0;
  --pink: #f72585;
  --purple: #7209b7;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.06);
  --shadow: 0 8px 24px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 31, 61, 0.12);
  --shadow-cyan: 0 12px 32px rgba(0, 184, 212, 0.25);

  --container: 1200px;
  --header-h: 88px;
  --header-h-mobile: 96px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.accent-yellow {
  background: linear-gradient(135deg, var(--yellow-500), #ff8800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* -------- Botões -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  color: var(--white);
  box-shadow: var(--shadow-cyan);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 184, 212, 0.4);
}

.btn--accent {
  background: linear-gradient(135deg, var(--yellow-500), #ff8800);
  color: var(--navy-900);
  box-shadow: 0 12px 32px rgba(255, 214, 10, 0.35);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 214, 10, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* -------- Header -------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10, 31, 61, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(10, 31, 61, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  border-radius: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.logo-mark svg {
  width: 26px;
  height: 26px;
}

.logo--image {
  gap: 12px;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
  /* leve tratamento pra ficar bem em qualquer fundo */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text-main {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.logo-text-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cyan-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.nav a:hover {
  color: var(--white);
  background: rgba(0, 184, 212, 0.15);
}

.header__cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 184, 212, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 184, 212, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: var(--cyan-500);
  top: -100px;
  right: -100px;
  animation: float 12s ease-in-out infinite;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: var(--yellow-500);
  bottom: -100px;
  left: -100px;
  opacity: 0.2;
  animation: float 15s ease-in-out infinite reverse;
}

.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: auto;
  opacity: 0.05;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 184, 212, 0.1);
  border: 1px solid rgba(0, 184, 212, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan-400);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s backwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto 36px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s backwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
  animation: fadeUp 0.8s var(--ease-out) 0.3s backwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s backwards;
}

.stat {
  text-align: center;
}

.stat__num {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- Seções genéricas -------- */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--offwhite);
}

.section--dark {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cyan-100);
  color: var(--cyan-600);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow--light {
  background: rgba(0, 184, 212, 0.15);
  color: var(--cyan-400);
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.title--light {
  color: var(--white);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

/* -------- Reveal on scroll -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* -------- Logo Showcase (destaque) -------- */
.logo-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.logo-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(0, 184, 212, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 184, 212, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}

.logo-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-showcase__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
}

.logo-showcase__img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s var(--ease-out);
}

.logo-showcase__image:hover .logo-showcase__img {
  transform: scale(1.05) rotate(-2deg);
}

.logo-showcase__halo {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--cyan-500) 0%, transparent 60%);
  opacity: 0.3;
  filter: blur(40px);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.logo-showcase__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 20px;
  letter-spacing: -0.025em;
}

.logo-showcase__text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.logo-showcase__text p strong {
  color: var(--cyan-400);
  font-weight: 700;
}

.logo-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 184, 212, 0.1);
  border: 1px solid rgba(0, 184, 212, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-400);
}

@media (max-width: 900px) {
  .logo-showcase {
    padding: 70px 0;
  }

  .logo-showcase__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .logo-showcase__image {
    max-width: 240px;
  }

  .logo-showcase__badges {
    justify-content: center;
  }
}

/* -------- Services -------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -------- Marcas atendidas -------- */
.marcas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.marca-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.marca-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--cyan-500), var(--cyan-600)) border-box;
  box-shadow: var(--shadow);
}

.marca-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.marca-card__logo {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.marca-card__logo svg {
  height: 100%;
  width: auto;
  max-width: 200px;
}

.marca-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  color: var(--white);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 184, 212, 0.3);
}

.marca-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.marca-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.marca-card p strong {
  color: var(--gray-900);
  font-weight: 600;
}

.marca-card__list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--offwhite);
  border-radius: var(--radius);
}

.marca-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.marca-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
}

.marcas-outras {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gray-300);
}

.marcas-outras p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.marcas-outras__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.marca-chip {
  padding: 8px 18px;
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.2s var(--ease);
}

.marca-chip:hover {
  background: var(--cyan-500);
  color: var(--white);
  border-color: var(--cyan-500);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .marcas {
    grid-template-columns: 1fr;
  }
}

/* -------- Pickup section -------- */
.pickup {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pickup::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-500) 0%, transparent 70%);
  opacity: 0.15;
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.pickup__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.pickup__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 184, 212, 0.15);
  color: var(--cyan-400);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pickup__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pickup__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}

.pickup__steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.pickup__steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.pickup__steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--white);
}

.pickup__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
}

.pickup__map {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pickup__pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pickup__pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--cyan-500);
  border-radius: 50%;
  opacity: 0.4;
  animation: ping 2s ease-out infinite;
}

.pickup__dot {
  position: relative;
  width: 20px;
  height: 20px;
  background: var(--cyan-500);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan-500);
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}

.pickup__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pickup__chip {
  position: absolute;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-800);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: bob 3s ease-in-out infinite;
}

.pickup__chip--1 { top: 12%; left: 8%; animation-delay: 0s; }
.pickup__chip--2 { top: 45%; right: 4%; animation-delay: 1s; }
.pickup__chip--3 { bottom: 14%; left: 18%; animation-delay: 2s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* -------- Sobre -------- */
.sobre {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre__content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sobre__list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.sobre__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sobre__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green), #1b9aaa);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}

.sobre__list li div {
  display: flex;
  flex-direction: column;
}

.sobre__list strong {
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.sobre__list span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.sobre__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.sobre__stat-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sobre__stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: var(--cyan-500);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(30px);
}

.sobre__stat-card--alt {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
}

.sobre__stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}

.sobre__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  position: relative;
}

.sobre__logo-block {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--white), var(--offwhite));
  border: 2px solid var(--cyan-500);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 184, 212, 0.15);
  transition: transform 0.3s var(--ease);
}

.sobre__logo-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 184, 212, 0.25);
}

.sobre__logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sobre__logo-icon svg {
  width: 32px;
  height: 32px;
}

.sobre__logo-img {
  height: 80px;
  width: auto;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.sobre__logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.sobre__logo-sub {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* -------- Curso -------- */
.curso__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.curso__list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 32px 0 36px;
}

.curso__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.curso__bullet {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--yellow-500), #ff8800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.curso__list strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.curso__list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.curso__card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.curso__card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
  color: var(--white);
  position: relative;
}

.curso__pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow-500);
  color: var(--navy-900);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.curso__card-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.curso__card-body {
  padding: 24px 32px;
}

.curso__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
}

.curso__row:last-of-type {
  border-bottom: none;
}

.curso__row span {
  color: var(--gray-500);
}

.curso__row strong {
  color: var(--gray-900);
  font-weight: 600;
}

.curso__divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}

.curso__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.curso__price span {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.curso__price-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan-600);
}

.curso__card .btn {
  margin: 0 32px 32px;
  width: calc(100% - 64px);
}

/* -------- FAQ -------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}

.faq__item[open] {
  border-color: var(--cyan-500);
  box-shadow: var(--shadow);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cyan-500);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 24px 20px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* -------- Contato -------- */
.contato {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contato__desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contato__channels {
  display: grid;
  gap: 12px;
}

.contato__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

a.contato__channel:hover {
  border-color: var(--cyan-500);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.contato__channel-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contato__channel-icon svg {
  width: 22px;
  height: 22px;
}

.contato__channel strong {
  display: block;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 0.95rem;
}

.contato__channel span {
  display: block;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.contato__special {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #fff8d6, #ffe896);
  border: 2px solid var(--yellow-500);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contato__special::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.contato__special-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--yellow-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 31, 61, 0.2);
}

.contato__special-icon svg {
  width: 22px;
  height: 22px;
}

.contato__special strong {
  display: block;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  position: relative;
}

.contato__special p {
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.5;
  position: relative;
}

.contato__special p a {
  color: var(--cyan-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}

.contato__special p a:hover {
  color: var(--navy-800);
}

.contato__form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contato__form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contato__form-sub {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.contato__form label {
  display: block;
  margin-bottom: 16px;
}

.contato__form label > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.contato__form input,
.contato__form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: all 0.2s var(--ease);
  outline: none;
}

.contato__form input:focus,
.contato__form textarea:focus {
  border-color: var(--cyan-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 184, 212, 0.1);
}

.contato__form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

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

.contato__form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* -------- Footer -------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer .logo {
  margin-bottom: 16px;
}

.footer .logo-img {
  height: 64px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer__col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.footer__col a:hover {
  color: var(--cyan-400);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* -------- WhatsApp flutuante -------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-float__label {
  white-space: nowrap;
}

/* -------- Responsivo -------- */
@media (max-width: 900px) {
  html {
    scroll-padding-top: var(--header-h-mobile);
  }

  .header {
    height: var(--header-h-mobile);
  }

  .header__inner {
    padding: 8px 16px;
  }

  .hero {
    padding: 150px 0 80px;
    min-height: auto;
  }

  .logo--image {
    gap: 10px;
  }

  .logo-img {
    height: 56px;
  }

  .logo-text-main {
    font-size: 1rem;
  }

  .logo-text-sub {
    font-size: 0.7rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
    gap: 20px;
  }

  .pickup__inner,
  .sobre,
  .curso__grid,
  .contato {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h-mobile);
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .nav a {
    padding: 12px 16px;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 101;
  }

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

  .wa-float__label {
    display: none;
  }

  .wa-float {
    padding: 16px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h-mobile: 100px;
  }

  .header__inner {
    padding: 6px 12px;
  }

  .logo--image {
    gap: 8px;
  }

  .logo-img {
    height: 56px;
  }

  .logo-text-main {
    font-size: 0.95rem;
  }

  .logo-text-sub {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }

  .section {
    padding: 70px 0;
  }

  .pickup {
    padding: 70px 0;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .contato__form {
    padding: 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom .container {
    justify-content: center;
    text-align: center;
  }

  .sobre__visual {
    grid-template-columns: 1fr;
  }

  .sobre__logo-block {
    grid-column: span 1;
  }

  .pickup__visual {
    max-width: 280px;
  }
}
