  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: white;
      overflow-x: hidden;
      height: 500vh;
      background: #000;
  }

  /* ZOOM CONTAINER COM CAMADAS */
  .zoom-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -2;
  }

  .bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transform-origin: center center;
      will-change: transform;
      transition: transform 0.1s linear, opacity 0.8s ease-in-out;
      opacity: 0;
  }

  .bg-layer.active {
      opacity: 1;
  }

/* DEIXAR FUNDO MAIS ESCURO */
#zoom-overlay {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* Opcional: Ajustar transição do overlay durante o scroll */
.bg-layer {
    transition: transform 0.1s linear, opacity 0.8s ease-in-out;
}

/* Ainda mais escuro: adicionar uma segunda camada de overlay */
#zoom-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

  /* TUTORIAL MOBILE - APENAS AS MÃOS */
  .mobile-tutorial {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      /* Fundo transparente */
      z-index: 10000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s;
      pointer-events: none;
      /* Permite clicar através do tutorial */
  }

  .mobile-tutorial.active {
      opacity: 1;
      visibility: visible;
  }

  .swipe-demo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      gap: 30px;
  }

  .swipe-hand {
      width: 60px;
      height: 60px;
      background: rgba(0, 212, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #00d4ff;
      animation: swipeAnimation 2s infinite;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  @keyframes swipeAnimation {

      0%,
      100% {
          transform: translateX(0);
      }

      25% {
          transform: translateX(-20px);
      }

      75% {
          transform: translateX(20px);
      }
  }

  /* OVERLAY DE TRANSIÇÃO */
  .transition-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
  }

  .transition-overlay.active {
      opacity: 1;
  }

  /* INDICADOR DE CARREGAMENTO */
  .loading-indicator {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      pointer-events: none;
  }

  .loading-indicator.active {
      opacity: 1;
  }

  .loading-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      border-top-color: #00d4ff;
      animation: spin 1s linear infinite;
  }

  @keyframes spin {
      to {
          transform: rotate(360deg);
      }
  }

  .loading-text {
      color: white;
      font-size: 0.9rem;
      opacity: 0.7;
      text-align: center;
  }

  /* CONTROLES DE BACKGROUND */
  .bg-controls {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 20px;
      z-index: 998;
      opacity: 0;
      transition: opacity 0.5s ease;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      padding: 10px 20px;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bg-controls:hover {
      opacity: 1 !important;
  }

  .bg-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.2rem;
  }

  .bg-btn:hover {
      background: rgba(0, 212, 255, 0.3);
      transform: scale(1.1);
      border-color: rgba(0, 212, 255, 0.5);
  }

  .bg-indicator {
      display: flex;
      gap: 8px;
  }

  .bg-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .bg-dot.active {
      background: #00d4ff;
      transform: scale(1.2);
  }

  .bg-dot:hover {
      background: rgba(0, 212, 255, 0.7);
  }

  .bg-info {
      font-size: 0.8rem;
      opacity: 0.7;
      min-width: 120px;
      text-align: center;
  }

  /* MENU HAMBURGUER MINIMALISTA */
  .menu-toggle {
      position: fixed;
      top: 25px;
      right: 25px;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: scale(1.05);
  }

  .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      margin: 4px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
  }

  /* MENU LATERAL COM PARTÍCULAS */
  .menu-sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100vh;
      
      backdrop-filter: blur(15px);
      z-index: 1000;
      padding: 100px 30px 30px;
      transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      overflow: hidden;
      border-left: 1px solid rgba(0, 212, 255, 0.3);
  }

  .menu-sidebar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      z-index: -1;
  }

  .menu-sidebar.active {
      right: 0;
  }

  /* LINKS DO MENU ESTILIZADOS */
  .menu-sidebar a {
      display: block;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 1.3rem;
      margin: 20px 0;
      padding: 12px 0;
      transition: all 0.3s;
      position: relative;
      font-weight: 300;
      letter-spacing: 0.5px;
  }

  .menu-sidebar a:hover {
      color: #00d4ff;
      transform: translateX(10px);
      padding-left: 10px;
  }

  .menu-sidebar a::before {
      content: '';
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      background: #00d4ff;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .menu-sidebar a:hover::before {
      width: 8px;
      height: 8px;
      left: -5px;
  }

  .menu-sidebar a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #00d4ff, transparent);
      transition: width 0.3s;
  }

  .menu-sidebar a:hover::after {
      width: 100%;
  }

  /* CONTEÚDO FLUTUANTE */
  .content-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 20px;
      z-index: 1;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
  }

  /* TEXTOS FLUTUANTES */
  .floating-text {
      text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
      transition: all 0.5s ease;
      position: relative;
  }

  h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      margin-bottom: 15px;
      font-weight: 300;
      letter-spacing: -0.5px;
  }

  h2 {
      font-size: clamp(2rem, 6vw, 3.5rem);
      margin-bottom: 20px;
      font-weight: 300;
  }

  .subtitle {
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      max-width: 700px;
      line-height: 1.6;
      opacity: 0.9;
      margin-bottom: 30px;
  }

  .highlight {
      color: #00d4ff;
      font-weight: 500;
  }

  .floating-content p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      line-height: 1.8;
      margin-bottom: 20px;
      opacity: 0.85;
  }

  /* CARDS TRANSPARENTES */
  .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .floating-card {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      text-shadow: none;
  }

  .floating-card:hover {
      transform: translateY(-10px) scale(1.02);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(0, 212, 255, 0.5);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  /* BOTÃO */
  .floating-btn {
      display: inline-block;
      padding: 15px 40px;
      background: rgba(0, 212, 255, 0.8);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 500;
      font-size: 1.1rem;
      transition: all 0.3s;
      border: 1px solid rgba(0, 212, 255, 0.5);
      backdrop-filter: blur(5px);
      margin-top: 20px;
  }

  .floating-btn:hover {
      background: rgba(0, 212, 255, 0.9);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
  }

  .outline-btn {
      background: transparent;
      border: 2px solid rgba(0, 212, 255, 0.8);
      margin-left: 15px;
  }

  .outline-btn:hover {
      background: rgba(0, 212, 255, 0.1);
  }

  /* LOGO */
  .floating-logo {
      position: fixed;
      top: 30px;
      left: 30px;
      color: white;
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 2px;
      text-decoration: none;
      z-index: 999;
      opacity: 1;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: auto;
  }

  .floating-logo:hover {
      opacity: 1 !important;
      color: #00d4ff;
  }

  /* Classe aplicada quando desce a página */
  .floating-logo.logo-hidden {
      opacity: 0;
      transform: translateY(-20px);
      pointer-events: none;
      visibility: hidden;
  }

  /* Para quando voltar ao topo */
  .floating-logo.logo-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      visibility: visible;
  }

  /* ANIMAÇÕES */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate {
      opacity: 0;
      animation: fadeInUp 0.8s ease-out forwards;
  }

  .delay-1 {
      animation-delay: 0.2s;
  }

  .delay-2 {
      animation-delay: 0.4s;
  }

  .delay-3 {
      animation-delay: 0.6s;
  }

  .delay-4 {
      animation-delay: 0.8s;
  }

  /* SCROLL INDICATOR */
  .scroll-hint {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 0.9rem;
      opacity: 0.6;
      z-index: 999;
      animation: pulse 2s infinite;
      text-align: center;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 0.4;
      }

      50% {
          opacity: 0.8;
      }
  }

  .scroll-hint i {
      display: block;
      margin-bottom: 5px;
      font-size: 1.2rem;
  }

  /* FOOTER */
  .floating-footer {
      position: relative;
      padding: 60px 20px;
      text-align: center;
      z-index: 1;
  }

  .social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 30px 0;
  }

  .social-links a {
      color: white;
      font-size: 1.4rem;
      opacity: 0.7;
      transition: all 0.3s;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
  }

  .social-links a:hover {
      opacity: 1;
      transform: translateY(-5px);
      background: rgba(0, 212, 255, 0.2);
      color: #00d4ff;
  }

  /* TIMELINE */
  .timeline {
      position: relative;
      max-width: 800px;
      margin: 50px 0;
  }

  .timeline-item {
      position: relative;
      padding-left: 40px;
      margin-bottom: 40px;
  }

  .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      width: 20px;
      height: 20px;
      background: #00d4ff;
      border-radius: 50%;
  }

  .timeline-item::after {
      content: '';
      position: absolute;
      left: 9px;
      top: 25px;
      width: 2px;
      height: calc(100% + 20px);
      background: rgba(255, 255, 255, 0.2);
  }

  .timeline-item:last-child::after {
      display: none;
  }

  .timeline-date {
      color: #00d4ff;
      font-weight: 500;
      margin-bottom: 5px;
      font-size: 1.1rem;
  }

  .timeline-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
  }

  /* SKILLS */
  .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
  }

  .skill-item {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      transition: all 0.3s;
  }

  .skill-item:hover {
      background: rgba(0, 212, 255, 0.1);
      transform: translateY(-5px);
  }

  .skill-item i {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #00d4ff;
  }

  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
      .menu-toggle {
          top: 20px;
          right: 20px;
          width: 45px;
          height: 45px;
      }

      .floating-logo {
          top: 25px;
          left: 20px;
          font-size: 1.5rem;
      }

      .content-section {
          padding: 60px 15px;
      }

      .card-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .floating-card {
          padding: 25px;
      }

      .skills-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .bg-controls {
          bottom: 20px;
          gap: 15px;
          padding: 8px 15px;
      }

      .bg-btn {
          width: 35px;
          height: 35px;
          font-size: 1rem;
      }

      .bg-info {
          display: none;
      }

      .loading-spinner {
          width: 30px;
          height: 30px;
      }

      .loading-text {
          font-size: 0.8rem;
      }

      /* TUTORIAL MOBILE - ajustes para mobile */
      .swipe-hand {
          width: 50px;
          height: 50px;
          font-size: 1.3rem;
      }
  }

  @media (max-width: 480px) {
      .menu-sidebar {
          width: 100%;
          right: -100%;
      }

      h1 {
          font-size: 2.2rem;
      }

      h2 {
          font-size: 1.8rem;
      }

      .floating-btn {
          display: block;
          margin: 10px 0;
          width: 100%;
          text-align: center;
      }

      .bg-controls {
          bottom: 15px;
          gap: 10px;
          padding: 6px 12px;
      }

      .swipe-hand {
          width: 45px;
          height: 45px;
          font-size: 1.2rem;
      }
  }

  /* EFEITO DE TEXTO BRILHANTE */
  .glow-on-hover {
      transition: text-shadow 0.3s;
  }

  .glow-on-hover:hover {
      text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  }

  /* PROJETOS - ESTILO MINIMALISTA */
  .project-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 25px;
      margin-top: 40px;
  }

  .project-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 30px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
  }


  .project-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #00d4ff, transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      border-color: rgba(255, 255, 255, 0.2);
  }

  .project-card:hover::before {
      opacity: 1;
  }

  .project-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
      gap: 20px;
  }

  .project-title-wrapper h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: white;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
  }

  .project-category {
      background: rgba(0, 212, 255, 0.2);
      color: #00d4ff;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
  }



  .project-header h3 {
      font-size: 1.3rem;
      font-weight: 400;
      color: white;
      margin: 0;
      flex-grow: 1;
  }

