/* style.css - Identidade: vermelho & verde, look moderno */
:root{
  --bg:#070707;
  --card: rgba(255,255,255,0.03);
  --accent-red:#ff2b2b;
  --accent-green:#00a75a;
  --muted:#ffffff;
  --glass: rgba(255,255,255,0.04);
  --radius:14px;
  --maxw:1200px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background-image: linear-gradient(180deg,#050505 0%, #0d0d0d 100%);
  color:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

body {
      color: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
      position: relative; /* Para posicionar o vídeo */
    }

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

    video {
      position: fixed; /* Faz o vídeo ficar fixo como fundo */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* Faz o vídeo cobrir a tela, mantendo proporção */
      z-index: -2; /* Coloca o vídeo atrás do conteúdo */
    }

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  z-index: 10;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.15);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 70px;
  height: auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: scale(1.1);
}

.brand h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  color: #ff0000;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.brand div {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #00ff00, #ff0000);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff0000, #00ff00);
}

.btn.small {
  font-size: 16px;
  padding: 10px 20px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.hero-left h2 {
  font-size: 48px;
  margin: 0 0 20px;
  color: #ff0000;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.hero-left p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-card {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slider-controls {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, #00ff00, #ff0000);
}

/* Form */
.input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(14, 14, 14, 0.8);
  padding: 15px 20px;
  border-radius: 15px;
  color: #fff;
  font-size: 16px;
  outline: none;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.input:focus,
textarea:focus,
select:focus {
  border-color: #00ff00;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-cta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 25px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.secondary:hover {
  border-color: #ff0000;
  color: #ff0000;
}

/* Cards Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: rgba(0, 0, 0, 0.85);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin: 0 0 10px;
  color: #00ff00;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Video Thumbnail */
.video-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.video-thumb:hover {
  transform: scale(1.05);
}

.video-thumb::after {
  content: '▶';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  background: linear-gradient(135deg, #00ff00, #ff0000);
  padding: 15px 20px;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  color: #fff;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.footer {
  margin-top: 50px;
  padding: 25px 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  border-top: 1px solid rgba(0, 255, 0, 0.2);
}

/* Responsive */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .brand img {
    width: 50px;
  }
  .hero-left h2 {
    font-size: 32px;
  }
  .hero {
    gap: 30px;
  }
  .container {
    padding: 20px;
  }
}