/*
 * CSS exclusivo da landing page pública (index.php), isolado do resto do
 * sistema de propósito: nada aqui reaproveita nem sobrescreve classes de
 * assets/css/style.css, então nenhuma outra página (admin, portal, faturas,
 * termos, etc.) é afetada. Paleta e comportamento seguem o site de produção
 * (iscast.com.br): azul #0061ff, títulos em navy escuro, cards claros.
 */
.rh-landing {
  --lp-blue: #0061ff;
  --lp-blue-dark: #0044c9;
  --lp-navy: #0b1a33;
  --lp-title: #10161d;
  --lp-text: #55606e;
  --lp-bg-soft: #f4f7fd;
  --lp-bg-soft2: #e5efff;
  --lp-border: #e4e9f2;
  --lp-white: #fff;
}
[data-theme="dark"] .rh-landing {
  --lp-title: #eef2f8;
  --lp-text: #aab3c3;
  --lp-bg-soft: #10161f;
  --lp-bg-soft2: #101a2e;
  --lp-border: #232c3d;
  --lp-white: #151b26;
}

.rh-landing { overflow-x: hidden; }
.rh-landing section { position: relative; }
.rh-landing .container { max-width: 1200px; }

/* ---------- eyebrow / heading ---------- */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 111px;
  background: rgba(0, 97, 255, 0.1);
  color: var(--lp-blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.lp-eyebrow img { width: 16px; height: 16px; }
.lp-heading h2 {
  color: var(--lp-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem);
  margin-bottom: 12px;
}
.lp-heading p { color: var(--lp-text); font-size: 1.05rem; max-width: 560px; }
.lp-heading.text-center p { margin-left: auto; margin-right: auto; }

/* ---------- botões ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 8px;
  background: var(--lp-blue);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 25px -10px rgba(0, 97, 255, .55);
}
.lp-btn:hover { background: var(--lp-blue-dark); color: #fff; transform: translateY(-3px); }
.lp-btn i, .lp-btn .bi { transition: transform .25s ease; }
.lp-btn:hover i, .lp-btn:hover .bi { transform: translateX(3px); }
.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 27px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-weight: 600;
  transition: all .25s ease;
}
.lp-btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-3px); }
.lp-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--lp-blue);
  font-weight: 700;
  transition: all .25s ease;
}
.lp-btn-light:hover { color: var(--lp-blue-dark); transform: translateY(-3px); }

/* ---------- navbar ---------- */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  padding: 18px 0;
  background: transparent;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.lp-nav.lp-nav-scrolled { background: var(--lp-navy); padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.lp-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-nav-logo img { height: 34px; width: auto; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.lp-nav-links a { color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem; }
.lp-nav-links a:hover { color: #fff; }
.lp-nav-actions { display: flex; align-items: center; gap: 12px; }
.lp-nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 8px; border: 1px solid rgba(255,255,255,.3);
  background: transparent; color: #fff; align-items: center; justify-content: center; font-size: 1.15rem;
}
@media (max-width: 991px) {
  .lp-nav { background: var(--lp-navy); padding: 14px 0; }
  .lp-nav-links { display: none; }
  .lp-nav-toggle { display: inline-flex; }
}

/* ---------- offcanvas mobile ---------- */
.lp-offcanvas-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.lp-offcanvas-overlay.is-open { opacity: 1; visibility: visible; }
.lp-offcanvas {
  position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100%;
  background: var(--lp-navy); z-index: 1060; padding: 28px 22px; transition: right .35s ease;
  overflow-y: auto;
}
.lp-offcanvas.is-open { right: 0; }
.lp-offcanvas-close { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; width: 36px; height: 36px; border-radius: 8px; }
.lp-offcanvas nav { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.lp-offcanvas nav a { color: rgba(255,255,255,.85); padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 500; }
.lp-offcanvas-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.lp-offcanvas-contact a { color: rgba(255,255,255,.8); font-size: .9rem; }
.lp-offcanvas-social { display: flex; gap: 10px; margin-top: 18px; }
.lp-offcanvas-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; color: #fff;
}

/* ---------- hero ---------- */
.lp-hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background-color: var(--lp-navy);
  background-size: cover; background-position: center bottom; background-repeat: no-repeat;
  padding: 150px 0 60px;
  color: #fff;
}
.lp-hero h1 {
  font-weight: 700;
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.lp-hero h1 .lp-price { color: var(--lp-blue); }
.lp-hero p.lead { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 520px; }
.lp-hero-image { position: relative; text-align: center; }
.lp-hero-image img { max-width: 100%; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }
@keyframes lp-fade-up-word { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.lp-split-word { display: inline-block; opacity: 0; animation: lp-fade-up-word .5s ease both; }

/* ---------- requisitos ---------- */
.lp-requisitos { padding: 46px 0; background: var(--lp-bg-soft); }
.lp-requisitos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; text-align: center; }
.lp-requisitos-item { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 130px; }
.lp-requisitos-item i, .lp-requisitos-item .bi { font-size: 1.5rem; color: var(--lp-blue); background: rgba(0,97,255,.1); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lp-requisitos-item span { color: var(--lp-title); font-weight: 600; font-size: .92rem; }
.lp-requisitos-sep { font-size: 1.6rem; font-weight: 700; color: var(--lp-blue); }

/* ---------- entrada suave ao carregar (100% CSS, sem depender de scroll/JS
   — conteúdo de vendas nunca deve ficar invisível esperando um observer) ---------- */
@keyframes lp-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.lp-reveal { animation: lp-fade-up .7s cubic-bezier(.2,.8,.2,1) both; }
.lp-reveal-delay-1 { animation-delay: .08s; }
.lp-reveal-delay-2 { animation-delay: .16s; }
.lp-reveal-delay-3 { animation-delay: .24s; }
.lp-reveal-delay-4 { animation-delay: .32s; }
.lp-reveal-delay-5 { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .lp-reveal, .lp-split-word { animation: none !important; opacity: 1 !important; transform: none !important; } }

/* ---------- about/radio ---------- */
.lp-about { padding: 90px 0; }
.lp-about-image img { max-width: 100%; border-radius: 16px; }
.lp-about-list { list-style: none; margin: 24px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.lp-about-list li { display: flex; align-items: center; gap: 10px; color: var(--lp-title); font-weight: 500; }
.lp-about-list .lp-check { width: 22px; height: 22px; border-radius: 50%; background: var(--lp-blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; }
@media (max-width: 575px) { .lp-about-list { grid-template-columns: 1fr; } }

/* ---------- funções ---------- */
.lp-funcoes { padding: 90px 0; background: var(--lp-bg-soft); }
.lp-funcoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 991px) { .lp-funcoes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .lp-funcoes-grid { grid-template-columns: 1fr; } }
.lp-funcao-card { background: var(--lp-white); border: 1px solid var(--lp-border); border-radius: 14px; padding: 32px 26px; transition: transform .3s ease, box-shadow .3s ease; }
.lp-funcao-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px -18px rgba(0,97,255,.35); }
.lp-funcao-icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(0,97,255,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.lp-funcao-icon img { width: 30px; height: 30px; }
.lp-funcao-card h5 { color: var(--lp-title); font-weight: 700; margin-bottom: 8px; }
.lp-funcao-card p { color: var(--lp-text); font-size: .93rem; margin: 0; }
.lp-funcao-card a { color: var(--lp-blue); font-weight: 600; font-size: .85rem; }

/* ---------- aplicativo ---------- */
.lp-app { padding: 90px 0; }
.lp-app-image { text-align: center; }
.lp-app-image img { max-width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.15)); }

/* ---------- preços ---------- */
.lp-precos { padding: 90px 0; background: var(--lp-bg-soft); }
.lp-plan-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 0; align-items: stretch;
  background: var(--lp-white); border-radius: 14px; box-shadow: 0 12px 34px -20px rgba(15,23,42,.25);
  margin-bottom: 26px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.lp-plan-row:hover { transform: translateY(-6px); }
.lp-plan-row.featured { outline: 2px solid var(--lp-blue); }
.lp-plan-row-price {
  padding: 34px 30px; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, rgba(0,97,255,.08), rgba(0,97,255,.02));
}
.lp-plan-badge { display: inline-block; background: var(--lp-blue); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 5px; margin-bottom: 10px; width: fit-content; }
.lp-plan-row-price h5 { color: var(--lp-text); text-transform: uppercase; font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.lp-plan-row-price h2 { color: var(--lp-title); font-weight: 700; font-size: 2.1rem; margin: 0; }
.lp-plan-row-price h2 span { font-size: .95rem; font-weight: 500; color: var(--lp-text); }
.lp-plan-row-price p { color: var(--lp-text); font-size: .88rem; margin: 10px 0 0; }
.lp-plan-row-list { padding: 28px 30px; background: var(--lp-bg-soft2); display: flex; flex-direction: column; gap: 18px; }
.lp-plan-row-list ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 24px; }
.lp-plan-row-list li { display: flex; align-items: center; gap: 8px; color: var(--lp-title); font-weight: 500; font-size: .92rem; padding: 6px 0; break-inside: avoid; }
.lp-plan-row-list li i, .lp-plan-row-list li .bi { width: 20px; height: 20px; border-radius: 50%; background: var(--lp-blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .62rem; flex-shrink: 0; }
.lp-plan-row-list .lp-plan-btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 767px) {
  .lp-plan-row { grid-template-columns: 1fr; }
  .lp-plan-row-list ul { columns: 1; }
}

/* ---------- clientes / depoimentos ---------- */
.lp-clientes { padding: 90px 0; }
.lp-clientes-photo img { max-width: 100%; border-radius: 18px; }
.lp-tes-track { display: flex; overflow: hidden; scroll-behavior: smooth; gap: 24px; }
.lp-tes-slide { flex: 0 0 100%; }
.lp-tes-box { background: var(--lp-white); border: 1px solid var(--lp-border); border-radius: 16px; padding: 30px; }
.lp-tes-stars { color: #ffb020; font-size: .95rem; margin-bottom: 14px; }
.lp-tes-box p.quote { color: var(--lp-title); font-size: 1.02rem; margin-bottom: 20px; }
.lp-tes-person { display: flex; align-items: center; gap: 12px; }
.lp-tes-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.lp-tes-person strong { display: block; color: var(--lp-title); }
.lp-tes-person span { color: var(--lp-text); font-size: .82rem; }
.lp-tes-arrows { display: flex; gap: 10px; margin-top: 22px; }
.lp-tes-arrows button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--lp-border); background: var(--lp-white); color: var(--lp-blue); }
.lp-tes-arrows button:hover { background: var(--lp-blue); color: #fff; }

/* ---------- faq ---------- */
.lp-faq { padding: 90px 0; background: var(--lp-bg-soft); }
.lp-faq-image img { max-width: 100%; }
.lp-faq .accordion-item { border: 1px solid var(--lp-border); border-radius: 10px !important; margin-bottom: 12px; overflow: hidden; background: var(--lp-white); }
.lp-faq .accordion-button { font-weight: 600; color: var(--lp-title); background: var(--lp-white); }
.lp-faq .accordion-button:not(.collapsed) { color: var(--lp-blue); background: rgba(0,97,255,.06); box-shadow: none; }
.lp-faq .accordion-button:focus { box-shadow: none; }
.lp-faq .accordion-body { color: var(--lp-text); }

/* ---------- cta suporte ---------- */
.lp-cta { padding: 80px 0; background: linear-gradient(120deg, var(--lp-navy), #061029); color: #fff; text-align: center; }
.lp-cta img { max-width: 260px; margin: 0 auto 24px; display: block; }
.lp-cta h2 { font-weight: 700; margin-bottom: 12px; }
.lp-cta p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 26px; }
.lp-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.lp-footer { background: var(--lp-navy); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.lp-footer h6 { color: #fff; font-weight: 700; margin-bottom: 18px; }
.lp-footer a { color: rgba(255,255,255,.68); }
.lp-footer a:hover { color: #fff; }
.lp-footer-logo img { height: 32px; margin-bottom: 16px; }
.lp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.lp-footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.lp-footer-social a:hover { background: var(--lp-blue); border-color: var(--lp-blue); }
.lp-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding: 22px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.lp-footer-pay { display: flex; align-items: center; gap: 14px; }
.lp-footer-pay img { height: 22px; opacity: .85; }
.lp-footer-newsletter { display: flex; gap: 8px; margin-top: 6px; }
.lp-footer-newsletter input { flex: 1; border-radius: 8px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; padding: 10px 14px; font-size: .9rem; }
.lp-footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.lp-footer-newsletter button { border-radius: 8px; border: none; background: var(--lp-blue); color: #fff; padding: 0 16px; }

@media (max-width: 767px) {
  .lp-hero { padding-top: 130px; text-align: center; }
  .lp-hero p.lead { margin-left: auto; margin-right: auto; }
  .lp-about, .lp-funcoes, .lp-app, .lp-precos, .lp-clientes, .lp-faq { padding: 60px 0; }
}