.project-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.project-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}


.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

  .project-card:hover .tech-tag {
      background: rgba(0, 212, 255, 0.1);
      border-color: rgba(0, 212, 255, 0.3);
  }







  /* ===== CONTATO RESPONSIVO ===== */
  .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin: 40px 0;
  }

  .contact-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
  }

  .contact-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  }

  .contact-card-header i {
      font-size: 1.8rem;
      color: #00d4ff;
      margin-right: 15px;
  }

  .contact-card-header h3 {
      margin: 0;
      font-size: 1.4rem;
  }

  .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      transition: all 0.3s ease;
  }

  .contact-item:hover {
      background: rgba(0, 212, 255, 0.1);
      transform: translateX(5px);
  }

  .contact-icon {
      font-size: 1.3rem;
      color: #00d4ff;
      margin-right: 15px;
      min-width: 24px;
      text-align: center;
  }

  .contact-info {
      flex: 1;
  }

  .contact-link,
  .contact-text {
      color: #fff;
      text-decoration: none;
      font-size: 0.95rem;
      word-break: break-word;
  }

  .contact-link:hover {
      color: #00d4ff;
  }

  .whatsapp-link {
      color: #25d366;
  }

  .whatsapp-link:hover {
      color: #1da851;
  }

  /* Social Grid */
  .social-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
      gap: 15px;
      margin: 20px 0 30px 0;
  }

  .social-button {
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: white;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      text-decoration: none;
  }

  .social-button:hover {
      background: var(--social-color);
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .social-button i {
      font-size: inherit;
  }

  /* Links Importantes */
  .important-links {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .links-title {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: #00d4ff;
  }

  .links-title i {
      margin-right: 10px;
  }

  .links-grid {
      display: grid;
      gap: 12px;
  }

  .link-item {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      background: rgba(0, 212, 255, 0.05);
      border-radius: 10px;
      text-decoration: none;
      color: #fff;
      transition: all 0.3s ease;
  }

  .link-item:hover {
      background: rgba(0, 212, 255, 0.15);
      transform: translateX(5px);
  }

  .link-item i {
      margin-right: 12px;
      color: #00d4ff;
      font-size: 1.1rem;
  }

  .link-item span {
      font-size: 0.95rem;
  }

  /* Botões de Ação */
  .contact-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 40px;
  }

  .action-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 25px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      min-width: 180px;
      border: 2px solid transparent;
  }

  .action-btn i {
      margin-right: 10px;
      font-size: 1.2rem;
  }

  .email-btn {
      background: #00d4ff;
      color: #000;
  }

  .email-btn:hover {
      background: #00b8e6;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
  }

  .whatsapp-btn {
      background: #25d366;
      color: white;
  }

  .whatsapp-btn:hover {
      background: #1da851;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  }

  .outline-btn {
      background: transparent;
      border-color: #00d4ff;
      color: #00d4ff;
  }

  .outline-btn:hover {
      background: rgba(0, 212, 255, 0.1);
      transform: translateY(-3px);
  }

  /* ===== FOOTER RESPONSIVO ===== */
  .floating-footer {
      padding: 40px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-name {
      text-align: center;
      margin-bottom: 30px;
  }

  .footer-name h3 {
      font-size: 1.8rem;
      margin-bottom: 10px;
  }

  .footer-subtitle {
      opacity: 0.7;
      font-size: 1rem;
      line-height: 1.5;
  }

  /* Redes Sociais no Footer */
  .footer-social {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin: 30px 0;
  }

  .footer-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      color: #fff;
      font-size: 1.3rem;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .footer-social-link:hover {
      background: #00d4ff;
      color: #000;
      transform: translateY(-5px);
  }

  /* Informações do Footer */
  .footer-info {
      text-align: center;
      margin-top: 30px;
  }

  .footer-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
  }

  .footer-stat {
      display: inline-flex;
      align-items: center;
      padding: 8px 15px;
      background: rgba(0, 212, 255, 0.1);
      border-radius: 20px;
      font-size: 0.9rem;
      color: #00d4ff;
  }

  .footer-stat i {
      margin-right: 8px;
  }

  .footer-copyright {
      opacity: 0.6;
      font-size: 0.9rem;
      margin: 15px 0;
  }

  .footer-edition {
      color: #00d4ff;
      font-weight: 500;
  }

  .footer-credentials {
      opacity: 0.5;
      font-size: 0.85rem;
      line-height: 1.6;
      margin-top: 15px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 10px;
  }

  .footer-credentials i {
      margin-right: 5px;
  }

  .separator {
      opacity: 0.3;
  }

  /* Botão Voltar ao Topo */
  .back-to-top {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 30px auto 0;
      padding: 12px 25px;
      background: rgba(0, 212, 255, 0.1);
      border: 1px solid rgba(0, 212, 255, 0.3);
      border-radius: 25px;
      color: #00d4ff;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .back-to-top:hover {
      background: rgba(0, 212, 255, 0.2);
      transform: translateY(-3px);
  }

  .back-to-top i {
      margin-right: 8px;
  }

  /* ===== RESPONSIVIDADE CELULAR ===== */
  @media (max-width: 768px) {
      .contact-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .contact-card {
          padding: 20px;
      }

      .contact-card-header {
          margin-bottom: 20px;
      }

      .contact-card-header h3 {
          font-size: 1.2rem;
      }

      .contact-item {
          margin-bottom: 15px;
          padding: 10px;
      }

      .contact-icon {
          font-size: 1.1rem;
          margin-right: 12px;
      }

      .contact-link,
      .contact-text {
          font-size: 0.9rem;
      }

      .social-grid {
          grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
          gap: 12px;
      }

      .social-button {
          font-size: 1.3rem;
      }

      .link-item {
          padding: 10px;
      }

      .link-item span {
          font-size: 0.9rem;
      }

      .contact-actions {
          flex-direction: column;
          align-items: stretch;
          gap: 12px;
      }

      .action-btn {
          min-width: auto;
          padding: 14px 20px;
          justify-content: center;
      }

      /* Footer Mobile */
      .floating-footer {
          padding: 30px 0 15px;
      }

      .footer-name h3 {
          font-size: 1.5rem;
      }

      .footer-subtitle {
          font-size: 0.9rem;
      }

      .footer-social {
          gap: 12px;
      }

      .footer-social-link {
          width: 45px;
          height: 45px;
          font-size: 1.2rem;
      }

      .footer-stats {
          flex-direction: column;
          align-items: center;
          gap: 10px;
      }

      .footer-credentials {
          flex-direction: column;
          gap: 5px;
      }

      .separator {
          display: none;
      }

      .back-to-top {
          padding: 10px 20px;
          font-size: 0.85rem;
      }
  }

  @media (max-width: 480px) {
      .contact-card-header {
          flex-direction: column;
          text-align: center;
      }

      .contact-card-header i {
          margin-right: 0;
          margin-bottom: 10px;
      }

      .contact-item {
          flex-direction: column;
          text-align: center;
          padding: 15px;
      }

      .contact-icon {
          margin-right: 0;
          margin-bottom: 10px;
      }

      .social-grid {
          grid-template-columns: repeat(4, 1fr);
      }

      .important-links {
          text-align: center;
      }

      .links-title {
          justify-content: center;
      }

      .link-item {
          justify-content: center;
      }

      .footer-name h3 {
          font-size: 1.3rem;
      }

      .footer-copyright {
          font-size: 0.8rem;
      }

      .footer-credentials {
          font-size: 0.8rem;
      }
  }

  /* Animações para mobile */
  @media (hover: none) and (pointer: coarse) {

      .contact-item:hover,
      .social-button:hover,
      .link-item:hover,
      .action-btn:hover,
      .footer-social-link:hover,
      .back-to-top:hover {
          transform: none;
      }

      .contact-item:active,
      .social-button:active,
      .link-item:active,
      .action-btn:active,
      .footer-social-link:active,
      .back-to-top:active {
          transform: scale(0.98);
      }
  }



.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

  /* Sem animação para concluídos */
  .project-status[style*="background: #4ecdc4"] {
      animation: none;
      box-shadow: 0 4px 10px rgba(78, 205, 196, 0.3);
  }

  /* Pulsação apenas para desenvolvimento */
  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
      }
  }

  /* Links */
  .disabled-link {
      opacity: 0.5;
      cursor: not-allowed;
      color: #ff6b6b;
  }

  .success-link {
      color: #4ecdc4;
  }

  /* Barra de progresso */
