@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  --lotofacil-purple: #A020F0;
  --lotofacil-purple-dark: #7B1FA2;
  --lotofacil-cyan: #00FFFF;
  --lotofacil-bg: #0B0B10;
  --lotofacil-bg-secondary: #14141E;
  --lotofacil-text: #F5F5FF;
  --lotofacil-text-secondary: #B8B8CC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--lotofacil-bg);
  color: var(--lotofacil-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Grain overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 0 7vw;
}

.nav.scrolled {
  background: rgba(11, 11, 16, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--lotofacil-purple);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(12deg);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.logo-text span {
  color: var(--lotofacil-purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--lotofacil-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.875rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-outline {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--lotofacil-purple);
  color: var(--lotofacil-purple);
}

.btn-primary {
  background: var(--lotofacil-purple);
  color: white;
}

.btn-primary:hover {
  background: var(--lotofacil-purple-dark);
  box-shadow: 0 0 30px rgba(160, 32, 240, 0.5);
}

.btn-full {
  width: 100%;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.mobile-menu-link:hover {
  color: var(--lotofacil-purple);
}

/* Sections */
.section-pinned {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.section-flowing {
  position: relative;
  padding: 5rem 7vw;
}

/* Background images */
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%);
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 11, 16, 0.9), rgba(11, 11, 16, 0.4), transparent);
}

/* Content */
.section-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw;
}

.micro-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lotofacil-text-secondary);
  margin-bottom: 1rem;
}

.headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: white;
  font-size: clamp(34px, 4.2vw, 64px);
}

.headline span {
  color: var(--lotofacil-purple);
}

.body-text {
  margin-top: 1.5rem;
  color: var(--lotofacil-text-secondary);
  max-width: 500px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.trust-badges {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--lotofacil-purple);
}

/* Feature bullets */
.feature-bullets {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.bullet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-icon svg {
  width: 20px;
  height: 20px;
  color: var(--lotofacil-purple);
}

/* Phone mockup */
.phone-mockup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(34vw, 420px);
  z-index: 20;
}

.phone-frame {
  position: relative;
  background: var(--lotofacil-bg-secondary);
  border-radius: 40px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.phone-screen {
  background: var(--lotofacil-bg);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

.phone-content {
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.phone-logo {
  color: var(--lotofacil-purple);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.phone-stat {
  background: rgba(160, 32, 240, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
}

.phone-stat-label {
  font-size: 0.625rem;
  color: var(--lotofacil-text-secondary);
}

.phone-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.phone-stat-value.purple {
  color: var(--lotofacil-purple);
}

.phone-grid {
  flex: 1;
  background: var(--lotofacil-bg-secondary);
  border-radius: 12px;
  padding: 0.75rem;
}

.phone-grid-label {
  font-size: 0.625rem;
  color: var(--lotofacil-text-secondary);
  margin-bottom: 0.5rem;
}

.phone-numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.phone-number {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: white;
}

.phone-btn {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--lotofacil-purple);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-glow {
  position: absolute;
  inset: -16px;
  background: rgba(160, 32, 240, 0.2);
  border-radius: 60px;
  filter: blur(30px);
  z-index: -1;
}

/* Mini list */
.mini-list {
  position: absolute;
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-icon svg {
  width: 20px;
  height: 20px;
  color: var(--lotofacil-purple);
}

.mini-text {
  color: white;
  font-size: 0.875rem;
}

/* Avatar stack */
.avatar-stack {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lotofacil-purple), var(--lotofacil-purple-dark));
  border: 2px solid var(--lotofacil-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar svg {
  width: 20px;
  height: 20px;
  color: white;
}

.avatar-text p {
  color: white;
  font-weight: 600;
}

.avatar-text span {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

/* Stat card */
.stat-card {
  position: absolute;
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 1.5rem;
  width: 256px;
  z-index: 10;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--lotofacil-purple);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--lotofacil-text-secondary);
}

.stat-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--lotofacil-purple);
  font-size: 0.875rem;
}

/* Badge */
.badge {
  position: absolute;
  right: 10vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.badge-inner {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px solid rgba(160, 32, 240, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(10px);
}

.badge-glow {
  position: absolute;
  inset: -16px;
  background: rgba(160, 32, 240, 0.1);
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}

.badge-content {
  text-align: center;
}

.badge-content svg {
  width: 32px;
  height: 32px;
  color: var(--lotofacil-purple);
  margin: 0 auto 0.25rem;
}

.badge-content p {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .card {
    flex-direction: row;
    min-height: min(44vh, 520px);
  }
}

.card-image {
  position: relative;
  height: 200px;
}

@media (min-width: 1024px) {
  .card-image {
    width: 50%;
    height: auto;
  }
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(20, 20, 30, 0.8));
  display: none;
}

@media (min-width: 1024px) {
  .card-image::after {
    display: block;
  }
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .card-content {
    width: 50%;
    padding: 2rem;
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--lotofacil-purple);
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-purple);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
}

.card-link svg {
  width: 16px;
  height: 16px;
}

.card-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-purple);
  font-size: 0.875rem;
}

.card-check svg {
  width: 16px;
  height: 16px;
}

/* Pricing */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
}

.scarcity-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.scarcity-text {
  font-size: 0.875rem;
  color: #f87171;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.5rem;
}

