/* Estilos Exclusivos da Landing Page Move+ */

/* Header & Navbar */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-fast);
}

.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--color-purple);
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-plus {
  color: var(--color-pink);
  margin-left: 1px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.nav-link {
  color: var(--color-ink);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-purple);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-purple);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link-admin {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-light);
}

.nav-link-admin:hover {
  color: var(--color-purple);
  background: var(--color-purple-light);
}

.mobile-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-ink);
  padding: 6px;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #48207f 0%, #682eb0 52%, #8746ce 100%);
  color: var(--color-white);
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.hero::before {
  width: 480px;
  height: 480px;
  background: var(--color-pink);
  right: -120px;
  top: -120px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: var(--color-lime);
  left: -180px;
  bottom: -180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: #e9d9ff;
  margin-bottom: 20px;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1;
  letter-spacing: -3.5px;
  max-width: 680px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--color-lime);
}

.hero p {
  font-size: 18px;
  color: #efe7fa;
  max-width: 570px;
  margin: 24px 0 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 680px;
}

.hero-actions .btn {
  padding: 13px 20px;
  font-size: 14px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .hero-actions {
    flex-wrap: nowrap;
    gap: 12px;
  }
}

.btn-blue {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.38);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.48);
}

/* Ilustração Visual do Carro */
.visual {
  height: 470px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card {
  width: 430px;
  height: 320px;
  border-radius: 42px;
  background: linear-gradient(145deg, #ffffff, #eee8f5);
  box-shadow: var(--shadow-card);
  transform: rotate(-5deg);
  position: relative;
  overflow: hidden;
}

.car-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 130px;
  border-radius: 180px 180px 30px 30px;
  background: #25202d;
  left: 55px;
  top: 96px;
  transform: skewX(-8deg);
}

.car-card::after {
  content: "";
  position: absolute;
  width: 285px;
  height: 72px;
  border-radius: 80px 80px 10px 10px;
  background: linear-gradient(120deg, #8d82a0, #2e2938);
  left: 72px;
  top: 105px;
  opacity: 0.8;
}

.wheel {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #17131f;
  border: 13px solid #81788d;
  z-index: 3;
  bottom: 72px;
}

.wheel-front { left: 82px; }
.wheel-back { right: 82px; }

.visual-tag {
  position: absolute;
  right: 28px;
  top: 28px;
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  font-weight: 800;
  color: var(--color-purple);
  z-index: 4;
}

.float-card {
  position: absolute;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 700;
  z-index: 5;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.float-card strong {
  display: block;
  color: var(--color-purple);
  font-size: 22px;
  font-weight: 800;
}

.float-card-1 { left: 10px; top: 70px; }
.float-card-2 { right: 0; bottom: 55px; animation-delay: 2s; }

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Stats Bar */
.stats {
  padding: 30px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 10px;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  font-size: 30px;
  color: var(--color-purple);
  display: block;
  font-weight: 800;
  letter-spacing: -1px;
}

.stat-item span {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}

/* Seções Padrão */
.section {
  padding: 110px 0;
}

.section-alt {
  background-color: var(--color-light);
}

.section-head {
  max-width: 690px;
  margin-bottom: 54px;
}

.section-head.text-center {
  margin-inline: auto;
}

.kicker {
  color: var(--color-purple);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 12px;
}

.kicker-lime {
  color: var(--color-lime);
}

.section h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  font-weight: 800;
}

.section-head p {
  color: var(--color-muted);
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
}

/* Cards de Soluções */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  background-color: var(--color-white);
  min-height: 260px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #dcd4e8;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background-color: var(--color-purple-light);
  color: var(--color-purple);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 30px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Seção de Planos */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  background-color: var(--color-white);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.plan-card.is-featured {
  background-color: var(--color-purple);
  color: var(--color-white);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.plan-card.is-featured:hover {
  transform: translateY(-14px);
}

.plan-badge {
  position: absolute;
  right: 24px;
  top: 24px;
}

.plan-subtitle {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}

.plan-card.is-featured .plan-subtitle {
  color: #dfd1ef;
}

.plan-name {
  font-size: 26px;
  font-weight: 800;
  margin: 12px 0;
  letter-spacing: -0.8px;
}

.plan-price-wrapper {
  font-size: 40px;
  font-weight: 800;
  margin: 20px 0;
  letter-spacing: -1.5px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-currency {
  font-size: 20px;
  font-weight: 600;
}

.plan-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}

.plan-card.is-featured .plan-period {
  color: #dfd1ef;
}

.plan-features {
  list-style: none;
  margin: 20px 0 32px;
  flex-grow: 1;
}

.plan-feature-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card.is-featured .plan-feature-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.plan-btn {
  width: 100%;
}

/* Seção Como Funciona */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
}

.step-number {
  font-size: 60px;
  font-weight: 800;
  color: #e5dcf2;
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.step-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Bloco App Mockup */
.app-banner {
  background: linear-gradient(110deg, #2e1558, #6c30b1);
  color: var(--color-white);
  border-radius: 40px;
  padding: 70px 65px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.app-banner h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800;
}

.app-banner p {
  color: #e9ddf6;
  margin: 18px 0 30px;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
}

.phone-mockup {
  height: 400px;
  width: 248px;
  border: 10px solid #16121d;
  border-radius: 36px;
  background: linear-gradient(160deg, #f7f3fb, #d9c9e9);
  margin-inline: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  padding: 14px;
  color: var(--color-purple);
}

.phone-screen {
  height: 100%;
  border-radius: 24px;
  background-color: var(--color-white);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
}

.screen-header {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-ink);
}

.screen-balance {
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background-color: #f2eafa;
}

.screen-balance small {
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 600;
  display: block;
}

.screen-balance h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-purple);
  margin-top: 4px;
  white-space: nowrap;
}

.screen-progress-bar {
  height: 8px;
  background-color: #e5dced;
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}

.screen-progress-fill {
  display: block;
  width: 72%;
  height: 100%;
  background-color: var(--color-purple);
  border-radius: 10px;
}

.screen-transactions {
  margin-top: 16px;
}

.screen-transactions-title {
  font-size: 10px;
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.screen-tx-row {
  margin-top: 10px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-ink);
  white-space: nowrap;
  gap: 8px;
}

.screen-tx-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-weight: 600;
}

.screen-tx-row b {
  white-space: nowrap;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 11px;
}

/* Accordion FAQ */
.faq-container {
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  padding: 24px 0;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
  color: var(--color-ink);
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-purple);
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-purple);
  transition: transform var(--transition-fast);
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  display: none;
  color: var(--color-muted);
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.is-open .faq-body {
  display: block;
}

