/* ---------------------------
   LANDING PAGE V2 — EXTENSÃO
   (compatível com seu design system)
-------------------------------*/

/* HERO refinado */
.hero {
  padding: 7rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: visible;
}

.hero h1 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark-text);
}

.hero .eyebrow {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CTAs refinados */
.cta-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.85rem 1.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all .25s ease;
}

.cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.cta-ghost {
  background: white;
  border: 1px solid #cbd5e1;
  color: var(--dark-text);
  padding: 0.85rem 1.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all .25s ease;
}

.cta-ghost:hover {
  background: #f8fafc;
  transform: translateY(-3px);
}

/* MOCKUP container */
.mockup-card {
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  padding: 32px;
}

.mockup {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Mini chart card ao lado */
.mockup-mini {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  width: 240px;
}

/* Features da V2 usando seu padrão */
.feature-card-v2 {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.6rem;
  transition: all .25s ease;
}

.feature-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

/* Badges das fontes de dados */
.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  font-weight: 600;
  color: var(--dark-text);
  cursor: default;
}

/* Section fundo leve */
.bg-light-v2 {
  background: #f8fafc;
}

/* Lead form */
.lead-form-v2 {
  background: linear-gradient(135deg, var(--primary) 0%, #312E81 100%);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  color: white;
}

.lead-form-v2 input {
  background: rgba(255,255,255,0.95);
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  width: 100%;
}

.lead-form-v2 button {
  background: white;
  color: var(--primary);
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all .25s ease;
}

.lead-form-v2 button:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* Footer */
.footer-v2 {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 3rem 0 2rem;
}

/* Logo 3D */
.logo-3d {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #4F46E5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(30,58,138,0.25);
}

/* ============================================================= */
/*                    PREMIUM HERO MOCKUP — UPDATED               */
/* ============================================================= */

.hero-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  padding-top: 80px;
  padding-bottom: 60px;
}

/* Container central do mockup */
.mockup-premium-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

/* ------------------ MACBOOK PRO ------------------ */
.mockup-macbook {
  width: 100%;
  border-radius: 18px;
  padding: 22px;
  background: #111827;
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
}

.mockup-macbook img.macbook-screen {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

/* ------------------ IPHONE (sobreposto) ------------------ */
.mockup-iphone {
  position: absolute;
  width: 170px;
  bottom: -45px;
  right: -25px;
  z-index: 20;
  padding: 14px;
  background: #111;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transform: rotate(-10deg);
  transition: transform .35s ease, box-shadow .35s ease;
}

.mockup-iphone:hover {
  transform: rotate(-5deg) translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}

.mockup-iphone img.iphone-screen {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* ------------------ RESPONSIVO ------------------ */
@media (max-width: 991px) {
  .mockup-premium-container {
    max-width: 480px;
  }

  .mockup-iphone {
    width: 150px;
    right: -10px;
    bottom: -35px;
  }
}

@media (max-width: 767px) {
  .hero-premium {
    text-align: center;
  }

  .mockup-premium-container {
    max-width: 100%;
  }

  .mockup-iphone {
    position: relative;
    margin: 20px auto 0;
    transform: rotate(0deg);
    right: 0;
  }
}

/* ===================== HERO PREMIUM ===================== */

.hero-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  padding-top: 80px;
  padding-bottom: 60px;
}

/* Container com efeito de profundidade */
.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;       /* controla o tamanho máximo do notebook */
  margin: 0 auto;
}

/* Imagem da moldura do MacBook */
.macbook-base {
  width: 100%;
  display: block;
}

/* Área da tela dentro do MacBook (coordenadas calibradas) */
.screen-area {
  position: absolute;
  left: 10%;              /* quão distante da borda esquerda */
  top: 12%;               /* distância do topo */
  width: 80%;             /* largura da área da tela */
  height: 68%;            /* altura da área da tela */
  overflow: hidden;
  border-radius: 6px;
}

/* Screenshot do dashboard */
.screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* mantém proporção e preenche a tela */
  border-radius: 6px;
}

/* Ajustes responsivos */
@media (max-width: 991px) {
  .hero-premium {
    text-align: center;
  }
  .mockup-wrapper {
    max-width: 460px;
    margin-top: 24px;
  }
}

/* ---- Alinhamento do bloco de filtros (retângulo vermelho) ---- */
.form-grid .field-label {
  display: block;
  min-height: 18px;          /* mesma altura em todas colunas */
  margin-bottom: .35rem;
  font-weight: 500;
}

.form-grid .field-help {
  min-height: 18px;          /* reserva espaço pro helper text */
  margin-top: .25rem;
  font-size: .85rem;
  color: #6c757d;
}

.form-grid .switch-wrap {
  padding-top: 2px;          /* ajusta o “baseline” do switch */
}

