/* ============================================================
   LP Apps Clicksoft — style.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: #101828;
  line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Scroll fade-in ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
}

/* Pulse glow on yellow CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,252,23,.5); }
  55%       { box-shadow: 0 0 0 10px rgba(220,252,23,0); }
}
.btn--yellow {
  background: #DCFC17;
  color: #000;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.btn--yellow:hover {
  background: #c8e800;
  animation: none;
  box-shadow: 0 0 20px rgba(220,252,23,.45);
  transform: translateY(-1px);
}

.btn--white-pill {
  background: #fff;
  color: #6941C6;
  border-radius: 47px;
  font-size: 15px;
  padding: 13px 22px;
}
.btn--white-pill:hover {
  background: #f0e9ff;
  box-shadow: 0 0 16px rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.btn--purple {
  background: #6941C6;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
}
.btn--purple:hover {
  background: #5835b0;
  transform: translateY(-1px);
}

/* ── SECTION 1 — Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  background-color: #50398C;
  background-image: url('https://clicksoft.com.br/wp-content/uploads/2024/03/Desenvolvimento-de-apps.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 56px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(50, 30, 100, 0.78);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* navbar */
.hero-nav { padding: 16px 0; }
.hero-nav .container--wide { display: flex; align-items: center; }
.hero-logo img { width: auto; max-width: 160px; height: 36px; object-fit: contain; }

/* hero body */
.hero-body .container--wide {
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 48px;
  align-items: start;
}
.hero-left { padding-top: 48px; }

.hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  line-height: 1.7;
}
.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-list li {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-list li::before {
  content: '•';
  font-size: 10px;
  color: #DCFC17;
  flex-shrink: 0;
}

/* hero form card */
.hero-right { padding-top: 20px; }
.form-card {
  background: rgba(0,0,0,.40);
  border-radius: 14px;
  padding: 32px;
  margin-top: 20px;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  color: #667085;
  background: #fff;
  outline: none;
  height: 42px;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
  border-color: #DCFC17;
  box-shadow: 0 0 0 3px rgba(220,252,23,.2), 0 0 14px rgba(220,252,23,.12);
}
.form-group select { cursor: pointer; }

/* contact section inputs (on semi-transparent bg) */
.contact-form-wrap .form-group input[type="text"],
.contact-form-wrap .form-group input[type="email"],
.contact-form-wrap .form-group select {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.97);
}

