  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

  .showcase {
      position: relative;
      height: 100vh;
      text-align: center;
      isolation: isolate;
  }

  .particle {
      position: fixed;
      font-size: 14px;
      color: #eec17c;
      pointer-events: none;
      opacity: 1;
      animation: fallOut 0.8s ease-out forwards;
      z-index: 9998;
      white-space: nowrap;
      text-shadow: 0 0 6px #eec17c;
  }

  @keyframes fallOut {
      0% {
          opacity: 1;
          transform: translateY(0) scale(1);
          filter: blur(0);
      }

      100% {
          opacity: 0;
          transform: translateY(30px) scale(0.6);
          filter: blur(2px);
      }
  }

  .showcase::before {
      content: "";
      position: fixed;
      top: -150%;
      left: -100%;
      z-index: -1;
      width: 350%;
      height: 350%;
      background-image: url("../game/assets/images/grain.png");
      opacity: 0.25;
  }

  @media (prefers-reduced-motion: no-preference) {
      .showcase::before {
          animation: grain 5s steps(10) infinite;
      }

  }

  :root {
      --dark-bg: #060606;
      --card-bg: #121212;
      --light-text: #eec17cc4;
      --light-text-hover: #eec17c;
      --accent-gold: #eec17c;
      --accent-gold-light: #f0c98e;
      --accent-gold-dark: #d8b06a;
      --section-padding: 8rem 2rem;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --border-radius: 8px;
  }

  .OQ8Tzd,
  .nKphmK {
      overflow: hidden
  }

  .nKphmK {
      height: 100%;
      position: relative;
      width: 100%;
  }

  * {
      scroll-margin-top: 1rem;
      cursor: url(./mouse.svg), auto !important;
  }

  .active-cursor,
  .active-cursor *,
  html body a,
  html body a *,
  html body button,
  html body button *,
  html body input,
  html body input *,
  html body label,
  html body label *,
  html body option,
  html body option *,
  html body select,
  html body select *,
  html body textarea,
  html body textarea * {
      cursor: url(./mouse-pointer.svg), auto !important
  }

  .nKphmK:-ms-fullscreen,
  .nKphmK:fullscreen {
      min-height: 0 !important;
  }



  .pvlz2w {
      visibility: hidden
  }

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

  html {
      font-size: 62.5%;
      scroll-behavior: smooth;
  }

  body {
      background-color: var(--dark-bg);
      font-family: "Poppins", sans-serif;
      font-size: 1.6rem;
      line-height: 1.6;
      color: var(--light-text);
      overflow-x: hidden;
  }

  #header-a {
      font-size: 25px;
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
  }

  a:link,
  a:visited {
      color: #D3C9D6;
      /* Cor padrão */
  }

  a:hover {
      color: #8ad4ff;
  }

  ul {
      list-style: none;
  }

  img {
      display: block;
      max-width: 100%;
      height: auto;
  }

  .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  @media (min-width: 768px) {
      .container {
          max-width: 558px;
      }
  }

  /* Header & Hero Section */
  .hero {
      position: relative;
      padding: var(--section-padding);
      isolation: isolate;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
  }


  /* Header Styles */
  .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem 2rem;
      z-index: 1000;
      background: #0000008a;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(238, 193, 124, 0.1);
      transition: var(--transition);
  }

  .header.scrolled {
      padding: 1rem 2rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
  }

  .logo-image {
      width: 5rem;
      height: 5rem;
      transition: var(--transition);
  }

  .logo-image:hover {
      transform: rotate(15deg);
  }

  .nav-links {
      display: flex;
      gap: 3rem;
  }

  .nav-link {
      font-size: 1.7rem;
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-gold);
      transition: var(--transition);
  }

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

  .nav-link:hover {
      color: var(--light-text-hover);
  }

  .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      font-weight: 600;
      padding: 1rem 2rem;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  .whatsapp-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  /* Hero Content */
  .hero-content {
      max-width: 900px;
      margin: 8rem auto 0;
      position: relative;
  }

  .hero-logo {
      width: 40rem;
      margin: 0 auto 3rem;
      padding: 1rem;
      transition: var(--transition);
  }

  .hero-logo:hover {
      filter: drop-shadow(0 0 0.75rem #9f865f);
      transform: scale(1.05);
  }

  .hero-title {
      font-size: clamp(4rem, 7vw, 8rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
      font-size: clamp(2.5rem, 4vw, 4rem);
      color: var(--accent-gold);
      margin-bottom: 3rem;
      font-weight: 600;
      letter-spacing: 1px;
  }

  .hero-description {
      font-size: clamp(1.8rem, 2.2vw, 2.2rem);
      margin-bottom: 4rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
  }

  .cta-button {
      display: inline-block;
      background: var(--accent-gold);
      color: var(--dark-bg);
      font-weight: 700;
      font-size: 1.8rem;
      padding: 1.5rem 4rem;
      border-radius: 50px;
      text-transform: uppercase;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(238, 193, 124, 0.3);
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: var(--accent-gold-light);
      transition: var(--transition);
      z-index: -1;
  }

  .cta-button:hover::before {
      width: 100%;
  }

  .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(238, 193, 124, 0.4);
  }

  /* Scroll Down Indicator */
  .scroll-down {
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      color: var(--light-text);
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.8;
      transition: var(--transition);
  }

  .scroll-down:hover {
      opacity: 1;
      color: var(--accent-gold);
  }

  .scroll-down::after {
      content: '';
      display: block;
      width: 1px;
      height: 5rem;
      background: var(--light-text);
      margin-top: 1rem;
      animation: scrollPulse 2s infinite;
  }

  /* Bento Grid Styles */
  .section-title {
      font-size: clamp(3rem, 5vw, 5rem);
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--accent-gold);
      border-radius: 2px;
  }

  .section-padding {
      padding: var(--section-padding);
  }

  .bento-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      max-width: 1400px;
      margin: 0 auto;
  }

  .bento-card {
      background: var(--card-bg);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: var(--transition);
      border: 1px solid rgba(238, 193, 124, 0.1);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      position: relative;
  }

  .bento-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(238, 193, 124, 0.05), transparent);
      pointer-events: none;
  }

  .bento-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
      border-color: rgba(238, 193, 124, 0.3);
  }

  .card-header {
      padding: 2rem;
      border-bottom: 1px solid rgba(238, 193, 124, 0.1);
      background: rgba(18, 18, 18, 0.8);
  }

  .card-title {
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--accent-gold);
      margin-bottom: 0.5rem;
  }

  .card-subtitle {
      font-size: 1.4rem;
      opacity: 0.8;
  }

  .card-content {
      padding: 2rem;
  }

  .service-list {
      display: grid;
      gap: 1.5rem;
  }

  .service-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      position: relative;
      padding-left: 2rem;
      text-align: left;
      line-height: 1.4;
  }

  .service-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background: var(--accent-gold);
      border-radius: 50%;
  }

  /* About Section */
  .about-section {
      display: grid;
      grid-template-columns: 1fr;
      gap: 5rem;
      max-width: 1200px;
      margin: 0 auto;
      justify-items: center;
  }

  @media (min-width: 992px) {
      .about-section {
          grid-template-columns: 1fr 1fr;
          align-items: center;
      }
  }

  .about-image {
      overflow: hidden;
      position: relative;
      border-radius: 20px;
      background: var(--card-bg);
      /* background-color: var(--accent-gold); */
      /* Cor de fundo caso a imagem não carregue */
  }

  /* Desktop - Proporção 4:5 (80%) */
  .about-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center top;
      /* Foca no rosto */
      transition: var(--transition);
  }

  canvas#glscreen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
      opacity: 0.05;
      z-index: -1;
  }

  canvas#neuro {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      pointer-events: none;
      opacity: 0.1;
      z-index: -1;
  }

  /* Versão Desktop */
  @media (min-width: 769px) {
      .about-image {
          aspect-ratio: 4/5;
          /* Proporção 4:5 */
          max-width: 500px;
          /* Limite máximo para desktop */
      }
  }

  @media only screen and (min-width: 1000px) {
      .about-image {
          height: 100%;
      }
  }

  @media only screen and (max-width: 900px) {
      .about-image img {
          object-fit: cover;
          object-position: center 30%;
          height: 383px;
          width: 100%;
      }
  }

  @media only screen and (max-width: 500px) {

      .about-image img {
          object-fit: cover;
          object-position: center 35%;
          height: 357px;
          width: 100%;
      }
  }

  /* Versão Mobile - Proporção aproximada de 3000x1055 (≈2.85:1) */
  @media (max-width: 968px) {
      .about-image {
          aspect-ratio: 0/2;
          width: 100%;
          max-height: 619px;
      }



  }

  @media (max-width: 456) {
      .about-image img {
          height: 400px;
      }
  }

  /* Efeito hover apenas para desktop */
  @media (hover: hover) and (min-width: 769px) {
      .about-image:hover img {
          transform: scale(1.03);
      }
  }

  .about-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .about-text {
      font-size: 1.8rem;
      line-height: 1.8;
      position: relative;
      padding-left: 2rem;
  }

  .about-text::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 2px;
      background: var(--accent-gold);
  }

  .highlight {
      color: var(--accent-gold);
      font-weight: 600;
  }

  /* Testimonials */
  .testimonials {
      background: var(--card-bg);
      padding: var(--section-padding);
  }


  .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
  }

  .testimonial-card {
      background: rgba(18, 18, 18, 0.8);
      padding: 3rem;
      border-radius: var(--border-radius);
      border: 1px solid rgba(238, 193, 124, 0.1);
      position: relative;
  }

  .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 2rem;
      font-size: 8rem;
      color: rgba(238, 193, 124, 0.1);
      font-family: serif;
      line-height: 1;
  }

  .testimonial-text {
      font-style: italic;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1.5rem;
  }

  .author-avatar {
      width: 5rem;
      height: 5rem;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent-gold);
  }

  .author-info {
      display: flex;
      flex-direction: column;
  }

  .author-name {
      font-weight: 600;
      color: var(--accent-gold);
  }

  .author-title {
      font-size: 1.4rem;
      opacity: 0.8;
  }

  /* Contact Form */
  .contact-form {
      max-width: 600px;
      margin: 0 auto;
      padding: 3rem;
      background: var(--card-bg);
      border-radius: var(--border-radius);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .form-group {
      margin-bottom: 2rem;
  }

  .form-label {
      display: block;
      margin-bottom: 0.8rem;
      font-weight: 500;
  }

  .form-control {
      width: 100%;
      padding: 1.2rem 1.5rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(238, 193, 124, 0.2);
      border-radius: var(--border-radius);
      color: var(--light-text);
      font-family: inherit;
      font-size: 1.6rem;
      transition: var(--transition);
  }

  .form-control:focus {
      outline: none;
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px rgba(238, 193, 124, 0.1);
  }

  textarea.form-control {
      min-height: 15rem;
      resize: vertical;
  }

  /* Footer */
  .footer {
      background: var(--card-bg);
      padding: 5rem 2rem;
      border-top: 1px solid rgba(238, 193, 124, 0.1);
  }

  .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
  }

  .footer-logo {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .footer-logo img {
      width: 80px;
  }

  .footer-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: var(--accent-gold);
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .footer-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: var(--transition);
  }

  .footer-link i {
      color: var(--accent-gold);
      width: 2rem;
      text-align: center;
  }

  .footer-link:hover {
      color: var(--accent-gold);
      transform: translateX(5px);
  }

  .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 1.5rem;
  }

  .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: rgba(238, 193, 124, 0.1);
      color: var(--accent-gold);
      transition: var(--transition);
  }

  .social-link:hover {
      background: var(--accent-gold);
      color: var(--dark-bg);
      transform: translateY(-3px);
  }

  .copyright {
      text-align: center;
      padding-top: 4rem;
      font-size: 1.4rem;
      opacity: 0.7;
  }

  /* Animations */
  @keyframes grain {

      0%,
      100% {
          transform: translate(0);
      }

      10% {
          transform: translate(-5%, -10%);
      }

      20% {
          transform: translate(-15%, 5%);
      }

      30% {
          transform: translate(7%, -25%);
      }

      40% {
          transform: translate(-5%, 25%);
      }

      50% {
          transform: translate(-15%, 5%);
      }

      60% {
          transform: translate(15%);
      }

      70% {
          transform: translateY(15%);
      }

      80% {
          transform: translate(3%, 35%);
      }

      90% {
          transform: translate(-10%, 10%);
      }
  }

  @keyframes scrollPulse {

      0%,
      100% {
          transform: translateY(0);
          opacity: 1;
      }

      50% {
          transform: translateY(10px);
          opacity: 0.5;
      }
  }

  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.appear {
      opacity: 1;
      transform: translateY(0);
  }



  /* Responsive Adjustments */
  @media (max-width: 768px) {

      .header-container {
          flex-direction: column;
          gap: 1.5rem;
          padding: 1rem 0;
      }

      .nav-links {
          gap: 1.5rem;
          flex-wrap: wrap;
          justify-content: center;
      }

      .hero-content {
          margin-top: 12rem;
      }

      .section-padding {
          padding: 4rem 1.5rem;
      }


  }

  .about-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
      margin-bottom: 3rem;
  }

  .highlight-item {
      display: flex;
      align-items: flex-start;
      /* Alinhamento no topo para textos de alturas diferentes */
      gap: 1.8rem;
      background: rgba(238, 193, 124, 0.05);
      padding: 2rem;
      border-radius: var(--border-radius);
      border: 1px solid rgba(238, 193, 124, 0.1);
      transition: var(--transition);
      height: 100%;
      /* Garante altura uniforme */
  }


  .highlight-icon {
      width: 60px;
      height: 60px;
      background: rgba(238, 193, 124, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--accent-gold);
      flex-shrink: 0;
      transition: var(--transition);
  }


  .highlight-text {
      flex: 1;
      min-width: 0;
      /* Permite que o texto quebre corretamente */
  }

  .highlight-text h3 {
      font-size: 2.2rem;
      color: var(--accent-gold);
      margin-bottom: 0.5rem;
      line-height: 1.2;
  }

  .highlight-text p {
      font-size: 1.5rem;
      opacity: 0.85;
      line-height: 1.4;
      margin-bottom: 0;
  }

  /* Scrollbar Styling */
  ::-webkit-scrollbar {
      width: 10px;
  }

  ::-webkit-scrollbar-track {
      background: var(--dark-bg);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--accent-gold);
      border-radius: 5px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: var(--accent-gold-light);
  }


  #ct-links {
      padding: 0 10%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
      align-items: center;
  }

  #ct-links a {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 1.4rem 2.2rem;
      background-color: var(--card-bg);
      border: 2px solid var(--accent-gold-dark);
      border-radius: 999px;
      text-decoration: none;
      color: var(--light-text);
      font-size: 1.25rem;
      font-weight: 600;
      transition: var(--transition);
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  #ct-links a i {
      font-size: 1.5rem;
      color: var(--accent-gold);
      transition: var(--transition);
  }

  #ct-links .divider {
      width: 1.5px;
      height: 24px;
      background-color: var(--accent-gold);
      opacity: 0.4;
      margin: 0 8px;
      transition: var(--transition);
  }

  #ct-links a:hover {
      background-color: var(--accent-gold-dark);
      color: #000;
      transform: scale(1.07);
  }

  #ct-links a:hover i {
      color: #000;
  }

  #ct-links a:hover .divider {
      background-color: #000;
      opacity: 1;
  }


  /* Animação de pulsação suave para a logo */
  @keyframes pulse-slow {

      0%,
      100% {
          transform: scale(1);
          opacity: 0.9;
      }

      50% {
          transform: scale(1.05);
          opacity: 1;
      }
  }

  /* Animação de pulsação para o texto - MAIS DESTACADA */
  @keyframes pulse-text {

      0%,
      100% {
          opacity: 0.8;
          text-shadow: 0 0 8px rgba(238, 193, 124, 0.3);
      }

      50% {
          opacity: 1;
          text-shadow: 0 0 12px rgba(238, 193, 124, 0.5);
      }
  }

  /* Aplicando as animações */
  .animate-pulse-slow {
      animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .animate-pulse-text {
      animation: pulse-text 2s ease-in-out infinite;
  }

  /* Efeito de grão */
  #loading-screen::before {
      content: "";
      position: absolute;
      top: -150%;
      left: -100%;
      z-index: -1;
      width: 350%;
      height: 350%;
      background-image: url("../game/assets/images/grain.png");
      opacity: 0.25;
      animation: grain 5s steps(10) infinite;
  }

  /* Barra de progresso gradient - MAIS DESTACADA */
  #progress-bar {
      background: linear-gradient(to right,
              var(--accent-gold-dark),
              var(--accent-gold),
              var(--accent-gold-light));
      background-size: 200% 100%;
      animation: gradient-shift 3s ease infinite;
      box-shadow: 0 0 10px rgba(238, 193, 124, 0.4);
  }

  @keyframes gradient-shift {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }