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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.55;
}

:root {
  --brand: #ec4899;
  --brand-dark: #be185d;
  --brand-soft: #fce7f3;

  --accent: #22c55e;

  --text-main: #1f2937;
  --text-muted: #6b7280;

  --bg-soft: #fff1f2;
  --white: #ffffff;

  --radius: 14px;
  --shadow: 0 18px 40px rgba(236,72,153,0.18);
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.topbar-container {
  max-width: 1240px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand);
}

.brand i {
  font-size: 1.4rem;
}

/* HERO */
.intro {
  background: linear-gradient(
  135deg,
  var(--brand) 0%,
  #e11d8b 25%,
  #d81b60 50%,
  var(--brand-dark) 100%
);
  color: #ffffff;
  padding: 70px 20px 0;
}

.intro-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro-text h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

/* CTA */
.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: white;
  color: var(--brand);
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(189, 39, 114, 0.4); /* Cor da sombra atualizada */
  transition: all 0.3s ease;
}

.cta-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(236, 72, 153, 0.6); /* Cor da sombra atualizada */
}

/* IMAGEM */
.intro-image img {
  width: 100%;
  display: block;
}



/* HIGHLIGHTS */
.highlights {
  background: var(--bg-soft);
  padding: 48px 20px;
}

.highlights-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight {
  background: #ffffff;
  padding: 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.highlight strong {
  display: block;
  font-size: 2rem;
  color: var(--brand);
}

.highlight span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FEATURES */
.features {
  padding: 80px 20px;
}

.features h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.features-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 32px;
}

.feature-box {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box i {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* STEPS */
.steps {
  background: var(--bg-soft);
  padding: 80px 20px;
  text-align: center;
}

.steps h2 {
  font-size: 2rem;
  margin-bottom: 48px;
}

.steps-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.step {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
}

.cta-secondary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: var(--brand-dark);
  color: #e5e7eb;
  padding: 60px 20px 30px;
}

.footer-info {
  max-width: 1240px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-item i {
  color: var(--brand);
}

.footer span {
    color: white;
}

.footer p {
  text-align: center;
  font-size: 0.8rem;
  color: white;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}

.cookie-box {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-box p {
  margin: 0;
  font-size: 14px;
  color: #1f2937;
  max-width: 750px;
}

.cookie-box a {
  color: #ec4899;
  font-weight: 600;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #ec4899;
  color: #ffffff;
}

.cookie-btn.reject {
  background: #fce7f3;
  color: #be185d;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .intro-container {
    grid-template-columns: 1fr;
  }

  .intro-text h1 {
    font-size: 2.2rem;
  }

  .highlights-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .intro {
    padding: 50px 16px;
  }

  .intro-text h1 {
    font-size: 1.7rem;
  }

  .cta-main {
    width: 100%;
    justify-content: center;
  }
}

button.cta-main,
button.cta-secondary,
button.whatsapp-float{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
}

