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

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255, 140, 0, 0.05) 60px,
      rgba(255, 140, 0, 0.05) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255, 140, 0, 0.05) 60px,
      rgba(255, 140, 0, 0.05) 61px
    );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='circuit' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,140,0,0.2)'/%3E%3Ccircle cx='0' cy='0' r='1' fill='rgba(255,107,0,0.12)'/%3E%3Ccircle cx='100' cy='0' r='1' fill='rgba(255,107,0,0.12)'/%3E%3Ccircle cx='0' cy='100' r='1' fill='rgba(255,107,0,0.12)'/%3E%3Ccircle cx='100' cy='100' r='1' fill='rgba(255,107,0,0.12)'/%3E%3Ccircle cx='25' cy='25' r='0.5' fill='rgba(255,140,0,0.12)'/%3E%3Ccircle cx='75' cy='75' r='0.5' fill='rgba(255,140,0,0.12)'/%3E%3Cline x1='0' y1='50' x2='100' y2='50' stroke='rgba(255,140,0,0.04)' stroke-width='0.5'/%3E%3Cline x1='50' y1='0' x2='50' y2='100' stroke='rgba(255,140,0,0.04)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23circuit)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  background: rgba(26, 10, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.15);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff8c00, #ff6b00, transparent);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
  transition: filter 0.3s ease;
}

.logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.8));
}

.nav a {
  position: relative;
  color: rgba(226, 232, 240, 0.8);
  text-decoration: none;
  margin-left: 36px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, #ff6b00);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #ff8c00;
  text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.nav a:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 8px;
  color: #ff8c00;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 140, 0, 0.1);
  border-color: #ff8c00;
}

/* Hero */
.hero {
  text-align: center;
  padding: 180px 24px 100px;
  flex: 1;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #ff8c00 50%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1.2;
}

.hero h1 br {
  display: none;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: #fff;
  padding: 18px 48px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.5), 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  background: rgba(255, 140, 0, 0.1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

/* Sections */
section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.servicos, .sobre, .contato {
  text-align: center;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: rgba(226, 232, 240, 0.6);
  margin-bottom: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8c00, #ff6b00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 140, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.1);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 140, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.02);
  border-color: rgba(255, 140, 0, 0.3);
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #ff8c00;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card ul {
  list-style: none;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.8);
}

.card li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card li:last-child {
  border-bottom: none;
}

.card li::before {
  content: "\2713";
  color: #ff6b00;
  font-weight: 700;
  margin-right: 10px;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* Diferenciais */
.diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.diferencial {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 107, 0, 0.1);
  padding: 32px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diferencial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, #ff6b00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.diferencial:hover::after {
  opacity: 1;
}

.diferencial:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.diferencial h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #ff8c00;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.diferencial p {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.5;
}

/* Contato */
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 20px;
  padding: 36px;
}

.form input, .form select, .form textarea {
  padding: 14px 18px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #e2e8f0;
  outline: none;
  transition: all 0.3s ease;
}

.form input::placeholder, .form textarea::placeholder {
  color: rgba(226, 232, 240, 0.4);
}

.form select option {
  background: #0f172a;
  color: #e2e8f0;
}

.form input:focus, .form select:focus, .form textarea:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
}

.info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
  padding-top: 4px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 0, 0.1);
  border-radius: 20px;
  padding: 36px;
  color: rgba(226, 232, 240, 0.9);
}

.info strong {
  color: #ff6b00;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.map-link, .whatsapp-link {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.map-link {
  margin-top: 6px;
  color: #ff8c00;
}

.whatsapp-link {
  margin-left: 8px;
  color: #25D366;
}

.map-link:hover, .whatsapp-link:hover {
  opacity: 0.8;
  transform: translateX(3px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 28px 24px;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.5);
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 140, 0, 0.1);
}

/* Responsivo */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav { 
    display: none; 
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav.open a { 
    margin: 14px 0; 
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
  }

  .menu-toggle { 
    display: block; 
    padding: 10px 14px;
    font-size: 1.4rem;
  }

  .hero { 
    padding: 140px 20px 70px; 
  }
  
  .hero h1 { 
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 14px 36px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  
  section {
    padding: 60px 20px;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 36px;
  }
  
  .contato-wrapper { 
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form {
    padding: 28px 20px;
  }
  
  .form input, .form select, .form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .info {
    padding: 28px 20px;
    font-size: 1rem;
  }
  
  .diferenciais { 
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .diferencial {
    padding: 20px 16px;
  }
  
  .diferencial h4 {
    font-size: 0.85rem;
  }
  
  .diferencial p {
    font-size: 0.85rem;
  }
  
  .cards {
    gap: 20px;
  }
  
  .card {
    padding: 28px 20px;
  }
  
  .card h3 {
    font-size: 1.1rem;
  }
  
  .card ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 0;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .hero { 
    padding: 120px 16px 60px; 
  }
  
  .hero h1 { 
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }
  
  .cards { 
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .card {
    padding: 24px 18px;
  }
  
  .card-img {
    height: 180px;
  }
  
  .diferenciais { 
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .diferencial {
    padding: 18px 14px;
  }
  
  .contato-wrapper {
    gap: 24px;
  }
  
  .form, .info {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .info p {
    font-size: 0.95rem;
    word-break: break-word;
  }
  
  .footer {
    padding: 20px 16px;
    font-size: 0.8rem;
  }
  
  .video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
}