/* ── Phone field (intl-tel-input overrides) ────────────────── */
.form-group .iti { width: 100%; }
.form-group .iti input[type="tel"] {
  width: 100%;
  padding: 10px 14px 10px 52px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  color: #667085;
  background: #fff;
  outline: none;
  height: 42px;
  transition: border-color .2s, box-shadow .2s;
}
.form-group .iti input[type="tel"]:focus {
  border-color: #DCFC17;
  box-shadow: 0 0 0 3px rgba(220,252,23,.2), 0 0 14px rgba(220,252,23,.12);
}
.iti__flag-container { height: 42px; }
.iti__selected-flag  { height: 42px; padding: 0 10px; border-radius: 8px 0 0 8px; }
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.15);
}
.iti__selected-dial-code { font-size: 13px; color: #667085; }

/* ── Custom Checkbox ──────────────────────────────────────── */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-outer {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.check-outer input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}
.check-box {
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: transparent;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  z-index: 1;
}
.check-outer input[type="checkbox"]:checked ~ .check-box {
  background: #D8FF00;
  border-color: #D8FF00;
  color: #6A0DAD;
  box-shadow: 0 0 8px rgba(216,255,0,.4);
}
.check-label {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  cursor: pointer;
}

/* form guarantee line */
.form-guarantee {
  font-size: 13px;
  color: #DCFC17;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* form messages */
.form-success {
  display: none;
  background: rgba(51,173,172,.15);
  border: 1px solid #33ADAC;
  color: #33ADAC;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
}
.form-error {
  display: none;
  background: rgba(255,113,113,.1);
  border: 1px solid #FF7171;
  color: #FF7171;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
}
.field-error {
  display: none;
  color: #FF7171;
  font-size: 12px;
  margin-top: 4px;
}

/* spinner */
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn--loading .btn-text { display: none; }
.btn--loading .btn-spinner { display: block; }

/* ── SECTION 2 — Clients ──────────────────────────────────── */
.clients { background: #fff; padding: 48px 0 48px; }
.clients-inner {
  background: #F9F5FF;
  border-radius: 14px;
  padding: 32px 60px;
}
.clients-title {
  font-size: 17px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* marquee carousel */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: .75;
  transition: opacity .2s, filter .2s;
}
.marquee-track img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION 3 — Process ──────────────────────────────────── */
.process { background: #633EBB; padding: 56px 0; }
.process-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.process-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  text-align: center;
  margin-top: 10px;
  padding: 0 80px;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* Process icon circle */
.process-icon {
  width: 56px;
  height: 56px;
  background: rgba(220,252,23,.1);
  border: 1px solid rgba(220,252,23,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: #DCFC17;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.process-item {
  text-align: center;
  border-radius: 12px;
  padding: 20px 12px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}
.process-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(220,252,23,.2);
  transform: translateY(-5px);
}
.process-item:hover .process-icon {
  background: rgba(220,252,23,.2);
  border-color: rgba(220,252,23,.5);
  box-shadow: 0 0 16px rgba(220,252,23,.2);
  transform: scale(1.08);
}
.process-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.process-item p {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.process-cta { text-align: center; margin-top: 36px; }

/* ── SECTION 4 — Social Proof ─────────────────────────────── */
.proof {
  background: linear-gradient(90deg, #EBEEF1 37%, #fff 100%);
  overflow: hidden;
}
.proof .container {
  display: grid;
  grid-template-columns: 47fr 53fr;
  align-items: end;
  padding-top: 48px;
}
.proof-img img { width: 100%; margin-bottom: -120px; }
.proof-text { padding: 120px 100px 56px 40px; }
.proof-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
  line-height: 1.35;
}
.proof-text p { font-size: 15px; color: #667085; line-height: 1.7; }

/* ── SECTION 5 — FAQ ──────────────────────────────────────── */
.faq { background: #633EBB; padding: 56px 0; }
.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}
.accordion { max-width: 840px; margin: 0 auto; }
.accordion-item {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-left: 0;
  transition: padding-left .25s;
}
/* left accent bar */
.accordion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #DCFC17;
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform .25s ease;
  transform-origin: center;
}
.accordion-item.open::before { transform: scaleY(1); }
.accordion-item.open { padding-left: 14px; }

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: color .2s;
}
.accordion-btn:hover { color: #DCFC17; }
.accordion-icon { flex-shrink: 0; font-size: 18px; transition: transform .25s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-item.open .accordion-btn { color: #DCFC17; }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-item.open .accordion-content { max-height: 800px; }
.accordion-content-inner {
  padding: 0 0 16px;
  font-size: 14px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
}
.accordion-content-inner a { color: #DCFC17; text-decoration: underline; }
.accordion-content-inner a:hover { color: #fff; }
.faq-cta { text-align: center; margin-top: 36px; }

/* ── SECTION 6 — Mídia ────────────────────────────────────── */
.media { background: #fff; padding: 48px 0 80px; }
.media-inner {
  background: #F9F5FF;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 36fr 64fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.media-img {
  overflow: hidden;
  min-height: 260px;
}
.media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.media-body {
  padding: 36px 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.media-content { display: flex; flex-direction: column; gap: 8px; }
.media-tag { font-size: 13px; font-weight: 700; color: #6941C6; text-transform: uppercase; letter-spacing: .06em; }
.media-headline { font-size: 22px; font-weight: 700; color: #101828; line-height: 1.3; }
.media-source { font-size: 14px; font-weight: 500; color: #667085; }
.media-article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #6941C6;
  margin-top: 4px;
  transition: gap .2s, color .2s;
}
.media-article-link:hover { color: #4e2fa0; gap: 10px; }

/* store badges */
.media-stores-label { font-size: 13px; font-weight: 600; color: #667085; margin-bottom: 10px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  min-width: 150px;
}
.store-badge:hover { background: #2d2d4e; transform: translateY(-2px); }
.store-badge i { font-size: 22px; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 10px; color: rgba(255,255,255,.7); font-weight: 400; }
.store-badge span > :last-child { font-size: 14px; font-weight: 700; }

/* ── SECTION 7 — Contact ──────────────────────────────────── */
.contact {
  background-color: #633EBB;
  background-image: url('https://clicksoft.com.br/wp-content/uploads/2026/03/Contact-sections-1.webp');
  background-size: cover;
  background-position: center center;
  padding: 0 0 90px;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left { padding-top: 80px; }
.contact-title { font-size: 30px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 6px; }
.contact-sub { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.contact-form-wrap { padding-top: 16px; }
.contact-form-wrap .form-group label { color: #fff; }

/* ── SECTION 8 — Footer ───────────────────────────────────── */
.footer { background: #F9FAFB; padding: 20px 0; }
.footer .container { display: flex; align-items: center; justify-content: space-between; }
.footer-left p { font-size: 13px; color: #98A2B3; line-height: 1.7; }
.footer-copy { font-size: 13px; color: #98A2B3; margin-top: 8px; }
.footer-socials { display: flex; align-items: center; gap: 10px; }
.footer-socials a {
  color: #98A2B3;
  font-size: 20px;
  padding: 4px;
  transition: color .2s, transform .15s;
}
.footer-socials a:hover { color: #633EBB; transform: scale(1.1); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-title { font-size: 34px; }
  .proof-text { padding: 100px 40px 48px 32px; }
  .media-body { padding: 28px 28px 32px; }
  .contact { background-image: none; }
}
@media (max-width: 768px) {
  .hero { padding-bottom: 36px; }
  .hero-body .container--wide { grid-template-columns: 1fr; gap: 24px; }
  .hero-left { padding-top: 40px; }
  .hero-title { font-size: 28px; text-align: center; letter-spacing: 0; }
  .hero-desc { display: none; }
  .hero-list { display: none; }
  .hero-logo img { max-width: 130px; height: 30px; }
  .form-card { padding: 20px; margin-top: 0; }

  .clients { padding: 36px 0 36px; }
  .clients-inner { padding: 28px 20px 24px; border-radius: 12px; }
  .clients-title { text-align: center; font-size: 15px; }
  .marquee-track img { height: 40px; }

  .process { padding: 44px 10px 36px; }
  .process-subtitle { padding: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .proof .container { grid-template-columns: 1fr; padding-top: 0; }
  .proof-img img { margin-bottom: 0; }
  .proof-text { padding: 32px 20px 48px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .proof-text h2 { font-size: 20px; }

  .faq { padding: 44px 10px 36px; }

  .media { padding: 40px 0 48px; }
  .media-inner { grid-template-columns: 1fr; }
  .media-img { min-height: 240px; }
  .media-body { padding: 24px 20px 28px; gap: 20px; }
  .media-headline { font-size: 18px; }
  .store-badges { flex-direction: column; }
  .store-badge { min-width: unset; }

  .contact .container { grid-template-columns: 1fr; gap: 0; }
  .contact-left { padding-top: 44px; }
  .contact-form-wrap { padding: 12px 20px 44px; }
  .contact-title { font-size: 24px; }

  .footer .container { flex-direction: column; gap: 12px; text-align: center; }
  .footer-left p { text-align: center; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
}
