/* ============================================
   LANDING PAGE — Free Diária
   ============================================ */

/* --- NAVBAR (Landing override) --- */

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.lp-nav--transparent {
  background: transparent;
}

.lp-nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lp-nav__brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp-nav--transparent .lp-nav__brand { color: var(--color-white); }
.lp-nav--solid .lp-nav__brand { color: var(--color-primary); }

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-nav__link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.938rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  text-decoration: none;
}

.lp-nav--transparent .lp-nav__link { color: rgba(255,255,255,0.85); }
.lp-nav--transparent .lp-nav__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lp-nav--solid .lp-nav__link { color: var(--color-gray-600); }
.lp-nav--solid .lp-nav__link:hover { color: var(--color-primary); background: var(--color-primary-50); }

.lp-nav__btn {
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.lp-nav--transparent .lp-nav__btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.lp-nav--transparent .lp-nav__btn:hover {
  background: #fff;
  color: var(--color-primary);
}

.lp-nav--solid .lp-nav__btn {
  background: var(--color-primary);
  color: #fff;
}
.lp-nav--solid .lp-nav__btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* --- HERO --- */

.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0B1120 0%, #0F172A 30%, #1E3A5F 60%, #1E40AF 100%);
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 20% 40%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(ellipse 500px 500px at 75% 70%, rgba(16, 185, 129, 0.15), transparent),
    radial-gradient(ellipse 300px 300px at 50% 20%, rgba(59, 130, 246, 0.1), transparent);
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 2rem;
}

.lp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.lp-hero__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: lpPulse 2s ease-in-out infinite;
}

@keyframes lpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.lp-hero__title {
  font-size: 4.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.lp-hero__title span {
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 400;
}

/* --- HERO DUAL CTA CARDS --- */

.lp-hero__cta {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.lp-hero__cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.063rem;
  transition: all 0.3s ease;
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.lp-hero__cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lp-hero__cta-card:hover {
  transform: translateY(-4px);
}

.lp-hero__cta-card--work {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
}

.lp-hero__cta-card--work:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
  color: #fff;
}

.lp-hero__cta-card--hire {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
}

.lp-hero__cta-card--hire:hover {
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
  color: #fff;
}

.lp-hero__cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__cta-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.lp-hero__cta-label {
  font-size: 0.813rem;
  font-weight: 400;
  opacity: 0.8;
}

/* --- HERO WAITLIST --- */

.lp-hero__waitlist {
  margin-top: 1.75rem;
  margin-bottom: 0.25rem;
}

.lp-hero__waitlist-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-radius: var(--radius-full, 9999px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp-hero__waitlist-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.lp-hero__waitlist-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary, #10b981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
}

/* --- HERO SCROLL HINT --- */

.lp-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: lpBounce 2s ease-in-out infinite;
  margin-top: 2rem;
}

.lp-hero__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes lpBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- STATS BAR --- */

.lp-stats {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 3.5rem 2rem;
}

.lp-stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.lp-stats__item-value {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-stats__item-label {
  font-size: 0.938rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* --- SECTION HEADERS --- */

.lp-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-50);
  color: var(--color-primary);
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.lp-section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.lp-section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- HOW IT WORKS --- */

.lp-how {
  padding: 6rem 2rem;
  background: var(--color-white);
}

.lp-how__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.lp-how__tab {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.938rem;
  font-weight: 600;
  border: 2px solid var(--color-gray-200);
  background: transparent;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lp-how__tab:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary);
}

.lp-how__tab--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.lp-how__tab--active:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.lp-how__panel {
  display: none;
}

.lp-how__panel--active {
  display: block;
}

.lp-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.lp-step {
  text-align: center;
  position: relative;
}