.dev-progress {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

  .progress-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    position: relative;
    transition: width 0.5s ease;
}

.progress-fill .progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

  /* Efeito especial para 100% concluído */
  .progress-fill[style*="width: 100%"] {
      animation: glow-green 2s infinite alternate;
  }

  @keyframes glow-green {
      from {
          box-shadow: 0 0 5px #4ecdc4;
      }

      to {
          box-shadow: 0 0 15px #4ecdc4;
      }
  }

  .progress-text {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.85rem;
      opacity: 0.8;
  }

  /* Meta informações do projeto */
.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

  .meta-item i {
      margin-right: 6px;
      font-size: 0.9rem;
  }

.meta-item.success {
    color: #2ea44f;
}

.meta-item.warning {
    color: #d97706;
}

  /* Legenda de status */
  .status-legend {
      margin-top: 40px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .legend-title {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: #00d4ff;
      font-size: 1rem;
  }

  .legend-title i {
      margin-right: 10px;
  }

  .legend-items {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
  }

  .legend-item {
      display: flex;
      align-items: center;
  }

  .legend-color {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 10px;
  }

  .legend-text {
      font-size: 0.85rem;
      opacity: 0.8;
  }

  /* Efeitos hover específicos */
  .project-card:hover .project-status[style*="background: #4ecdc4"] {
      transform: scale(1.05);
      transition: transform 0.3s ease;
  }

  /* Responsivo */
  @media (max-width: 768px) {
      .legend-items {
          flex-direction: column;
          gap: 10px;
      }

      .project-meta {
          flex-direction: column;
          gap: 10px;
      }
  }




  