/* =========================
   Infinity Menu — landing.css
   Landing page de geração de leads
   ========================= */

/* Override: seções da landing não herdam animação do style.css */
.lp-body section {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ========================= TOPBAR ========================= */
.lp-topbar {
  background: var(--black);
  color: var(--yellow);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}

/* ========================= HEADER ========================= */
.lp-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.lp-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.lp-brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}

.lp-header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(242,149,67,0.3);
}

.lp-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(242,149,67,0.4);
}

/* ========================= HERO ========================= */
.lp-hero {
  background: linear-gradient(160deg, #fffdf5 0%, #fff8ed 60%, #fff3e0 100%);
  padding: 60px 24px 80px;
}

.lp-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* Badge */
.lp-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* Headline */
.lp-headline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

.lp-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheadline */
.lp-subheadline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Benefícios */
.lp-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.lp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lp-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-top: 2px;
}

.lp-benefits li div strong {
  display: block;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 2px;
}

.lp-benefits li div p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

/* Stats */
.lp-social-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 28px;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp-stat strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-dark);
  line-height: 1;
}

.lp-stat span {
  font-size: 0.78rem;
  color: #666;
  font-weight: 500;
}

.lp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
}

/* Thumbs */
.lp-thumbs {
  display: flex;
  gap: 10px;
}

.lp-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.lp-thumbs img:hover {
  border-color: var(--orange);
  transform: scale(1.06);
}

/* ========================= FORM CARD ========================= */
.lp-form-col {
  position: sticky;
  top: 90px;
}

.lp-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(242,149,67,0.1);
  border: 1px solid rgba(249,198,59,0.2);
}

.lp-form-badge {
  display: inline-block;
  background: rgba(249,198,59,0.15);
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.lp-form-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lp-form-subtitle {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 24px;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #333;
}

.lp-field input,
.lp-field select {
  padding: 12px 16px;
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.lp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lp-field input:focus,
.lp-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,149,67,0.12);
  background: #fff;
}

.lp-field input.error,
.lp-field select.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.lp-field .field-error {
  font-size: 0.78rem;
  color: #e53e3e;
  font-weight: 500;
}

/* Submit */
.lp-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #25D366, #1ebe5a);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  margin-top: 4px;
}

.lp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}

.lp-submit-btn:active {
  transform: translateY(0px) scale(0.99);
}

.lp-submit-btn.loading {
  opacity: 0.75;
  pointer-events: none;
}

.lp-form-privacy {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin-top: 4px;
}

/* Success state */
.lp-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  gap: 14px;
  animation: fadeInUp 0.5s ease;
}

.lp-success[hidden] {
  display: none;
}

.lp-success-icon {
  font-size: 3.5rem;
}

.lp-success h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
}

.lp-success p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================= PROOF STRIP ========================= */
.lp-proof-strip {
  background: var(--black);
  padding: 22px 24px;
  overflow: hidden;
}

.lp-proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-style: italic;
}

.lp-proof-icon {
  font-size: 1rem;
  font-style: normal;
}

.lp-proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ========================= COMO FUNCIONA ========================= */
.lp-how {
  padding: 80px 24px;
  background: #fff;
}

.lp-how-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lp-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-dark);
  background: rgba(242,149,67,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.lp-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 50px;
  line-height: 1.2;
}

.lp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 32px 24px;
  background: #fafafa;
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.lp-step:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.lp-step-num {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 14px;
}

.lp-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.lp-step p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.lp-step-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ========================= PORTFÓLIO ========================= */
.lp-portfolio {
  padding: 80px 24px;
  background: #f9f9f9;
}

.lp-portfolio-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.lp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.lp-portfolio-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.lp-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.lp-portfolio-img {
  padding: 16px;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.lp-portfolio-img img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 8px;
}

.lp-portfolio-info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.lp-portfolio-info strong {
  font-size: 0.9rem;
  color: var(--black);
}

.lp-portfolio-info span {
  font-size: 0.78rem;
  color: #888;
}

.lp-portfolio-cta {
  display: flex;
  justify-content: center;
}

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  color: var(--orange-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.lp-btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

/* ========================= FINAL CTA ========================= */
.lp-final-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}

.lp-final-cta-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.lp-final-left {
  flex: 1;
  min-width: 300px;
}

.lp-final-left h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.lp-final-left p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.lp-final-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-final-badges span {
  background: rgba(249,198,59,0.12);
  border: 1px solid rgba(249,198,59,0.25);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.lp-final-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lp-final-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 14px;
  background: linear-gradient(90deg, #25D366, #1ebe5a);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}

.lp-final-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ========================= FOOTER ========================= */
.lp-footer {
  background: #050505;
  padding: 32px 24px;
}

.lp-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-footer-brand img {
  height: 36px;
  border-radius: 6px;
}

.lp-footer-brand span {
  color: #ddd;
  font-weight: 600;
  font-size: 0.95rem;
}

.lp-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: var(--yellow);
}

.lp-footer-copy {
  color: #555;
  font-size: 0.78rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid #111;
  padding-top: 18px;
  margin: 0;
}

/* ========================= FAB WHATSAPP ========================= */
.lp-whats-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-whats-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

/* ========================= RESPONSIVO ========================= */
@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-form-col {
    position: static;
  }

  .lp-form-card {
    padding: 28px 22px;
  }

  .lp-step-arrow {
    transform: rotate(90deg);
  }

  .lp-final-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .lp-final-badges {
    justify-content: center;
  }

  .lp-final-right {
    width: 100%;
  }

  .lp-final-btn {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .lp-topbar {
    font-size: 0.72rem;
  }

  .lp-hero {
    padding: 40px 16px 60px;
  }

  .lp-headline {
    font-size: 1.8rem;
  }

  .lp-social-proof {
    gap: 16px;
  }

  .lp-stat strong {
    font-size: 1.4rem;
  }

  .lp-thumbs img {
    width: 56px;
    height: 56px;
  }

  .lp-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-step {
    max-width: 100%;
  }

  .lp-step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .lp-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-proof-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .lp-proof-dot {
    display: none;
  }

  .lp-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lp-whats-fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}
