* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #ffffff;
  --foreground: #262626;
  --muted: #fbf4f7;
  --muted-text: #666666;
  --primary: #e1356b;
  --secondary: #9333ea;
  --accent: #e6a400;
  --border: #f0dfe6;
  --hero-gradient: linear-gradient(135deg, hsl(330 90% 28%) 0%, hsl(290 75% 25%) 100%);
  --cta-gradient: linear-gradient(135deg, hsl(290 70% 35%) 0%, hsl(330 90% 38%) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 64px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all .3s ease;
  cursor: pointer;
  border: 0;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-gradient {
  padding: .55rem 1.55rem;
  font-size: 14px;
  color: #fff;
  background: var(--cta-gradient);
}

.text-gradient {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: hsl(345, 80%, 56%);
  padding-top: 64px;
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .5rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  font-size: 14px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.hero h1 span {
  color: var(--accent);
}

.hero-cta {
  width: max-content;
  padding: .95rem 2rem;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16), 0 0 28px rgba(255, 255, 255, .20);
  animation: pulseGlow 2s ease-in-out infinite;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  animation: arrowMove 1.4s ease-in-out infinite;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2rem;
}

.hero-glow {
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  filter: blur(48px);
  transform: scale(.75);
  animation: glowScale 4s ease-in-out infinite;
}

.hero-image {
  position: relative;
  z-index: 2;
  max-height: 480px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .28));
}

.shape,
.dot,
.spark {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.shape-1 {
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, .10);
  filter: blur(24px);
  animation: floatOne 6s ease-in-out infinite;
}

.shape-2 {
  top: 25%;
  right: 80px;
  width: 128px;
  height: 128px;
  background: rgba(255, 255, 255, .08);
  filter: blur(32px);
  animation: floatTwo 8s ease-in-out infinite;
}

.shape-3 {
  bottom: 33%;
  left: 25%;
  width: 64px;
  height: 64px;
  background: rgba(230, 164, 0, .15);
  filter: blur(22px);
  animation: floatThree 5s ease-in-out infinite;
}

.shape-4 {
  top: 50%;
  right: 33%;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, .05);
  filter: blur(34px);
  animation: floatFour 7s ease-in-out infinite;
}

.dot-1 {
  top: 128px;
  left: 33%;
  width: 12px;
  height: 12px;
  background: rgba(230, 164, 0, .40);
  animation: dotFloat 3s ease-in-out infinite;
}

.dot-2 {
  top: 66%;
  right: 25%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .30);
  animation: dotFloat 4s 1s ease-in-out infinite;
}

.dot-3 {
  bottom: 25%;
  left: 64px;
  width: 16px;
  height: 16px;
  background: rgba(230, 164, 0, .25);
  animation: dotWiggle 5s .5s ease-in-out infinite;
}

.spark-1 {
  top: 160px;
  right: 42%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, .50);
  animation: sparkle 2s .3s ease-in-out infinite;
}

.spark-2 {
  bottom: 160px;
  right: 28%;
  width: 4px;
  height: 4px;
  background: rgba(230, 164, 0, .60);
  animation: sparkle 2.5s 1.2s ease-in-out infinite;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}



/* SECTIONS */

.stats-section,
.testimonials,
.final-cta {
  background: #fff;
  padding: 5rem 0;
}

.how-section {
  background: rgba(251, 244, 247, .50);
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head h2,
.final-cta h2 {
  font-size: clamp(2rem, 3.3vw, 2.5rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-head p,
.final-cta p {
  color: var(--muted-text);
  margin: 1rem auto 0;
  line-height: 1.7;
}

.pill {
  display: inline-block;
  padding: .25rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 53, 107, .30);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

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

.stat-card,
.step-card,
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(18, 18, 18, .05);
  transition: .3s ease;
}

.stat-card:hover,
.step-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(225, 53, 107, .12);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.stat-card p {
  color: var(--muted-text);
  font-size: 14px;
  margin-top: .25rem;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

.icon-primary {
  background: rgba(225, 53, 107, .10);
  color: var(--primary);
}

.icon-secondary {
  background: rgba(147, 51, 234, .10);
  color: var(--secondary);
}

.icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.icon-orange {
  background: #ffedd5;
  color: #f97316;
}

.step-card {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: -6px;
  left: -6px;
  color: rgba(225, 53, 107, .10);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  transition: .3s ease;
  user-select: none;
}

.step-card:hover .step-number {
  color: rgba(225, 53, 107, .20);
}

.step-content {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: rgba(225, 53, 107, .10);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: .5rem;
}

.step-card p,
.diff-card p,
.testimonial-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}



/* DIFFERENTIALS */

.differentials {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--hero-gradient);
}

.pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, hsla(338, 85%, 40%, .5) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, hsla(280, 70%, 35%, .45) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, hsla(338, 85%, 30%, .35) 0%, transparent 50%);
}

