/* LP Agostinho / MFX Creativee — dark tecnológico */

:root {
  --orange: #e0695d;
  --orange-2: #ff7a4f;
  --orange-dark: #c85248;
  --black: #05080c;
  --card: rgba(13, 24, 34, 0.86);
  --line: rgba(255, 255, 255, 0.11);
  --line-orange: rgba(224, 105, 93, 0.38);
  --white: #ffffff;
  --text: #eef4fa;
  --muted: #aab8c7;
  --muted-2: #7f8c9a;
  --green: #25d366;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --glow: 0 0 42px rgba(224, 105, 93, 0.23);
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(224, 105, 93, 0.13), transparent 30%),
    radial-gradient(circle at 92% 22%, rgba(224, 105, 93, 0.09), transparent 28%),
    linear-gradient(180deg, #05080c 0%, #080d13 42%, #05080c 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section { padding: 76px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: var(--glow);
}

.brand-text { font-size: 1rem; }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 99px;
}

.nav-menu {
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(9, 15, 22, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 8px;
}

.nav-menu.is-open { display: flex; }

.nav-menu a {
  padding: 12px 14px;
  color: var(--text);
  font-weight: 800;
  font-size: 0.94rem;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--glow);
}

.hero-image-section {
  padding: 0 0 72px;
  overflow: hidden;
}

.hero-image-wrap {
  width: 100%;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.hero-main-image {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-after { padding-top: 42px; }

.eyebrow, .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-2);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(224, 105, 93, 0.8);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(2.35rem, 12vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 900px;
}

h1 span, h2 span { color: var(--orange); }

h2 {
  font-size: clamp(2rem, 8vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--white);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-subtitle,
.section-heading p,
.solution p,
.pricing-grid p,
.authority-grid p,
.final-box p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-subtitle { max-width: 720px; }

.hero-actions {
  display: grid;
  gap: 12px;
  margin: 26px 0 24px;
}

.btn {
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 18px 35px rgba(224, 105, 93, 0.26);
}

.btn-primary:hover { box-shadow: 0 22px 48px rgba(224, 105, 93, 0.36); }

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  color: var(--white);
}

.btn-secondary:hover { border-color: var(--line-orange); }

.btn-full { width: 100%; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-row div {
  padding: 14px 10px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.trust-row span,
.microcopy {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.microcopy {
  margin-top: 12px;
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.pain, .how, .pricing, .guarantee, .faq {
  background: rgba(255,255,255,0.015);
}

.solution, .offer, .authority, .final-cta, .portfolio {
  background:
    radial-gradient(circle at top right, rgba(224,105,93,0.085), transparent 30%),
    rgba(255,255,255,0.026);
}

.hero-grid,
.solution-grid,
.pricing-grid,
.authority-grid {
  display: grid;
  gap: 36px;
}

.pain-grid,
.features-grid,
.portfolio-grid,
.timeline,
.proof-list {
  display: grid;
  gap: 16px;
}

.pain-card,
.feature-card,
.portfolio-card,
.timeline article,
.price-card,
.proof-list article,
.faq-list details,
.media-card,
.process-media {
  background: linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.25);
}

.media-card,
.process-media {
  padding: 10px;
  overflow: hidden;
}

.section-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
}

.pain-card span,
.timeline span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.pain-card p,
.feature-card p,
.portfolio-card p,
.timeline p {
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
  color: #52ef8b;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.process-media { margin-bottom: 18px; }

.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(224, 105, 93, 0.14);
  border: 1px solid rgba(224,105,93,0.25);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.portfolio-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange-2);
  font-weight: 900;
}

.image-placeholder {
  min-height: 180px;
  border: 1.5px dashed rgba(224, 105, 93, 0.45);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(224, 105, 93, 0.08), rgba(255, 255, 255, 0.04));
  display: grid;
  place-items: center;
  color: var(--orange-2);
  text-align: center;
  padding: 22px;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.image-placeholder.small {
  min-height: 140px;
  max-width: 360px;
  margin: 0 auto 22px;
}

.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.055));
}

.price-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(224, 105, 93, 0.16);
  color: var(--orange-2);
  font-weight: 900;
  font-size: 0.78rem;
}

.price {
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 950;
  color: var(--white);
  margin: 18px 0 8px;
}

.price-note,
.price-card small {
  color: var(--muted);
}

.guarantee-box {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(224, 105, 93, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--line-orange);
  box-shadow: var(--shadow);
}

.seal {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 1.25rem;
  transform: rotate(-8deg);
  box-shadow: var(--glow);
}

.proof-list article {
  display: grid;
  gap: 4px;
}

.proof-list strong {
  font-size: 1.8rem;
  color: var(--orange-2);
  line-height: 1;
}

.proof-list span {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-box {
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(224, 105, 93, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045));
  border: 1px solid var(--line);
  color: var(--white);
  padding: 32px 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 30px 0 90px;
  background: #030507;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 10px;
  text-align: center;
}

.footer-inner p { margin: 0; }

.footer-inner a {
  color: var(--white);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 60;
}

@media (min-width: 760px) {
  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .pain-grid,
  .features-grid,
  .portfolio-grid,
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .guarantee-box {
    grid-template-columns: 140px 1fr;
    padding: 42px;
  }

  .process-media .section-img {
    max-height: 460px;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 980px) {
  .section { padding: 100px 0; }

  .menu-toggle { display: none; }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    box-shadow: none;
    background: transparent;
    border: 0;
  }

  .nav-menu a { font-size: 0.86rem; }

  .nav-cta { padding-inline: 18px !important; }

  .hero-main-image { height: min(78vh, 820px); }

  .hero-after { padding-top: 56px; }

  .hero-subtitle {
    max-width: 680px;
    font-size: 1.18rem;
  }

  .trust-row { max-width: 690px; }

  .solution-grid,
  .pricing-grid,
  .authority-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .final-box { padding: 58px; }

  .site-footer { padding-bottom: 34px; }

  .footer-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
  }
}


/* Moldura fixa dos prints do portfólio */
.portfolio-screen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  margin-bottom: 18px;
  position: relative;
}

.portfolio-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  border-radius: inherit;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.035);
}

@media (min-width: 760px) {
  .portfolio-screen {
    height: 240px;
  }
}

@media (min-width: 980px) {
  .portfolio-screen {
    height: 260px;
  }
}


/* Selo final da garantia de 72h */
.final-seal-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 35px rgba(224, 105, 93, 0.32));
}

.final-seal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 760px) {
  .final-seal-wrap {
    width: 180px;
    height: 180px;
    margin-bottom: 28px;
  }
}
