:root {
  --primary: #7b12ff;
  --primary-dark: #5c0fd8;
  --bg: #f4f4f8;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #7b12ff 0%, #9f05ff 100%);
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  padding-top: 72px;
  color: #333
}

html {
  scroll-behavior: smooth
}

/* NAVBAR */
.navbar {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05)
}

.navbar-brand {
  font-weight: 600;
  color: var(--primary-dark) !important
}

.nav-link {
  color: #555 !important;
  font-weight: 500;
  position: relative
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: .3s
}

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

/* HERO */
#hero {
  background: var(--grad);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7rem 0 10rem;
  margin-top: -10px;
}


#hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem
}

/* wave bottom */
#hero svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1
}

/* SECTIONS */
section {
  padding: 4.5rem 0
}

h2.section-title {
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center
}

/* ICON CARD */
.icon-card {
  background: var(--white);
  border: none;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  transition: .3s
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.icon-card i {
  font-size: 2rem;
  margin-bottom: .75rem;
  color: var(--primary)
}

.alert-disclaimer {
  background: rgba(255, 196, 0, .15);
  border: none;
  border-radius: 12px;
  color: #664d03;
  font-size: .95rem
}

/* PLAN CARD */
.plan-card {
  border: none;
  border-radius: 24px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 32px rgba(123, 18, 255, .3);
  overflow: hidden;
  position: relative
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px)
}

.plan-card .card-body {
  position: relative;
  z-index: 2
}

.plan-card ul {
  padding-left: 0;
  list-style: none
}

.plan-card li {
  margin-bottom: .6rem
}

.plan-card .price {
  font-size: 2.5rem;
  font-weight: 700;
}



/* FOOTER */
footer {
  background: #1f1f29;
  color: #aaa;
  font-size: .9rem
}

.bg-soft-pink {
  background-color: #f8e8fb;
}

.link {
  color: #7b12ff;
  text-decoration: none;
}








:root {
  --bg: #f4f4f8;
  --grad: linear-gradient(135deg, #7b12ff 0%, #9f05ff 100%);
}




.btn-gradient {
  background: linear-gradient(135deg, #7b12ff 0%, #9f05ff 100%);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: .75rem 2.25rem;
  font-weight: 600
}

.btn-gradient:hover {
  opacity: .9;
  color: #fff
}

.mockup-placeholder {
  width: 100%;
  max-width: 720px;
  height: 420px;
  background: #e6e0ff;
  border: 3px dashed #bba9ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b12ff;
  font-weight: 500
}


/* botão CTA destacado – paleta roxo/white */
.btn-cta {
  background: #ffffff;
  /* contraste no degradê */
  color: #7b12ff;
  /* roxo primário no texto */
  font-weight: 700;
  padding: .80rem 2.6rem;
  border: 3px solid rgba(255, 255, 255, .25);
  /* leve contorno translúcido */
  border-radius: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  /* elevação forte */
  transition: .25s;
}

.btn-cta:hover {
  background: #7b12ff;
  /* inverte cores */
  color: #fff;
  border-color: #ffffff55;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
  transform: translateY(-2px);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar.transparent {
  background-color: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}
