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

  :root {
    --bg-primary: #0A0A0F;
    --bg-secondary: #111827;
    --bg-card: #161d2e;
    --accent: #6C63FF;
    --accent-light: #A78BFA;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
  }

  .nav-logo span { color: var(--accent-light); }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }

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

  .btn-nav {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

  .nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  .nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */ 
#home #svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: auto;

    z-index: 0;
    pointer-events: none;
}

.hero-visual, .hero-content {
    position: relative;
    z-index: 1;
}
#home {
    position: relative;
    min-height: auto;
    padding: 4rem 1rem 0rem 1rem;
}
  .hero-container {
    margin: 0 3rem;
    display:flex;
    gap:2rem;
    align-items:center;
    min-height: auto;
    padding: 2rem 0rem 1rem 0;
}

  .hero-content { flex: 1; }

  .photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 520px;
    border-radius: 16px;
    border-color: blue;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .photo-placeholder img {
    width: 30rem;
    height: 30rem;
    border-radius: 50px;
    border-color: blue;
    border: 40px;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(108,99,255,0.1);
    border: 1px solid rgba(108,99,255,0.25);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
  }

  .hero-title .gradient {
    background: linear-gradient(135deg, #fff 30%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.75;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

  .btn-primary svg { width: 18px; height: 18px; }

  .btn-primary.btn-small {
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
  }

  .hero-visual {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mockup-device {
    width: 100%;
    max-width: 800px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  }

  .mockup-bar {
    background: var(--bg-secondary);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .mockup-dot.dot-red { background: #FF5F56; }
  .mockup-dot.dot-yellow { background: #FFBD2E; }
  .mockup-dot.dot-green { background: #27C93F; }

  .mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
  }

  .mockup-content {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mockup-line {
    height: 14px;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
  }
  .mockup-line.auto { height: auto; background: transparent; }

  .mockup-line.accent { background: rgba(108,99,255,0.35); height: 22px; }
  .mockup-line.short { width: 55%; }
  .mockup-line.medium { width: 75%; }

  .mockup-grid {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }
  .mockup-grid-col {
    flex: 1;
    height: 60px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  .mockup-btn-fake {
    display: inline-block;
    width: 160px;
    height: 44px;
    background: rgba(108,99,255,0.4);
    border-radius: 10px;
    margin-top: 0.75rem;
  }

  .mockup-img-fake {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, rgba(108,99,255,0.15) 0%, rgba(167,139,250,0.08) 100%);
    border-radius: 8px;
    border: 1px solid rgba(108,99,255,0.15);
  }

  /* ── SECTIONS GENERAL ── */
  section {
    padding: 5rem 2rem;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
  }

  /* ── PROBLEMA ── */
  #problema { background: var(--bg-secondary); }

  .problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .problema-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.2s;
  }

  .problema-card:hover { border-color: rgba(108,99,255,0.3); }

  .problema-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(108,99,255,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
  }

  .problema-icon svg { width: 20px; height: 20px; color: var(--accent-light); }

  .problema-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .problema-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
  }

  /* ── PARA QUEM É ── */
  #audience { }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .audience-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.15s;
    cursor: default;
  }

  .audience-item:hover {
    border-color: rgba(108,99,255,0.35);
    transform: translateY(-2px);
  }

  .audience-item svg {
    width: 28px; height: 28px;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
  }

  .audience-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
  }

  .audience-note {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 560px;
  }

  /* ── O QUE FAZEMOS ── */
  #entregaveis { background: var(--bg-secondary); }

  .fazemos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .fazemos-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: border-color 0.2s;
  }

  .fazemos-card:hover { border-color: rgba(108,99,255,0.3); }

  .fazemos-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(108,99,255,0.25);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .fazemos-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .fazemos-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ── PORTFÓLIO ── */
  #portfolio {} 

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }

  .portfolio-card:hover {
    border-color: rgba(108,99,255,0.35);
    transform: translateY(-3px);
  }

  .portfolio-thumb {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .portfolio-thumb.theme-purple {
    background: linear-gradient(135deg, #1a1040 0%, #0f0a2e 100%);
  }
  .portfolio-thumb.theme-green {
    background: linear-gradient(135deg, #0d1f12 0%, #081509 100%);
  }
  .portfolio-thumb.theme-orange {
    background: linear-gradient(135deg, #1f1008 0%, #120a04 100%);
  }

  .portfolio-thumb-inner {
    width: 90%;
    height: 90%;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
  }

  .pt-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.07); }
  .pt-bar.a { background: rgba(108,99,255,0.35); width: 60%; }
  .theme-green .pt-bar.a { background: rgba(39,201,111,0.4); }
  .theme-orange .pt-bar.a { background: rgba(234,175,50,0.4); }

  .pt-bar.b { width: 80%; }
  .pt-bar.c { width: 50%; }

  .pt-btn { width: 72px; height: 22px; border-radius: 5px; background: rgba(108,99,255,0.3); margin-top: 4px; }
  .theme-green .pt-btn { background: rgba(39,201,111,0.35); }
  .theme-orange .pt-btn { background: rgba(234,175,50,0.35); }

  .portfolio-info {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
  }

  .portfolio-tag {
    font-size: 0.75rem;
    color: var(--accent-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
  }

  .portfolio-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .portfolio-link {
    display: grid;         /* Ocupa a largura total do card */
    text-decoration: none;  /* Remove o sublinhado padrão do link */
    color: inherit;         /* Copia a cor do texto original do card */
  }
  /* ── INCLUSO ── */
  #incluso { background: var(--bg-secondary); }

  .incluso-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }

  .incluso-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .incluso-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
  }

  .incluso-check {
    width: 20px; height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: rgba(108,99,255,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }

  .incluso-check svg { width: 11px; height: 11px; color: var(--accent-light); }

  .incluso-aside {
    background: var(--bg-card);
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: var(--radius);
    padding: 2rem;
  }

  .incluso-aside h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .incluso-aside p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  /* ── DEPOIMENTOS ── */
  #depoimentos { display: none;}

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .depo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.2s;
  }

  .depo-card:hover { border-color: rgba(108,99,255,0.25); }

  .depo-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
  }

  .depo-stars svg { width: 14px; height: 14px; color: var(--accent-light); }

  .depo-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  .depo-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .depo-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(108,99,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-light);
  }

  .depo-name {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .depo-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }

  /* ── CTA FINAL ── */
  #contato {
    background: linear-gradient(135deg, rgba(108,99,255,0.12) 0%, rgba(10,10,15,0) 70%);
    border-top: 1px solid var(--border);
  }

  .cta-box {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-box .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .cta-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-cta:hover { opacity: 0.9; transform: translateY(-2px); }

  .btn-cta svg { width: 20px; height: 20px; }

  .cta-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
  }

  .footer-logo span { color: var(--accent-light); }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

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

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

  /* ── UTILITIES ── */
  .delay-100 { transition-delay: 0.1s; }
  .delay-150 { transition-delay: 0.15s; }
  .delay-200 { transition-delay: 0.2s; }
  .text-center { text-align: center; }

  /* ── RESPONSIVE ── */
  @media (min-width: 768px) and (max-width: 1024px) {
    #home { padding: 4rem 0rem 0rem 0rem; }
    .photo-placeholder {
      height: 100%;
      width: 10rem;
      margin: 2rem 5rem;

      img {
        max-height: 100%;
        width: auto;
      }
      
    }
}
  @media (max-width: 768px) {
    nav { padding: 1rem 1.25rem; }

    .nav-links, .btn-nav { display: none; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: rgba(10,10,15,0.97);
      padding: 1.5rem;
      border-bottom: 1px solid var(--border);
      gap: 1.25rem;
    }

    .nav-links.open + .btn-nav {
      display: flex;
      margin: 0 1.25rem 1.25rem;
    }

    .nav-mobile-toggle { display: flex; }

    .hero-container {
      flex-direction: column;
      padding: 1rem 0rem 3rem;
      gap: 2.5rem;
      text-align: center;
      margin: 0 auto;
      margin-right: 0rem;
      margin-left: 0rem;
    }

    .hero-subtitle { max-width: 100%; }

    .hero-visual { width: 100%; }

    .incluso-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .photo-placeholder {display: none; }

    section { padding: 4rem 1.25rem; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }

    /* mockup — tamanhos originais no mobile */
    .mockup-content { padding: 1.5rem; gap: 0.75rem; }
    .mockup-line { height: 10px; }
    .mockup-line.accent { height: 10px; }
    .mockup-btn-fake { width: 120px; height: 32px; margin-top: 0.5rem; }
    .mockup-img-fake { display: none; }
    .mockup-grid { display: none; }
  }
