:root {
  --primary-color: #f37119;
  --bg-dark: #0f0f0f;
  --bg-darker: #1a1a1a;
  --text-color: #ffffff;
  --text-muted: #ccc;
}

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--text-color);
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 600;
  background-color: #000000dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 0 10px var(--primary-color);
  backdrop-filter: blur(128px);
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-color);
}

.audio-player-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #111111dd;
  border-top: 16px solid var(--primary-color);
}

.audio-visualizer {
  display: flex;
  gap: 22px;
  height: 32px;
  margin-bottom: 1rem;
}

.bar {
  width: 6px;
  background: var(--primary-color);
  animation: bounce 1s infinite ease-in-out;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }
.bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
  0%, 100% { height: 10px; }
  50% { height: 30px; }
}

.audio-controls {
  display: flex;
  gap: 10px;
}

.audio-controls button {
  background: var(--primary-color);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s, transform 0.2s;
  width: 50px;
  height: 50px;
}

.audio-controls button:hover {
  background: #f37119;
  transform: scale(1.1);
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
}

@keyframes glow {
  from { text-shadow: 0 0 5px var(--primary-color); }
  to { text-shadow: 0 0 20px var(--primary-color); }
}

.btn-primary {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #f37119;
  transform: scale(1.05);
}

section {
  text-align: center;
  padding: 4rem 2rem;
}

.services-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 0 15px #00000066;
  text-align: center;
}

footer {
  background: #111;
  color: #aaa;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

@media (min-width: 600px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.logo-3d {
  width: 400px;
  max-width: 90vw;
  transition: transform 0.8s ease, filter 0.5s ease;
  animation: pulseGlow 3s infinite ease-in-out;
  filter: drop-shadow(0 0 12px var(--primary-color));
  margin-bottom: 2rem;
}

.logo-3d:hover {
  transform: rotateY(10deg) scale(1.08);
  filter: drop-shadow(0 0 25px var(--primary-color)) brightness(1.3);
}

@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 12px var(--primary-color)); }
  50% { filter: drop-shadow(0 0 30px var(--primary-color)); }
  100% { filter: drop-shadow(0 0 12px var(--primary-color)); }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 113, 25, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(243, 113, 25, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 113, 25, 0);
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: pulse 2.5s infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.15);
}

/* --- NOVO ESTILO PARA A SEÇÃO DE CONTATO --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--primary-color);
  pointer-events: none;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background-color: #0f0f0f;
  border: 1px solid #333;
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px #f3711955;
  outline: none;
}

/* Tamanhos de fonte ajustados */
#testimonials h2,
#clients h2 {
  font-size: 1.75rem; /* antes: possivelmente 2rem+ dependendo do tema */
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

#clients p,
.testimonials-container p,
.client-card p,
.stars,
.testimonials-container footer {
  font-size: 0.9rem; /* levemente menor que o padrão */
  color: #ccc;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.testimonials-container blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
  color: #ccc;
  position: relative;
  font-size: 0.9rem;
}

.stars {
  color: gold;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.carousel-clients {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  animation: scrollClients 60s linear infinite;
  gap: 1.5rem;
}

.client-card {
  min-width: 220px;
  background-color: #1a1a1a;
  padding: 1rem;
  border-left: 3px solid var(--primary-color);
  border-radius: 0.5rem;
  color: #ccc;
  text-align: center;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.client-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.client-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.client-card:hover {
  transform: scale(1.05);
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ccc;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.highlight-box {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 0.5rem;
  max-width: 300px;
  color: #eee;
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #ccc;
}


