/* ---------------------- HEADER ---------------------- */
#header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 2;}

#header video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    z-index: 1;}

#header .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;}

#headerContent {
    position: relative;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;}

#headerContent h1 {
    font-size: 4rem;
    background: linear-gradient(90deg, var(--principalColor), var(--secundaryColor));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}

#headerContent h2 {
    margin-top: 5px;
    font-size: 2rem;
    color: #ddd;}

#headerContent p{
    margin-top: 5px;
    font-size: 1rem;
    color: #ddd;}

.cta-button {
    margin-top: 25px;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    border: none;
    background: linear-gradient(90deg, var(--principalColor), var(--secundaryColor));
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;}

.cta-button:hover {
    transform: scale(1.05);}

/* === HERO SECTION === */
.hero {
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.btn{
    padding:12px 18px;
    border-radius:10px;
    border:0;
    font-weight: 700;
    text-decoration: none;
    cursor:pointer;}

.btn-primary{
    background:linear-gradient(90deg,var(--principalColor),var(--secundaryColor));
    color:#080808;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    box-shadow:0 10px 30px rgba(212,175,55,0.12);}

/* === HERO COPY === */
.hero-copy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color:transparent;
    background:linear-gradient(90deg,var(--principalColor),var(--secundaryColor));
    -webkit-background-clip:text;
    text-align: center;
}

.lead-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lead-img {
    height: 200px;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 50px var(--accent-glow);
    animation: float 3s ease-in-out infinite;
    filter: grayscale(0.2) contrast(1.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }}

.lead {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* === BADGES === */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  background:var(--glass);
  color:var(--principalColor);
  border: 1px solid #ffd70033;
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}


/* === CTA BUTTON === */
.hero-cta .btn-primary {
  background: linear-gradient(90deg, var(--principalColor), var(--secundaryColor));
  color: #000;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
}

/* === LEAD CARD === */
.lead-card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.lead-card h4 {
  color:var(--principalColor);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.lead-card p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.lead-input {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lead-input input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.lead-input input:focus {
  border-color: var(--principalColor);
  outline: none;
}



.small {
  color: #888;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* === ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lead-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lead {
    text-align: center;
    max-width: 600px;
  }

  .badges {
    justify-content: center;
  }

  .hero-cta {
    text-align: center;
  }

  .lead-card {
    align-self: center;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 4rem 1.5rem;
  }

  .hero-copy h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .lead-card {
    padding: 1.5rem;
  }
}