.lp-step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.lp-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.lp-step__text {
  font-size: 0.938rem;
  color: var(--color-gray-500);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* --- APP SECTION --- */

.lp-app {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0B1120 0%, #0F172A 50%, #1E3A5F 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.lp-app::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 400px at 80% 50%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(ellipse 300px 300px at 20% 80%, rgba(16, 185, 129, 0.12), transparent);
  pointer-events: none;
}

.lp-app__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-app__tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.lp-app__title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.lp-app__text {
  font-size: 1.063rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.lp-app__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-app__feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.lp-app__feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-app__feat-icon svg {
  width: 18px;
  height: 18px;
}

.lp-app__phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-app__mockup {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: linear-gradient(180deg, #1E40AF 0%, #2563EB 40%, #3B82F6 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 3px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
  position: relative;
}

.lp-app__mockup-notch {
  position: absolute;
  top: 12px;
  width: 100px;
  height: 28px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
}

.lp-app__mockup-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-top: 2rem;
}

.lp-app__mockup-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.lp-app__mockup-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.5rem;
}

.lp-app__mockup-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-app__mockup-card-dot {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.lp-app__mockup-card-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.lp-app__mockup-card-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.lp-app__mockup-card-line--short {
  width: 60%;
}

/* --- TRUST & SECURITY --- */

.lp-trust {
  padding: 6rem 2rem;
  background: var(--color-gray-50);
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-trust__card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-gray-200);
  transition: all 0.35s ease;
}

.lp-trust__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.lp-trust__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.lp-trust__icon svg {
  width: 26px;
  height: 26px;
}

.lp-trust__icon--blue { background: var(--color-primary-50); color: var(--color-primary); }
.lp-trust__icon--green { background: var(--color-secondary-50); color: var(--color-secondary); }
.lp-trust__icon--amber { background: var(--color-accent-50); color: var(--color-accent); }
.lp-trust__icon--purple { background: #F3E8FF; color: #7C3AED; }
.lp-trust__icon--rose { background: #FFE4E6; color: #E11D48; }
.lp-trust__icon--cyan { background: #ECFEFF; color: #0891B2; }

.lp-trust__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.5rem;
}

.lp-trust__text {
  font-size: 0.938rem;
  color: var(--color-gray-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- CTA SECTION --- */

.lp-cta {
  padding: 6rem 2rem;
  background: var(--color-gray-50);
  text-align: center;
}

.lp-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-gray-900);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.lp-cta__text {
  font-size: 1.125rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.lp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.938rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1.063rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lp-cta__btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.lp-cta__btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.lp-cta__btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.lp-cta__btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* --- FOOTER --- */

.lp-footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: 3rem 2rem;
}

.lp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
}

.lp-footer__links {
  display: flex;
  gap: 1.5rem;
}

.lp-footer__link {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-footer__link:hover {
  color: var(--color-white);
}

.lp-footer__copy {
  font-size: 0.875rem;
}

/* --- SCROLL REVEAL --- */

.lp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-reveal--delay-1 { transition-delay: 0.1s; }
.lp-reveal--delay-2 { transition-delay: 0.2s; }
.lp-reveal--delay-3 { transition-delay: 0.3s; }
.lp-reveal--delay-4 { transition-delay: 0.4s; }
.lp-reveal--delay-5 { transition-delay: 0.5s; }

/* Hero entrance animation */
.lp-hero__inner > * {
  opacity: 0;
  transform: translateY(24px);
  animation: lpFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lp-hero__inner > *:nth-child(1) { animation-delay: 0.2s; }
.lp-hero__inner > *:nth-child(2) { animation-delay: 0.4s; }
.lp-hero__inner > *:nth-child(3) { animation-delay: 0.6s; }
.lp-hero__inner > *:nth-child(4) { animation-delay: 0.8s; }
.lp-hero__inner > *:nth-child(5) { animation-delay: 1.0s; }
.lp-hero__inner > *:nth-child(6) { animation-delay: 1.2s; }
.lp-hero__inner > *:nth-child(7) { animation-delay: 1.4s; }

@keyframes lpFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
  .lp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .lp-hero__title {
    font-size: 2.75rem;
  }

  .lp-hero__subtitle {
    font-size: 1.063rem;
  }

  .lp-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .lp-hero__cta-card {
    width: 100%;
    max-width: 280px;
  }

  .lp-stats__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-section-title {
    font-size: 2rem;
  }

  .lp-trust__grid {
    grid-template-columns: 1fr;
  }

  .lp-how__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-how__tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp-app__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-app__features {
    align-items: center;
  }

  .lp-cta__title {
    font-size: 2rem;
  }

  .lp-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .lp-footer__inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .lp-footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp-nav__actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp-hero__title {
    font-size: 2.25rem;
  }

  .lp-stats__item-value {
    font-size: 2rem;
  }
}
