* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #010101;
    color: #fdfdfd;
  }
  
  /* === SPLASH SCREEN === */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #010101;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  
  .splash-content {
    text-align: center;
    color: #ffc700;
  }
  
  .splash-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: fadeInLogo 1.2s ease forwards;
  }
  
  .splash-loader {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255, 199, 0, 0.3);
    border-top-color: #ffc700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  /* === ANIMAÇÕES === */
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes fadeInLogo {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* === QUANDO ESCONDER === */
  #splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  /* ---------- Navbar ---------- */
  .navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: rgba(1, 1, 1, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc700;
  }
  
  .menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .menu a {
    text-decoration: none;
    color: #fdfdfd;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .menu a:hover {
    color: #ffc700;
  }
  
  .btn-header {
    background-color: #ffc700;
    padding: 0.7rem 1.3rem;
    border-radius: 30px;
    text-decoration: none;
    color: #010101;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
  }
  
  .btn-header:hover {
    background-color: #fdfdfd;
    color: #010101;
  }
  
  /* ---------- Hero Section ---------- */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 8% 4rem;
    background: linear-gradient(120deg, #010101 55%, #111111 45%);
    min-height: 100vh;
  }

  
  .hero-content {
    flex: 1;
    padding-right: 2rem;
  }
  
  .subtitle {
    color: #ffc700;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .title span {
    color: #ffc700;
  }
  
  .description {
    margin: 1.5rem 0;
    max-width: 500px;
    color: #fdfdfd;
    opacity: 0.85;
    line-height: 1.6;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .btn {
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .btn.primary {
    background: #ffc700;
    color: #010101;
  }
  
  .btn.primary:hover {
    background: #fdfdfd;
    color: #010101;
  }
  
  .btn.secondary {
    border: 2px solid #ffc700;
    color: #ffc700;
  }
  
  .btn.secondary:hover {
    background: #ffc700;
    color: #010101;
  }
  
  /* ---------- Hero Image ---------- */
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image img {
    width: 80%;
    animation: float 6s ease-in-out infinite;
  }
  
  /* ---------- Floating Animation ---------- */
  @keyframes float {
    0% {
      transform: translateY(0) translateX(0);
    }
    50% {
      transform: translateY(-15px) translateX(6px);
    }
    100% {
      transform: translateY(0) translateX(0);
    }
  }
  
  /* ---------- Image Placeholder ---------- */
  .image-placeholder {
    width: 85%;
    height: 420px;
    border-radius: 20px;
    background: #0f0f0f;
    border: 2px dashed #ffc700;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-align: center;
  }
  
  /* ---------- Responsividade ---------- */
  @media (max-width: 992px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-content {
      padding-right: 0;
    }
  
    .hero-image {
      margin-top: 3rem;
    }
  
    .menu ul {
      display: none;
    }
  }
  
  @media (max-width: 600px) {
    .title {
      font-size: 2rem;
    }
  
    .description {
      font-size: 0.95rem;
    }
  
    .btn {
      padding: 0.8rem 1.3rem;
    }
  }

 /* ---------- Services Section Modern ---------- */
.services-grid {
  background-color: #ffffff;
  color: #010101;
  padding: 6rem 8%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 800; /* moderno e impactante */
  color: #010101;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.services-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
}

.service-item {
  background: #ffc700;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 350px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item h3 {
  font-size: 1.6rem;
  font-weight: 700; /* moderno */
  margin-bottom: 1rem;
}

.service-item p {
  font-size: 1rem;
  font-weight: 400; /* leve e clean */
  line-height: 1.6;
  color: #010101;
}

.service-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ---------- Responsividade ---------- */
@media (max-width: 768px) {
  .services-title {
      font-size: 2.2rem;
  }

  .service-item h3 {
      font-size: 1.4rem;
  }

  .service-item p {
      font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
      padding: 4rem 5%;
  }

  .services-title {
      font-size: 2rem;
  }
}