.diff-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.diff-title h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.human-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  background: rgba(38, 38, 38, .80);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.human-badge svg {
  width: 16px;
  height: 16px;
}

.diff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.diff-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
  transition: .3s ease;
}

.diff-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, .18);
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  color: var(--foreground);
  margin-bottom: 1rem;
  transition: .3s ease;
}

.diff-card:hover .diff-icon {
  color: var(--primary);
  background: rgba(225, 53, 107, .10);
}

.diff-icon svg {
  width: 24px;
  height: 24px;
}

.diff-card h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: .5rem;
}

.diff-card p {
  font-size: 12px;
}



/* TESTIMONIALS */

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(240, 223, 230, .50);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  color: rgba(225, 53, 107, .10);
  transition: .3s ease;
}

.testimonial-card:hover .quote-icon {
  color: rgba(225, 53, 107, .25);
  transform: rotate(12deg) scale(1.1);
}

.stars {
  color: var(--accent);
  letter-spacing: .08em;
  margin-bottom: 1rem;
  font-size: 15px;
}

.testimonial-card p {
  margin-bottom: 1.5rem;
}

.person {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 223, 230, .50);
}

.person span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: var(--hero-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.person strong,
.person small {
  display: block;
}

.person strong {
  font-size: 14px;
}

.person small {
  color: var(--muted-text);
  font-size: 12px;
}



/* FINAL CTA AND FOOTER */

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 460px;
  margin-bottom: 2rem;
}

.final-btn {
  padding: 1rem 2.5rem;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background: var(--cta-gradient);
  box-shadow: 0 20px 45px rgba(225, 53, 107, .22);
}

.footer {
  background: var(--foreground);
  padding: 2.5rem 0;
  text-align: center;
}

.footer .container {
  display: grid;
  gap: .75rem;
}

.footer p {
  color: rgba(255, 255, 255, .50);
  font-size: 12px;
  line-height: 1.65;
}

.footer .company {
  color: rgba(255, 255, 255, .80);
  font-weight: 700;
  font-size: 14px;
}

.footer .copy {
  color: rgba(255, 255, 255, .40);
  padding-top: .5rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .20);
  transition: .3s ease;
  animation: popIn .55s 1s ease both;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 24px 40px rgba(0, 0, 0, .26);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}



/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(225, 53, 107, .30), 0 18px 45px rgba(0,0,0,.16); }
  50% { box-shadow: 0 0 40px rgba(225, 53, 107, .60), 0 18px 45px rgba(0,0,0,.16); }
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@keyframes glowScale {
  0%, 100% { transform: scale(.75); opacity: .55; }
  50% { transform: scale(.86); opacity: 1; }
}

@keyframes floatOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -30px) scale(1.2); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(.8); }
}

@keyframes floatThree {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.3); }
}

@keyframes floatFour {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 25px); }
}

@keyframes dotFloat {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(-18px); opacity: 1; }
}

@keyframes dotWiggle {
  0%, 100% { transform: translate(0, 0); opacity: .3; }
  50% { transform: translate(8px, -12px); opacity: .7; }
}

@keyframes sparkle {
  0%, 100% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}



/* RESPONSIVE */

@media (max-width: 1024px) {
  .stats-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-image {
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .brand {
    font-size: 17px;
  }

  .btn-gradient {
    padding: .5rem 1rem;
    font-size: 13px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }

  .hero-content {
    align-items: center;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hero-image-wrap {
    margin-top: -1rem;
    align-items: end;
  }

  .hero-image {
    max-height: 340px;
  }

  .wave {
    position: relative;
    margin-top: -20px;
  }

  .stats-section,
  .how-section,
  .differentials,
  .testimonials,
  .final-cta {
    padding: 4rem 0;
  }

  .section-head {
    margin-bottom: 2.25rem;
  }

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

  .diff-title h2 {
    font-size: 2.5rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 520px) {
  .stats-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    padding: 1.2rem .9rem;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }

  .stat-card strong {
    font-size: 1.75rem;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-cta {
    padding: .85rem 1.4rem;
    font-size: 14px;
  }
}