/* CTA Final */
.cta-section {
  padding: 110px 0;
  text-align: center;
  background-color: #faf8fc;
}

.cta-section h2 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -3px;
  font-weight: 800;
}

.cta-section p {
  color: var(--color-muted);
  margin: 16px auto 32px;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.6;
}

/* Rodapé */
.footer {
  background-color: #17121f;
  color: var(--color-white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.footer-desc {
  color: #aaa2b0;
  font-size: 14px;
  margin-top: 15px;
  max-width: 300px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #aaa2b0;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-copyright {
  border-top: 1px solid #332d39;
  margin-top: 50px;
  padding-top: 24px;
  color: #807884;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsividade */
@media (max-width: 992px) {
  .logo {
    font-size: 20px;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    visibility: hidden;
  }

  .nav-menu.is-active {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 30px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 0;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 42px);
    letter-spacing: -1.5px;
    line-height: 1.05;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin: 18px auto 28px;
    max-width: 94%;
    padding-inline: 20px;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .visual {
    height: 390px;
  }

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

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  .plan-card.is-featured {
    transform: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .app-banner {
    grid-template-columns: 1fr;
    padding: 45px 35px;
    text-align: center;
  }

  .app-banner p {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 19px;
    white-space: nowrap;
  }

  .nav-actions .btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .hero p {
    padding-inline: 16px;
    font-size: 14.5px;
    line-height: 1.55;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .visual {
    transform: scale(0.8);
    margin: -30px -40px;
  }

  .phone-mockup {
    display: none;
  }
}
