    :root {
      --bg-dark: #0d0d0f;
      --bg-card: #16161a;
      --primary: #c084fc;
      --primary-hover: #a855f7;
      --secondary: #38bdf8; /* Azul claro para contraste */
      --accent: #f472b6; /* Rosa para destaques sutis */
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border: rgba(255, 255, 255, 0.06);
      --accent-gradient: linear-gradient(135deg, #9333ea, #c084fc);
      --secondary-gradient: linear-gradient(135deg, #0ea5e9, #38bdf8);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
      cursor: none; /* Esconde o cursor padrão globalmente */
    }

    a, button, input, textarea, [role="button"] {
      cursor: none !important; /* Garante que o cursor padrão seja escondido em todos os elementos clicáveis */
    }

    @media (hover: none) and (pointer: coarse) {
      body, a, button, input, textarea, [role="button"] {
        cursor: auto !important;
      }
      .cursor, .cursor-dot {
        display: none !important;
      }
    }

    /* Textura de Grão Luxuosa */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%22100%22%3E%3Cfilter id=%22noise%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%224%22 result=%22noise%22 seed=%221%22/%3E%3C/filter%3E%3Crect width=%22100%22 height=%22100%22 filter=%22url(%23noise)%22 opacity=%220.03%22/%3E%3C/svg%3E');
      pointer-events: none;
      z-index: 1;
      mix-blend-mode: overlay;
    }

    /* Animação de Reveal para Títulos */
    @keyframes textReveal {
      0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
      }
      100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
      }
    }

    h1, h2, h3, .logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* Background Elements com Parallax */
    .glow {
      position: fixed;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
      filter: blur(80px);
      transition: transform 0.1s ease-out;
    }

    .glow-1 { top: -10%; left: -10%; }
    .glow-2 { bottom: -10%; right: -10%; }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    /* Loader */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--bg-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 0.5s ease-out;
    }

    .page-loader.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-content {
      text-align: center;
    }

    .loader-spinner {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      border: 3px solid rgba(192, 132, 252, 0.2);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

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

    @keyframes float-slow {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }

    .loader-text {
      color: var(--text-muted);
      font-size: 14px;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 12px 0;
      background: rgba(10, 10, 12, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: inherit;
    }

    .logo-img {
      width: 40px;
      height: 40px;
    }

    .logo-text {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .logo-text span {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    nav {
      display: flex;
      gap: 32px;
    }

    nav a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
      transition: 0.3s;
      cursor: none; /* Esconde o cursor padrão */
    }

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

    .btn {
      padding: 12px 24px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      cursor: none; /* Esconde o cursor padrão */
      transition: 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
    }

    .btn-primary {
      background: var(--accent-gradient);
      color: white;
      box-shadow: 0 10px 20px rgba(147, 51, 234, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: white;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    /* Hero */
    .hero {
      padding-top: 180px;
      padding-bottom: 100px;
      text-align: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(192, 132, 252, 0.05);
      border: 1px solid rgba(192, 132, 252, 0.15);
      border-radius: 100px;
      color: var(--primary);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
      margin-bottom: 24px;
      /* Removida a animação constante para ser menos "IA" */
    }

    .hero h1 {
      font-size: clamp(40px, 8vw, 72px);
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 24px;
      max-width: 900px;
      margin-inline: auto;
    }

    .hero h1 span {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
    }

    /* Showcase Mockups */
    .showcase {
      margin-top: 80px;
      position: relative;
      perspective: 1000px;
    }

    .configurador-wrapper {
      width: 100%;
      max-width: 1100px;
      height: 650px;
      background: var(--bg-card);
      border-radius: 24px;
      border: 1px solid var(--border);
      margin: auto;
      box-shadow: 0 50px 100px rgba(0,0,0,0.5);
      position: relative;
      overflow: hidden;
      transform: rotateX(5deg);
      transition: 0.5s;
      animation: float-slow 4s ease-in-out infinite;
    }

    .configurador-wrapper:hover {
      transform: rotateX(0deg);
    }

    .configurador-iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .mockup-header {
      height: 40px;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 20px;
      gap: 8px;
    }

    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }

    /* Dashboard Styles */
    .dashboard-content {
      padding: 40px;
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 30px;
      height: 100%;
    }

    .dashboard-sidebar {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .sidebar-item {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(192, 132, 252, 0.1);
      cursor: pointer;
      transition: all 0.3s ease;
      animation: fadeInScale 0.6s ease-out forwards;
      opacity: 0;
    }

    .sidebar-item:hover {
      background: rgba(192, 132, 252, 0.3);
      transform: scale(1.3);
    }

    .sidebar-item.active {
      background: var(--primary);
      box-shadow: 0 0 12px rgba(192, 132, 252, 0.5);
      transform: scale(1.5);
    }

    .sidebar-dot {
      width: 100%;
      height: 100%;
    }

    .dashboard-main {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .dashboard-header {
      animation: fadeInScale 0.6s ease-out forwards;
      opacity: 0;
    }

    .header-title {
      height: 24px;
      width: 40%;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      margin-bottom: 8px;
    }

    .header-subtitle {
      height: 16px;
      width: 25%;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 6px;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(192, 132, 252, 0.1);
      padding: 16px;
      border-radius: 12px;
      animation: fadeInScale 0.6s ease-out forwards;
      opacity: 0;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .metric-card:hover {
      background: rgba(192, 132, 252, 0.08);
      border-color: rgba(192, 132, 252, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(147, 51, 234, 0.2);
    }

    .metric-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(192, 132, 252, 0.1), transparent);
      border-radius: 12px;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .metric-card:hover::after {
      opacity: 1;
    }

    .metric-label {
      height: 12px;
      width: 60%;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .metric-value {
      height: 20px;
      width: 50%;
      background: rgba(192, 132, 252, 0.15);
      border-radius: 6px;
      margin-bottom: 12px;
    }

    .metric-bar {
      height: 6px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 3px;
      overflow: hidden;
    }

    .metric-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), #a855f7);
      border-radius: 3px;
      animation: slideInRight 0.8s ease-out forwards;
      width: 100%;
      transform-origin: left;
    }

    @keyframes slideInRight {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    .chart-container {
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
      height: 120px;
      gap: 12px;
      padding: 20px 0;
      border-top: 1px solid rgba(192, 132, 252, 0.1);
      animation: fadeInScale 0.6s ease-out forwards;
      opacity: 0;
    }

    .chart-bar {
      width: 100%;
      max-width: 40px;
      background: linear-gradient(180deg, var(--primary), rgba(192, 132, 252, 0.3));
      border-radius: 6px 6px 0 0;
      animation: slideInUp 0.8s ease-out forwards;
      height: 100%;
      transform-origin: bottom;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .chart-bar:hover {
      background: linear-gradient(180deg, #e9d5ff, rgba(192, 132, 252, 0.5));
      filter: brightness(1.2);
      transform: scaleY(1.05);
    }

    .chart-bar::before {
      content: attr(data-value);
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.8);
      color: var(--primary);
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      opacity: 0;
      transition: opacity 0.3s ease;
      white-space: nowrap;
      pointer-events: none;
    }

    .chart-bar:hover::before {
      opacity: 1;
    }

    @keyframes slideInUp {
      from { transform: scaleY(0); }
      to { transform: scaleY(1); }
    }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes slideInRight {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes slideInUp {
      from { height: 0; }
      to { height: 100%; }
    }

    @media (max-width: 768px) {
      .dashboard-content {
        grid-template-columns: 1fr;
        padding: 20px;
      }
      .metrics-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Services Section */
    section {
      padding: 100px 0;
    }

    .section-header {
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 16px;
    }

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

    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 40px;
      border-radius: 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      border-color: rgba(192, 132, 252, 0.4);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), rgba(192, 132, 252, 0.05));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 24px;
      transition: 0.3s;
      border: 1px solid rgba(192, 132, 252, 0.1);
    }

    .card:hover .card-icon {
      animation: float 2s ease-in-out infinite;
    }

    .card h3 {
      font-size: 22px;
      margin-bottom: 16px;
    }

    .card p {
      color: var(--text-muted);
      font-size: 15px;
    }

    /* Portfolio Images */
    .portfolio-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(45deg, #1e1b4b, #312e81);
      border-radius: 24px 24px 0 0;
      object-fit: cover;
      background-size: cover;
      background-position: center;
    }

    /* Carrossel de Depoimentos */
    .carousel-container {
      position: relative;
      max-width: 900px;
      margin: auto;
      overflow: hidden;
    }

    .carousel {
      display: flex;
      transition: transform 0.5s ease-out;
    }

    .testimonial {
      min-width: 100%;
      padding: 60px 40px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      text-align: center;
    }

    .testimonial-stars {
      color: #fbbf24;
      font-size: 18px;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }

    .testimonial-text {
      font-size: 18px;
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.8;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .testimonial-role {
      font-size: 14px;
      color: var(--primary);
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 30px;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-btn:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: scale(1.1);
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      cursor: pointer;
      transition: 0.3s;
    }

    .carousel-dot.active {
      background: var(--primary);
      border-color: var(--primary);
    }

    /* Formulário */
    .contact-form {
      max-width: 600px;
      margin: auto;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text-main);
      font-family: inherit;
      font-size: 14px;
      transition: 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: rgba(192, 132, 252, 0.05);
      transform: scale(1.02);
    }

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

    .form-submit {
      width: 100%;
    }

    /* FAQ */
    .faq-grid {
      max-width: 800px;
      margin: auto;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    .faq-question {
      padding: 24px;
      cursor: none; /* Esconde o cursor padrão */
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: 0.3s;
    }

    .faq-question:hover {
      background: rgba(192, 132, 252, 0.05);
    }

    .faq-answer {
      padding: 0 24px 24px;
      color: var(--text-muted);
      display: none;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    /* CTA */
    .cta-box {
      background: linear-gradient(135deg, #7e22ce, #9333ea);
      border-radius: 24px;
      padding: 80px 40px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-box h2 {
      font-size: clamp(32px, 5vw, 48px);
      margin-bottom: 20px;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .cta-box p {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 40px;
      max-width: 600px;
      margin-inline: auto;
    }

    .cta-box .btn-primary {
      background: white;
      color: #9333ea;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Footer */
    footer {
      padding: 60px 0 30px;
      border-top: 1px solid var(--border);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 30px;
    }

    .footer-section ul li {
      margin-bottom: 12px;
    }

    .footer-section ul li a {
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .footer-legal a {
      color: var(--text-muted);
      font-size: 12px;
      text-decoration: none;
      transition: 0.3s;
    }

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

    .social-links {
      display: flex;
      gap: 16px;
    }

    .social-links a {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    
    .social-links a i, .social-links a svg {
      width: 20px !important;
      height: 20px !important;
      display: block;
    }

    .social-links a:hover {
      color: var(--primary);
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .copyright {
      text-align: center;
      color: var(--text-muted);
      font-size: 14px;
    }

    /* Animations */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

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

    .success-message {
      display: none;
      padding: 16px 20px;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid #22c55e;
      border-radius: 12px;
      color: #22c55e;
      margin-bottom: 20px;
      text-align: center;
    }

    .success-message.show {
      display: block;
      animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Cursor Magnético */
    .cursor {
      position: fixed;
      width: 30px;
      height: 30px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      box-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
    }

    .cursor.active {
      opacity: 1;
    }

    .cursor-dot {
      position: fixed;
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .cursor-dot.active {
      opacity: 1;
    }

    @media (max-width: 768px) {
      nav { display: none; }
      .hero h1 { font-size: 42px; }
      .cta-box h2 { font-size: 32px; }
      .testimonial { padding: 40px 20px; }
      .cursor, .cursor-dot { display: none; }
    }

    /* Header Actions */
    .header-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn-whatsapp {
      background: #25d366 !important;
      color: white !important;
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2) !important;
    }

    .btn-whatsapp:hover {
      background: #128c7e !important;
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4) !important;
    }

    @media (max-width: 768px) {
      .header-actions span {
        display: none;
      }
      .header-actions .btn {
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
      }
      .header-actions .btn i {
        margin: 0;
      }
    }

    /* Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 10, 12, 0.9);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 20px; /* Garante respiro em telas pequenas */
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: var(--bg-card);
      width: min(600px, 100%);
      max-height: 90vh; /* Não ultrapassa a altura da tela */
      overflow-y: auto; /* Scroll interno se necessário */
      padding: 40px;
      border-radius: 24px;
      border: 1px solid var(--border);
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Scrollbar customizada para o modal */
    .modal-content::-webkit-scrollbar {
      width: 6px;
    }
    .modal-content::-webkit-scrollbar-track {
      background: transparent;
    }
    .modal-content::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 10px;
    }

    .modal-overlay.active .modal-content {
      transform: scale(1) translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: none;
      color: var(--text-muted);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none !important;
      transition: 0.3s;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: white;
    }

    /* Ajustes no formulário dentro do modal */
    .contact-form {
      max-width: 100%;
      background: transparent;
      padding: 0;
      border: none;
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left;
    }

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

    .form-group input, .form-group textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      padding: 12px 16px;
      border-radius: 10px;
      color: white;
      font-family: inherit;
      transition: 0.3s;
    }

    .form-group input:focus, .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: rgba(255, 255, 255, 0.05);
    }

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

    .success-message {
      display: none;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.2);
      color: #4ade80;
      padding: 16px;
      border-radius: 10px;
      margin-bottom: 20px;
      font-size: 14px;
      text-align: center;
    }

    .success-message.show {
      display: block;
    }

    /* Cursor Styles */
    .cursor {
      position: fixed;
      width: 30px;
      height: 30px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
      transform: translate(-50%, -50%);
      opacity: 0;
    }

    .cursor.active {
      opacity: 1;
    }

    .cursor.hover {
      background: rgba(192, 132, 252, 0.1);
      border-color: var(--primary-hover);
    }

    .cursor-dot {
      position: fixed;
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      opacity: 0;
    }

    .cursor-dot.active {
      opacity: 1;
    }

    /* Project Card Hover */
    .project-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .project-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 20px 40px rgba(147, 51, 234, 0.1);
    }

    .project-card:hover .portfolio-image {
      transform: scale(1.05);
    }

    .portfolio-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
    }

    .btn-link i {
      transition: transform 0.3s ease;
    }

    .project-card:hover .btn-link i {
      transform: translate(2px, -2px);
    }

    /* Animação Loader para o Formulário */
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .spin {
      animation: spin 1s linear infinite;
      display: inline-block;
    }
