@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ========== CSS RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(216, 50%, 6%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(216, 50%, 9%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(110, 100%, 55%);
  --primary-foreground: hsl(216, 50%, 6%);
  --secondary: hsl(216, 40%, 14%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(216, 30%, 18%);
  --muted-foreground: hsl(210, 15%, 60%);
  --border: hsl(216, 30%, 18%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --radius: 0.75rem;
  --neon-glow: 0 0 20px hsla(110, 100%, 55%, 0.4), 0 0 60px hsla(110, 100%, 55%, 0.15);
  --neon-glow-strong: 0 0 20px hsla(110, 100%, 55%, 0.6), 0 0 80px hsla(110, 100%, 55%, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  color: var(--foreground);
}

/* ========== UTILITY CLASSES ========== */
.text-glow {
  text-shadow: 0 0 20px hsla(110, 100%, 55%, 0.5), 0 0 40px hsla(110, 100%, 55%, 0.2);
}

.box-glow {
  box-shadow: var(--neon-glow);
}

.box-glow-strong {
  box-shadow: var(--neon-glow-strong);
}

.gradient-navy {
  background: linear-gradient(180deg, hsl(216, 50%, 6%) 0%, hsl(216, 50%, 10%) 100%);
}

.gradient-card {
  background: linear-gradient(135deg, hsl(216, 50%, 10%) 0%, hsl(216, 50%, 14%) 100%);
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-destructive { color: var(--destructive); }

/* ========== ANIMATIONS ========== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsla(110, 100%, 55%, 0.4), 0 0 60px hsla(110, 100%, 55%, 0.15);
  }
  50% {
    box-shadow: 0 0 30px hsla(110, 100%, 55%, 0.6), 0 0 80px hsla(110, 100%, 55%, 0.3);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-12px) translateX(-50%); }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.reveal-hidden {
  opacity: 0;
}

.reveal-visible {
  animation: fade-in 0.6s ease-out forwards;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__glow-orb {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsla(110, 100%, 55%, 0.05);
  filter: blur(120px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  height: 100px;
  width: auto;
  max-width: none;
  display: block;
  margin: 0 auto 1.5rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
  background: hsla(110, 100%, 55%, 0.08);
  border: 1px solid hsla(110, 100%, 55%, 0.25);
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.hero__offer-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero__price-label {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.hero__price-old {
  text-decoration: line-through;
  color: var(--muted-foreground);
  opacity: 0.6;
  font-weight: 400;
}

.hero__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.hero__offer-note {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  opacity: 0.8;
  margin-bottom: 1.75rem;
}

.hero__note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator .scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(210, 15%, 60%, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.hero__scroll-indicator .scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 9999px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: var(--primary-foreground);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: hsla(110, 100%, 55%, 0.9);
  transform: scale(1.05);
}

.btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ========== VALUE PROPS SECTION ========== */
.value-props {
  padding: 6rem 1rem;
}

.value-props__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.value-props__grid {
  display: grid;
  gap: 2rem;
}

.value-card {
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.value-card:hover {
  border-color: hsla(110, 100%, 55%, 0.4);
  box-shadow: var(--neon-glow);
}

.value-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(110, 100%, 55%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.value-card:hover .value-card__icon-wrap {
  background: hsla(110, 100%, 55%, 0.2);
}

.value-card__icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.value-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card__text {
  color: var(--muted-foreground);
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
  padding: 6rem 1rem;
  position: relative;
}

.how-it-works__bg {
  position: absolute;
  inset: 0;
  background: hsla(216, 40%, 14%, 0.3);
}

.how-it-works__inner {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

.steps-line {
  display: none;
}

.step-card {
  text-align: center;
}

.step-card__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(110, 100%, 55%, 0.1);
  border: 2px solid hsla(110, 100%, 55%, 0.3);
  margin-bottom: 1.5rem;
}

.step-card__icon-wrap svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.step-card__number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card__text {
  color: var(--muted-foreground);
}

/* ========== INCLUDED SECTION ========== */
.included {
  padding: 6rem 1rem;
}

.included__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.included__grid {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.included-item__check {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsla(110, 100%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.included-item__check svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.included-item__text {
  font-weight: 500;
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof {
  padding: 6rem 1rem;
  position: relative;
}

.social-proof__bg {
  position: absolute;
  inset: 0;
  background: hsla(216, 40%, 14%, 0.3);
}

.social-proof__inner {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-item__label {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-card__stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  fill: var(--primary);
}

.testimonial-card__text {
  color: hsla(0, 0%, 98%, 0.9);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__name {
  font-weight: 600;
}

.testimonial-card__role {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========== PRICE COMPARISON SECTION ========== */
.price-comparison {
  padding: 6rem 1rem;
}

.price-comparison__inner {
  max-width: 56rem;
  margin: 0 auto;
}

.comparison-table-wrap {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 1rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table .row-alt {
  background: hsla(216, 40%, 14%, 0.2);
}

.comparison-table .row-highlight {
  background: hsla(110, 100%, 55%, 0.05);
  border: 2px solid hsla(110, 100%, 55%, 0.3);
}

.comparison-table .row-highlight td {
  font-weight: 700;
  color: var(--primary);
}

.comparison-table .td-muted {
  color: var(--muted-foreground);
}

.comparison-table .td-center {
  text-align: center;
}

.comparison-table .td-center svg {
  margin: 0 auto;
}

.price-old-inline {
  text-decoration: line-through;
  opacity: 0.45;
  font-weight: 400;
  font-size: 0.8em;
  margin-right: 0.25rem;
}

/* ========== SERVICES PRICING SECTION ========== */
.services-pricing {
  padding: 6rem 1rem;
  position: relative;
}

.services-pricing__bg {
  position: absolute;
  inset: 0;
  background: hsla(216, 40%, 14%, 0.3);
}

.services-pricing__inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.services-table-wrap {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.services-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.services-table th {
  padding: 1rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.services-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.services-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.services-table tbody tr:last-child {
  border-bottom: none;
}

.services-table .row-alt {
  background: hsla(216, 40%, 14%, 0.2);
}

.services-table .row-highlight {
  background: hsla(110, 100%, 55%, 0.05);
  border: 2px solid hsla(110, 100%, 55%, 0.3);
}

.services-table .row-highlight td {
  font-weight: 700;
  color: var(--primary);
}

.services-table .td-center {
  text-align: center;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.service-name svg {
  color: var(--primary);
  flex-shrink: 0;
}

.row-highlight .service-name {
  color: var(--primary);
}

.td-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--foreground);
}

.td-price--highlight {
  color: var(--primary);
  font-size: 1.05rem;
}

.td-highlight {
  color: var(--primary);
  font-weight: 700;
}

.service-detail {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: hsla(216, 40%, 14%, 0.5);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.service-detail--highlight {
  background: hsla(110, 100%, 55%, 0.1);
  color: var(--primary);
  border-color: hsla(110, 100%, 55%, 0.3);
  box-shadow: var(--neon-glow);
}

.services-pricing__note {
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: hsla(110, 100%, 55%, 0.05);
  filter: blur(150px);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.final-cta__text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.final-cta__note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__brand svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.footer__brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer__copy {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__price {
    font-size: 3.75rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

  .final-cta__title {
    font-size: 2.25rem;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-table th,
  .comparison-table td,
  .services-table th,
  .services-table td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }

  .value-props__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-line {
    display: block;
    position: absolute;
    top: 4rem;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(to right, hsla(110, 100%, 55%, 0), hsla(110, 100%, 55%, 0.5), hsla(110, 100%, 55%, 0));
  }

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

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

  .final-cta__title {
    font-size: 3rem;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px hsla(110, 100%, 55%, 0.08);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.cookie-overlay.active .cookie-banner {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn--solid {
  background: var(--primary);
  color: var(--primary-foreground);
}

.cookie-btn--solid:hover {
  background: hsl(110, 100%, 45%);
  box-shadow: var(--neon-glow);
}

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

.cookie-btn--outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--neon-glow);
}

.cookie-btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  margin-top: 1rem;
  width: 100%;
}

/* Painel de preferências */
.cookie-prefs {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  animation: fadeSlideDown 0.3s ease;
}

.cookie-prefs__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--primary);
  cursor: pointer;
}

.cookie-prefs__item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.cookie-prefs__item small {
  color: var(--muted-foreground);
  font-size: 0.78rem;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .cookie-banner {
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
  }

  .cookie-banner__text {
    font-size: 0.95rem;
  }

  .cookie-banner__actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 0.7rem 1rem;
  }
}
