/* =====================================================
   LANDING PAGE PROFISSIONAL
   Arquivo: assets/css/landing_page.css
   Mantém Bootstrap e padrão visual do sistema.
   ===================================================== */

.landing-page-profissional {
  background: #020918;
  color: #e9eefb;
  overflow: hidden;
}

.landing-page-profissional a,
.landing-page-profissional a:hover,
.landing-page-profissional a:focus {
  text-decoration: none;
}

.lp-hero-section {
  position: relative;
  min-height: 720px;
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.18), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.22), transparent 32%),
    linear-gradient(135deg, #020918 0%, #071827 52%, #020918 100%);
}

.lp-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.lp-hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  pointer-events: none;
}

.lp-hero-glow-one {
  left: -120px;
  top: 120px;
  background: #00d4ff;
}

.lp-hero-glow-two {
  right: -130px;
  bottom: 60px;
  background: #2563eb;
}

.lp-hero-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.08);
  color: #9befff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.lp-hero-title {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 22px;
}

.lp-hero-title span,
.lp-section-title span {
  color: #00d4ff;
}

.lp-hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(233, 238, 251, 0.86);
  margin-bottom: 22px;
}

.lp-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.lp-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
}

.lp-point i {
  color: #00d4ff;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.lp-btn-primary {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 212, 255, 0.22);
}

.lp-btn-primary i {
  margin-right: 8px;
}

.lp-btn-secondary {
  color: #cbd5e1 !important;
  font-weight: 700;
}

.lp-btn-secondary i {
  margin-left: 6px;
}

.lp-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(2, 9, 24, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.lp-preview-topbar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.lp-carousel img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.lp-indicators {
  bottom: 10px;
}

.lp-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(2, 9, 24, 0.92);
}

.lp-preview-footer strong,
.lp-preview-footer small {
  display: block;
}

.lp-preview-footer small {
  color: rgba(233, 238, 251, 0.62);
  margin-top: 4px;
}

.lp-preview-score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #2563eb);
  color: #fff;
  font-weight: 900;
}

.lp-section {
  position: relative;
  padding: 86px 0;
}

.lp-section-dark {
  background: #020918;
}

.lp-section-light {
  background: linear-gradient(180deg, #071827 0%, #020918 100%);
}

.lp-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #00d4ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lp-section-title {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 14px;
}

.lp-section-subtitle {
  color: rgba(233, 238, 251, 0.78);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.lp-card-row,
.lp-feature-grid,
.lp-process-row {
  margin-top: 24px;
}

.lp-card,
.lp-feature-card,
.lp-process-card,
.lp-work-card,
.lp-contact-box {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.lp-card {
  padding: 30px;
  min-height: 250px;
  transition: transform .25s ease, border-color .25s ease;
}

.lp-card:hover,
.lp-feature-card:hover,
.lp-process-card:hover,
.lp-work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.38);
}

.lp-card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(0, 212, 255, 0.12);
  font-size: 28px;
  margin-bottom: 18px;
}

.lp-card h4,
.lp-feature-card h4,
.lp-process-card h4,
.lp-work-info h4 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 12px;
}

.lp-card p,
.lp-feature-card p,
.lp-process-card p,
.lp-work-info p {
  color: rgba(233, 238, 251, 0.72);
  line-height: 1.65;
}

.lp-feature-card {
  min-height: 230px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.lp-feature-card i {
  width: 62px;
  height: 62px;
  line-height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 212, 255, .22), rgba(37, 99, 235, .22));
  color: #00d4ff;
  font-size: 25px;
  margin-bottom: 18px;
}

.lp-process-card {
  min-height: 240px;
  padding: 28px 24px;
  transition: transform .25s ease, border-color .25s ease;
}

.lp-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #00d4ff, #2563eb);
  color: #fff;
  font-weight: 900;
}

.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  color: #e9eefb;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-check-list i {
  color: #00d4ff;
  margin-top: 3px;
}

.lp-trabalhos-carousel {
  margin-top: 20px;
  padding: 0 34px;
}

.lp-work-card {
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform .25s ease, border-color .25s ease;
}

.lp-work-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  background: #ffffff;
}

.lp-work-info {
  padding: 18px;
  min-height: 116px;
}

.lp-work-info h4 {
  font-size: 17px;
  margin-top: 0;
}

.lp-work-info h4 a {
  color: #ffffff;
}

.lp-work-info p {
  margin: 0;
  font-size: 14px;
}

.lp-trabalhos-carousel .carousel-control {
  width: 34px;
  background: transparent;
  color: #00d4ff;
  opacity: 1;
}

.lp-contact-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #020918 0%, #071827 100%);
}

.lp-contact-box {
  padding: 38px;
}

.lp-form .form-control {
  height: 48px;
  border-radius: 14px;
  background: rgba(2, 9, 24, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #ffffff;
}

.lp-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.lp-submit-btn {
  border-radius: 14px;
  font-weight: 900;
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-form-note {
  text-align: center;
  color: rgba(233, 238, 251, 0.68);
  margin: 16px 0 0;
}

@media (max-width: 991px) {
  .lp-hero-row {
    display: block;
  }
  .lp-hero-section {
    padding-top: 95px;
    min-height: auto;
  }
  .lp-hero-content {
    margin-bottom: 38px;
  }
  .lp-hero-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .lp-hero-section {
    padding: 70px 0 55px;
  }
  .lp-hero-title {
    font-size: 31px;
  }
  .lp-hero-subtitle,
  .lp-section-subtitle {
    font-size: 15px;
  }
  .lp-section {
    padding: 58px 0;
  }
  .lp-section-title {
    font-size: 26px;
  }
  .lp-card,
  .lp-feature-card,
  .lp-process-card {
    margin-bottom: 18px;
    min-height: auto;
  }
  .lp-contact-box {
    padding: 24px 18px;
  }
  .lp-hero-actions {
    display: block;
  }
  .lp-btn-primary,
  .lp-btn-secondary {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
  .lp-work-card img {
    height: 240px;
  }
}
