/* ===========================================
   KazaPro — LP Template Styles (3 páginas de serviço)
   =========================================== */

/* Hero (layout — background definido inline em cada página) */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 40px 0;
  min-height: 580px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 9999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; fill: white; opacity: 0.9; }
.hero-badge span { font-size: 13px; font-weight: 500; color: white; }
.hero-h1 {
  font-size: 46px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero-sub { font-size: 17px; color: #bfdbfe; line-height: 1.65; max-width: 380px; }

/* Form Card */
.form-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 32px;
  animation: slideIn .6s ease both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}
.form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.form-group { margin-bottom: 10px; }
.form-input,
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: #f3f3f5;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s, background .2s;
  appearance: none;
}
.form-input::placeholder { color: #9ca3af; }
.form-input:focus,
.form-select:focus { background: white; border-color: var(--blue-primary); }
.btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--blue-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background .2s, transform .15s;
  margin-top: 6px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }

/* Trust Strip */
.trust {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 40px;
}
.trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; }
.trust-icon svg { width: 28px; height: 28px; stroke: var(--blue-primary); fill: none; stroke-width: 2; }
.trust-text { font-size: 14px; font-weight: 500; color: var(--text-mid); }

/* Sections LP */
.lp-section { padding: 64px 40px; }
.lp-section-inner { max-width: 1120px; margin: 0 auto; }
.lp-section-alt { background: var(--bg-gray); }
.lp-h2 { font-size: 30px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.5px; margin-bottom: 10px; }
.lp-h2.center { text-align: center; }
.lp-sub { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.lp-sub.center { text-align: center; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.service-card {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover { border-color: var(--blue-primary); box-shadow: 0 4px 20px rgba(21,93,252,.1); transform: translateY(-2px); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--blue-primary); fill: none; stroke-width: 2; }
.service-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Repairs Grid */
.repairs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.repair-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color .2s, background .2s;
}
.repair-card:hover { border-color: var(--blue-primary); background: var(--blue-pale); }

/* Included Grid */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.included-img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.included-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.included-content { display: flex; flex-direction: column; gap: 36px; }
.list-block h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }
.list-items { display: flex; flex-direction: column; gap: 12px; }
.list-item { display: flex; align-items: flex-start; gap: 12px; }
.list-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.list-dot.green { background: var(--green-light); }
.list-dot.red   { background: var(--red-light); }
.list-dot svg { width: 14px; height: 14px; }
.list-item-text { font-size: 15px; color: var(--text-mid); line-height: 1.6; padding-top: 4px; }

/* Benefits Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.benefit-card {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon svg { width: 22px; height: 22px; stroke: var(--blue-primary); fill: none; stroke-width: 2; }
.benefit-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.benefit-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 44px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 47px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-primary), var(--blue-light));
  opacity: .4;
}
.step { text-align: center; }
.step-circle {
  width: 94px; height: 94px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.step-circle svg { width: 46px; height: 46px; stroke: var(--blue-primary); fill: none; stroke-width: 1.5; }
.step-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.testimonial-card {
  background: var(--bg-gray);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: #f59e0b; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testimonial-service { font-size: 13px; color: var(--text-muted); }

/* Alert Box */
.alert-box {
  background: var(--orange-bg);
  border-left: 4px solid var(--orange-border);
  border-radius: 10px;
  padding: 22px 22px 22px 26px;
  margin-top: 28px;
}
.alert-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.alert-title svg { width: 20px; height: 20px; stroke: var(--orange-border); fill: none; stroke-width: 2; flex-shrink: 0; }
.alert-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.alert-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.alert-list li::before { content: '•'; color: #f54900; font-size: 18px; position: absolute; left: 0; top: -2px; }

/* Secondary Button */
.faq-cta { text-align: center; margin-top: 32px; }
.faq-cta p { font-size: 15px; color: var(--text-muted); margin-bottom: 12px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: background .2s, transform .15s;
}
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ===========================================
   LP Responsive
   =========================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 560px; }
  .hero-h1 { font-size: 36px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .repairs-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 20px 0; }
  .hero-h1 { font-size: 28px; }
  .form-card { padding: 24px 18px; }
  .lp-section, .trust { padding-left: 20px; padding-right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .repairs-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 400px) {
  .repairs-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; }
}
