* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f1720, #050505);
  color: #fff;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

header {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,120,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #00ff88;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: gold;
}

.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #000, #013d1f);
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: gold;
  animation: fadeUp 1s ease forwards;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.8;
}

.section {
  padding: 80px 40px;
  text-align: center;
}

.section h2 {
  margin-bottom: 10px;
  color: gold;
}

.subtitle {
  margin-bottom: 40px;
  color: #ccc;
}

.dark {
  background: #0b0b0b;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 4px;
  border-radius: 16px;
  width: 300px;
  transition: 0.4s;
  border: 1px solid rgba(0,255,120,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: gold;
}

.service-card h3 {
  margin: 10px 0;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.service-card ul {
  list-style: none;
  margin-top: 15px;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.amarelo { background: gold; color: #000; }
.azul { background: #00bcd4; }
.roxo { background: #7b1fa2; }

/* IMAGENS DOS CARDS */
.service-img {
  height: 460px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.bordado {
  background-image: url('bordado.jpg');
}

.sublimacao {
  background-image: url('sublimacao.jpg');
}

.dtf {
  background-image: url('dtf.jpg');
}

/* VALORES */
.valores {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.valores li {
  background: rgba(255,255,255,0.05);
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid gold;
}

/* BOTÃO WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 15px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #0f0;
}

/* ANIMAÇÃO */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }

  .container {
    flex-direction: column;
    gap: 10px;
  }

  .card {
    width: 100%;
  }
}
