﻿  /* ============================================
     LUNA AGENCY — COSMIC BACKGROUND SYSTEM
     4 camadas: gradiente base + estrelas + constelações + estrelas cadentes
     ============================================ */

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

  :root {
    --color-bg-primary: #08060b;
    --color-bg-secondary: #17121d;
    --color-accent-purple: #e8d7c2;
    --color-accent-blue: #c9b8a5;
    --color-text-primary: #f1e7d8;
    --color-text-secondary: #d1c3b2;
    --color-text-tertiary: #b3a596;
    --color-border-subtle: rgba(241, 231, 216, 0.14);
    --color-border-card: rgba(241, 231, 216, 0.18);
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --max-width: 1200px;
    --header-height: 72px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-family);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body::before,
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  body::before {
    background:
      radial-gradient(ellipse 120% 40% at 50% -10%, rgba(0, 0, 0, 0.75) 0%, transparent 60%),
      radial-gradient(ellipse 120% 40% at 50% 110%, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  }

  body::after {
    background:
      radial-gradient(ellipse 140% 90% at 50% 50%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
  }

  /* Skip to content - acessibilidade */
  .skip-to-content {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    padding: 12px 24px;
    background: var(--color-accent-purple);
    color: #0a070f;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    text-decoration: none;
    transition: top 200ms ease;
  }

  .skip-to-content:focus {
    top: 0;
    outline: 2px solid white;
    outline-offset: 2px;
  }

  /* ============================================
     CAMADA 1 — GRADIENTE BASE PROFUNDO
     ============================================ */

  .cosmic-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(ellipse 120% 60% at 50% 25%, rgba(72, 46, 88, 0.35) 0%, transparent 60%),
      radial-gradient(ellipse 90% 55% at 20% 80%, rgba(44, 30, 70, 0.25) 0%, transparent 55%),
      radial-gradient(ellipse 80% 55% at 85% 75%, rgba(30, 20, 44, 0.22) 0%, transparent 60%),
      radial-gradient(ellipse 160% 30% at 60% 50%, rgba(32, 26, 46, 0.4) 0%, transparent 70%),
      linear-gradient(180deg, #05030a 0%, #07050e 30%, #0b0913 60%, #07050d 100%);
  }
  /* Nebulosas animadas — camada de cor que pulsa lentamente */
  .cosmic-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 18% 20%, rgba(120, 70, 150, 0.03) 0%, transparent 65%),
      radial-gradient(ellipse 40% 55% at 82% 65%, rgba(70, 50, 110, 0.025) 0%, transparent 60%),
      radial-gradient(ellipse 35% 30% at 55% 15%, rgba(90, 70, 140, 0.02) 0%, transparent 55%);
    animation: nebulaBreath 20s ease-in-out infinite alternate;
  }
  .cosmic-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 70% 20%, rgba(110, 80, 150, 0.025) 0%, transparent 55%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(50, 40, 90, 0.02) 0%, transparent 50%),
      radial-gradient(ellipse 30% 25% at 45% 70%, rgba(120, 60, 90, 0.015) 0%, transparent 50%);
    animation: nebulaBreath 26s ease-in-out infinite alternate-reverse;
  }
  @keyframes nebulaBreath {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
  }

  /* ============================================
     CAMADA 2 & 3 — CANVAS (estrelas + constelações)
     ============================================ */

  .cosmic-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  /* ============================================
     FALLBACK para prefers-reduced-motion
     Partículas estáticas via CSS
     ============================================ */

  @media (prefers-reduced-motion: reduce) {
    .cosmic-bg::before,
    .cosmic-bg::after {
      animation: none;
      opacity: 0.8;
    }

    .cosmic-canvas {
      opacity: 0.7;
    }
  }

  /* ============================================
     CONTEÚDO — sempre acima do background
     ============================================ */

  .content-layer {
    position: relative;
    z-index: 10;
  }

  /* HEADER */
  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 400ms ease, border-color 400ms ease;
  }

  .site-header.scrolled {
    background: rgba(7, 6, 10, 0.7);
    border-bottom-color: var(--color-border-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 200ms ease;
  }

  .site-header--minimal .logo {
    display: none;
  }

  .logo:hover {
    opacity: 0.85;
  }

  .logo-img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 10px;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-decoration: none;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: color 200ms ease, opacity 200ms ease;
    position: relative;
  }

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

  .nav-links a.active {
    color: var(--color-text-primary);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 1px;
    background: var(--color-accent-purple);
    opacity: 0.6;
    transition: width 200ms ease;
  }

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

  .nav-cta {
    display: none;
  }

  .nav-cta:hover {
    transform: none;
  }

  /* ============================================
     HAMBURGER MENU (MOBILE)
     ============================================ */

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 110;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(7, 6, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 32px 24px;
    z-index: 99;
    border-bottom: 1px solid var(--color-border-subtle);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    transition: color 200ms ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--color-text-primary);
  }

  .mobile-nav .nav-cta {
    display: none;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 120px;
  }

  .hero-overline {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 200ms forwards;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.02em;
    max-width: 840px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 400ms forwards;
  }

  .hero-title .gradient-text {
    background: linear-gradient(135deg, var(--color-accent-purple) 0%, var(--color-accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 600ms forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 800ms forwards;
  }

  .hero--positioning {
    padding: 140px 24px 110px;
  }

  .hero--brand {
    padding: 140px 24px 120px;
  }

  .hero--inner {
    min-height: 70vh;
  }

  .hero-note {
    margin-top: 24px;
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 900ms forwards;
  }

  .hero--brand .hero-title {
    font-size: clamp(58px, 12vw, 140px);
    letter-spacing: 0.35em;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(241, 231, 216, 0.12);
  }

  .hero-emblem {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 120ms forwards;
  }

  .hero-emblem .moon {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5e8d6 0%, #d6c2aa 70%);
    box-shadow: 0 0 26px rgba(241, 231, 216, 0.35);
  }

  .hero-emblem .moon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 18px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-bg-primary);
  }

  .hero-emblem .sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 10px;
    right: 12px;
  }

  .hero-emblem .sparkle::before,
  .hero-emblem .sparkle::after {
    content: '';
    position: absolute;
    background: var(--color-accent-purple);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(241, 231, 216, 0.45);
  }

  .hero-emblem .sparkle::before {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0;
  }

  .hero-emblem .sparkle::after {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px;
  }

  .hero-agency {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 520ms forwards;
  }

  .hero-agency::before,
  .hero-agency::after {
    content: '';
    width: 64px;
    height: 1px;
    background: rgba(241, 231, 216, 0.35);
  }

  .hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 680ms forwards;
  }

  .hero-divider {
    position: relative;
    width: min(280px, 70vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 231, 216, 0.45), transparent);
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 800ms cubic-bezier(0, 0, 0.2, 1) 760ms forwards;
  }

  .hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-accent-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(241, 231, 216, 0.6);
  }

  .hero-scroll {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(241, 231, 216, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .hero-scroll:hover {
    opacity: 1;
    transform: translateY(2px);
  }

  .hero-scroll-icon {
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--color-accent-purple);
    border-bottom: 1px solid var(--color-accent-purple);
    transform: rotate(45deg);
    margin-top: -2px;
  }

  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .comparison-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }

  .comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
  }

  .comparison-list li {
    position: relative;
    padding-left: 18px;
  }

  .comparison-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent-purple);
  }

  .comparison-card--highlight {
    border-color: rgba(241, 231, 216, 0.35);
    background: rgba(22, 18, 28, 0.78);
  }

  .pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .pill {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--color-border-subtle);
    background: rgba(15, 12, 18, 0.6);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
  }

  .btn-primary {
    padding: 16px 32px;
    background: var(--color-accent-purple);
    color: #0a070f;
    border: none;
    border-radius: 999px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 200ms ease;
  }

  .btn-primary:hover {
    background: #f2e6d6;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .btn-primary:hover::after {
    opacity: 1;
  }

  .btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(241, 231, 216, 0.35);
    border-radius: 999px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-secondary:hover {
    background: rgba(241, 231, 216, 0.08);
    border-color: var(--color-accent-purple);
    color: var(--color-accent-purple);
    transform: translateY(-2px);
  }

  /* SEÇÃO DE SERVIÇOS */
  .section {
    padding: 96px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-overline {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* CARDS GRID */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .card {
    background: rgba(15, 12, 18, 0.6);
    border: 1px solid var(--color-border-card);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 231, 216, 0.4), transparent);
    opacity: 0;
    transition: opacity 350ms ease;
  }

  .card:hover {
    background: rgba(22, 18, 28, 0.7);
    border-color: rgba(241, 231, 216, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .card:hover::before {
    opacity: 1;
  }

  .card-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }

  .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .card-description {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-secondary);
  }

  /* SEÇÃO DE DESTAQUE / PROVA SOCIAL */
  .highlight-section {
    padding: 80px 24px;
    text-align: center;
    position: relative;
  }

  .highlight-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 18, 0.6);
    z-index: -1;
  }

  .stats-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
  }

  .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    margin-top: 8px;
    letter-spacing: 0.02em;
  }

  /* CTA FINAL */
  .cta-section {
    padding: 128px 24px;
    text-align: center;
  }

  .cta-section .section-title {
    margin-bottom: 24px;
  }

  .cta-section .section-subtitle {
    margin-bottom: 48px;
  }

  /* FOOTER */
  .site-footer {
    border-top: 1px solid var(--color-border-subtle);
    padding: 48px 24px 32px;
    text-align: center;
  }

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

  .footer-logo-img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    border-radius: 16px;
    opacity: 0.85;
    transition: opacity 200ms ease;
  }

  .footer-logo-img:hover {
    opacity: 1;
  }

  .footer-text {
    font-size: 13px;
    color: var(--color-text-tertiary);
  }

  /* ============================================
     PORTFÓLIO / CASES
     ============================================ */

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }

  .portfolio-card {
    background: rgba(15, 12, 18, 0.6);
    border: 1px solid var(--color-border-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .portfolio-card:hover {
    border-color: rgba(241, 231, 216, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  }

  .portfolio-image {
    height: 200px;
    width: 100%;
    position: relative;
  }

  .portfolio-info {
    padding: 28px 24px;
  }

  .portfolio-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    background: rgba(241, 231, 216, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .portfolio-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .portfolio-description {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-secondary);
  }

  /* Stagger */
  .portfolio-grid .portfolio-card:nth-child(1) { transition-delay: 0ms; }
  .portfolio-grid .portfolio-card:nth-child(2) { transition-delay: 100ms; }
  .portfolio-grid .portfolio-card:nth-child(3) { transition-delay: 200ms; }

  /* ============================================
     DEPOIMENTOS / TESTIMONIALS
     ============================================ */

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }

  .testimonial-card {
    background: rgba(15, 12, 18, 0.6);
    border: 1px solid var(--color-border-card);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .testimonial-card:hover {
    border-color: rgba(241, 231, 216, 0.26);
    background: rgba(22, 18, 28, 0.7);
    transform: translateY(-3px);
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
  }

  .testimonial-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .testimonial-role {
    font-size: 13px;
    color: var(--color-text-tertiary);
  }

  /* Stagger */
  .testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
  .testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 100ms; }
  .testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 200ms; }

  /* ============================================
     SERVIÇOS — CARD FEATURES
     ============================================ */

  .card .card-description:not(:last-child) {
    margin-bottom: 20px;
  }

  .card-features {
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-tertiary);
  }

  .card-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
  }

  .card-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-accent-purple);
    font-weight: 700;
  }

  /* ============================================
     SOBRE — HISTÓRIA
     ============================================ */

  .historia-section {
    padding: 96px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .historia-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 760px;
    margin: 0 auto;
  }

  .historia-content p {
    margin-bottom: 24px;
  }

  .historia-content p:last-child {
    margin-bottom: 0;
  }

  .historia-highlight {
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
  }

  /* ============================================
     SOBRE — VALORES
     ============================================ */

  .values-section {
    padding: 96px 24px;
  }

  /* ============================================
     SOBRE — EQUIPE
     ============================================ */

  .team-section {
    padding: 96px 24px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .team-card {
    background: rgba(15, 12, 18, 0.6);
    border: 1px solid var(--color-border-card);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 231, 216, 0.4), transparent);
    opacity: 0;
    transition: opacity 350ms ease;
  }

  .team-card:hover {
    background: rgba(22, 18, 28, 0.7);
    border-color: rgba(241, 231, 216, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .team-card:hover::before {
    opacity: 1;
  }

  .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
  }

  .team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .team-role {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
  }

  /* ============================================
     CONTATO — FORMULÁRIO
     ============================================ */

  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(15, 12, 18, 0.55);
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--color-text-primary);
    font-family: var(--font-family);
    font-size: 15px;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(241, 231, 216, 0.35);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--color-accent-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 231, 216, 0.12);
  }

  .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E8D7C2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E\");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
  }

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

  .form-submit {
    align-self: flex-start;
  }

  /* ============================================
     CONTATO — INFO CARDS
     ============================================ */

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-card {
    background: rgba(15, 12, 18, 0.6);
    border: 1px solid var(--color-border-card);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 231, 216, 0.4), transparent);
    opacity: 0;
    transition: opacity 350ms ease;
  }

  .info-card:hover {
    background: rgba(22, 18, 28, 0.7);
    border-color: rgba(241, 231, 216, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }

  .info-card:hover::before {
    opacity: 1;
  }

  .info-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
  }

  .info-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
  }

  .info-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
  }

  /* ============================================
     CONTATO — FAQ
     ============================================ */

  .faq-section {
    padding: 96px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }

  .faq-item {
    background: rgba(15, 12, 18, 0.6);
    border: 1px solid var(--color-border-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .faq-item:hover {
    border-color: rgba(241, 231, 216, 0.25);
    background: rgba(22, 18, 28, 0.7);
  }

  .faq-item details {
    padding: 20px 24px;
  }

  .faq-item summary {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 200ms ease;
    user-select: none;
  }

  .faq-item summary:hover {
    color: var(--color-accent-purple);
  }

  .faq-item summary::marker {
    color: var(--color-accent-purple);
  }

  .faq-item[open] summary::marker {
    color: var(--color-accent-blue);
  }

  .faq-content {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    padding: 16px 24px 20px;
    border-top: 1px solid var(--color-border-subtle);
  }

  /* ANIMAÇÕES DE ENTRADA */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0, 0, 0.2, 1),
                transform 600ms cubic-bezier(0, 0, 0.2, 1);
  }

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

  /* Delay escalonado para cards */
  .cards-grid .card:nth-child(1),
  .team-grid .team-card:nth-child(1) { transition-delay: 0ms; }
  .cards-grid .card:nth-child(2),
  .team-grid .team-card:nth-child(2) { transition-delay: 80ms; }
  .cards-grid .card:nth-child(3),
  .team-grid .team-card:nth-child(3) { transition-delay: 160ms; }
  .cards-grid .card:nth-child(4) { transition-delay: 240ms; }
  .cards-grid .card:nth-child(5) { transition-delay: 320ms; }
  .cards-grid .card:nth-child(6) { transition-delay: 400ms; }

  .contact-info .info-card:nth-child(1) { transition-delay: 0ms; }
  .contact-info .info-card:nth-child(2) { transition-delay: 80ms; }
  .contact-info .info-card:nth-child(3) { transition-delay: 160ms; }
  .contact-info .info-card:nth-child(4) { transition-delay: 240ms; }

  .faq-grid .faq-item:nth-child(1) { transition-delay: 0ms; }
  .faq-grid .faq-item:nth-child(2) { transition-delay: 80ms; }
  .faq-grid .faq-item:nth-child(3) { transition-delay: 160ms; }
  .faq-grid .faq-item:nth-child(4) { transition-delay: 240ms; }

  @media (prefers-reduced-motion: reduce) {
    .hero-overline,
    .hero-title,
    .hero-subtitle,
    .hero-actions,
    .hero-note,
    .hero-emblem,
    .hero-agency,
    .hero-tagline,
    .hero-divider {
      animation: none;
      opacity: 1;
    }

    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
    .site-header {
      padding: 0 20px;
    }

    .nav-links {
      display: none;
    }

    .nav-cta {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .section {
      padding: 64px 20px;
    }

    .team-section,
    .historia-section,
    .values-section {
      padding: 64px 20px;
    }

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

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

    .stats-grid {
      gap: 40px;
    }

    .hero {
      padding: 100px 20px 60px;
    }

    .hero--brand .hero-title {
      letter-spacing: 0.22em;
    }

    .hero-agency {
      letter-spacing: 0.35em;
      gap: 12px;
    }

    .hero-agency::before,
    .hero-agency::after {
      width: 42px;
    }

    .cta-section {
      padding: 80px 20px;
    }

    .contact-container {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .faq-section {
      padding: 64px 20px;
    }

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

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

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

  @media (max-width: 480px) {
    .hero-actions {
      flex-direction: column;
      width: 100%;
      max-width: 320px;
    }

    .hero--brand .hero-title {
      letter-spacing: 0.18em;
    }

    .hero-emblem {
      width: 72px;
      height: 72px;
    }

    .hero-agency {
      letter-spacing: 0.28em;
    }

    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
    }

    .stats-grid {
      gap: 24px;
    }

    .stat-number {
      font-size: clamp(24px, 5vw, 36px);
    }

    .contact-container {
      gap: 32px;
    }

    .form-submit {
      width: 100%;
    }
  }

