/* css/visual-farm.css — página institucional da parceira Visual Farm.
   Carregada só em /visual-farm/, depois de style.css. */

/*
 * 1. Hero com a imagem do show de drones
 */
.vf-hero {
  position: relative;
  min-height: 70vh;
  padding-top: calc(var(--header-height-large) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--darker-bg);
}

.vf-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.vf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    var(--dark-bg) 100%
  );
}

.vf-hero-content {
  position: relative;
  z-index: 2;
}

.vf-eyebrow {
  margin: 0 0 12px;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vf-hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--text-color);
}

.vf-hero-tagline {
  margin: 12px auto 32px;
  max-width: 40ch;
  color: #ddd;
  font-size: 1.15rem;
  font-style: italic;
}

/*
 * 2. Seções de conteúdo
 */
.vf-section {
  background-color: var(--dark-bg);
}

.vf-section-alt {
  background-color: var(--darker-bg);
}

.vf-lead {
  max-width: 75ch;
  margin: 0 auto;
  color: #ccc;
  font-size: 1.05rem;
}

.vf-section .section-title-with-icon {
  margin-bottom: 30px;
}

/*
 * 3. Números em destaque
 */
.vf-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 50px 0 0;
  padding: 35px 0 0;
  border-top: 1px solid #333;
  list-style: none;
}

.vf-spec-valor {
  display: block;
  color: var(--accent-color);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.vf-spec-label {
  display: block;
  margin-top: 6px;
  color: #ccc;
  font-size: 0.95rem;
}

/*
 * 4. Os quatro pilares de serviço
 */
.vf-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  text-align: left;
}

.vf-pillar {
  padding: 30px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #111;
  transition: transform 0.3s, border-color 0.3s;
}

.vf-pillar:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color);
}

.vf-pillar h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--text-color);
}

.vf-pillar p {
  margin: 0;
  color: #ccc;
  font-size: 0.95rem;
}

/*
 * 5. Como o espetáculo é operado
 */
.vf-tech-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.vf-tech-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  color: #ccc;
}

.vf-tech-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/*
 * 6. Galeria de espetáculos
 */
.vf-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.vf-foto {
  margin: 0;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background-color: #111;
}

.vf-foto img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.vf-foto figcaption {
  padding: 16px 20px;
  color: #ccc;
  font-size: 0.9rem;
  text-align: left;
}

/*
 * 7. Cases
 */
.vf-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vf-cases li {
  padding: 8px 18px;
  border: 1px solid #333;
  border-radius: 999px;
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 0.95rem;
}

/*
 * 8. Chamada final
 */
.vf-cta-section .vf-lead {
  margin-bottom: 35px;
}

/*
 * 9. Item ativo do menu e nota do rodapé
 */
.nav-current {
  color: var(--accent-color);
}

.vf-footer-nota {
  margin-top: 10px;
  color: #777;
  font-size: 0.8rem;
}

/*
 * 10. Responsivo
 */
@media (max-width: 768px) {
  .vf-hero {
    min-height: 60vh;
    padding-top: calc(var(--header-height-mobile) + 50px);
    padding-bottom: 60px;
  }
  .vf-hero-tagline {
    font-size: 1rem;
  }
  .vf-specs {
    margin-top: 35px;
    padding-top: 25px;
    gap: 20px;
  }
  .vf-spec-valor {
    font-size: 1.8rem;
  }
  .vf-pillar {
    padding: 25px 20px;
  }
  .vf-foto img {
    height: 200px;
  }
}