.pricing-card.highlighted {
  border-top: 3px solid var(--lotofacil-purple);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lotofacil-purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-header-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon.highlighted {
  background: rgba(160, 32, 240, 0.2);
}

.pricing-icon:not(.highlighted) {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-icon svg {
  width: 24px;
  height: 24px;
}

.pricing-icon.highlighted svg {
  color: var(--lotofacil-purple);
}

.pricing-icon:not(.highlighted) svg {
  color: white;
}

.pricing-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.pricing-desc {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.pricing-price {
  margin: 1.5rem 0;
}

.pricing-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
}

.pricing-period {
  color: var(--lotofacil-text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--lotofacil-purple);
  flex-shrink: 0;
}

.pricing-footer {
  margin-top: 2rem;
  text-align: center;
}

.pricing-footer p {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-footer svg {
  width: 16px;
  height: 16px;
  color: var(--lotofacil-purple);
}

/* FAQ */
.faq-section {
  margin-top: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--lotofacil-bg-secondary);
  border-radius: 12px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-trigger:hover {
  color: var(--lotofacil-purple);
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 0 1.5rem 1rem;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  margin-top: 5rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 1.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: var(--lotofacil-purple);
  font-weight: 600;
}

.testimonial-name {
  color: white;
  font-weight: 600;
}

.testimonial-location {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.testimonial-text {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--lotofacil-purple);
}

/* Footer */
.footer {
  background: var(--lotofacil-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 7vw;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.footer-brand p {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  margin: 1rem 0;
  max-width: 300px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.footer-badge svg {
  width: 16px;
  height: 16px;
  color: var(--lotofacil-purple);
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--lotofacil-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-company-info {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.footer-company-info p {
  margin-bottom: 0.5rem;
}

.footer-company-highlight {
  color: var(--lotofacil-purple);
  font-weight: 500;
  margin-top: 0.75rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--lotofacil-text-secondary);
  font-size: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-bottom p + p {
  margin-top: 1rem;
}

/* Page header (for legal pages) */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 7vw;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: white;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

/* Content page */
.content-page {
  min-height: 100vh;
  background: var(--lotofacil-bg);
  position: relative;
}

.content-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(160, 32, 240, 0.15) 0%, transparent 50%);
}

.content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 7vw 5rem;
}

.content-header {
  text-align: center;
  margin-bottom: 3rem;
}

.content-card {
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 2rem;
}

@media (min-width: 768px) {
  .content-card {
    padding: 3rem;
  }
}

.content-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
}

.content-title span {
  color: var(--lotofacil-purple);
}

.content-section {
  margin-bottom: 2rem;
}

.content-section h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.content-section h2 svg {
  width: 24px;
  height: 24px;
  color: var(--lotofacil-purple);
}

.content-section p {
  color: var(--lotofacil-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
  margin-left: 1.5rem;
  color: var(--lotofacil-text-secondary);
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-section strong {
  color: white;
}

.content-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(160, 32, 240, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.content-info svg {
  width: 20px;
  height: 20px;
  color: var(--lotofacil-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.content-info p {
  color: white;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.content-info a {
  color: var(--lotofacil-purple);
  text-decoration: none;
}

.content-info a:hover {
  text-decoration: underline;
}

.content-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-footer p {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(160, 32, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--lotofacil-purple);
}

.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--lotofacil-purple);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.form-label {
  display: block;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--lotofacil-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: white;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(184, 184, 204, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--lotofacil-purple);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

/* Login page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--lotofacil-bg);
  position: relative;
}

.login-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(160, 32, 240, 0.15) 0%, transparent 50%);
}

.login-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
}

.login-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-text-secondary);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.login-back:hover {
  color: white;
}

.login-back svg {
  width: 16px;
  height: 16px;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-card {
  background: var(--lotofacil-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 2rem;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lotofacil-text-secondary);
}

.input-icon svg {
  width: 20px;
  height: 20px;
}

.input-with-icon {
  padding-left: 3rem;
}

.input-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--lotofacil-text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.input-toggle:hover {
  color: white;
}

.input-toggle svg {
  width: 20px;
  height: 20px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lotofacil-text-secondary);
  cursor: pointer;
}

.form-checkbox input {
  accent-color: var(--lotofacil-purple);
}

.form-link {
  color: var(--lotofacil-purple);
  text-decoration: none;
}

.form-link:hover {
  text-decoration: underline;
}

.login-footer {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.login-footer a {
  color: var(--lotofacil-purple);
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.login-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--lotofacil-text-secondary);
  font-size: 0.875rem;
}

.login-trust svg {
  width: 16px;
  height: 16px;
  color: var(--lotofacil-purple);
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--lotofacil-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--lotofacil-purple);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lotofacil-purple-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .phone-mockup,
  .mini-list,
  .stat-card,
  .badge {
    display: none;
  }

  .section-flowing {
    padding: 3rem 7vw;
  }
}

@media (max-width: 640px) {
  .nav-content {
    height: 64px;
  }

  .headline {
    font-size: clamp(28px, 8vw, 44px);
  }

  .section-flowing {
    padding: 2rem 5vw;
  }

  .footer {
    padding: 2rem 5vw;
  }
}
