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

:root {
  --azul: #5BC8D0;
  --azul-escuro: #3aabb4;
  --azul-claro: #d6f4f6;
  --rosa: #FFD6E7;
  --rosa-medio: #FFB3D1;
  --rosa-escuro: #ff7ab5;
  --branco: #ffffff;
  --texto: #2d3748;
  --texto-claro: #718096;
  --amarelo: #FFE066;
  --verde: #5ecba1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: #fef9fc;
  color: var(--texto);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--rosa) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,200,208,0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,179,209,0.3) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.badge-viral {
  display: inline-block;
  background: var(--rosa-escuro);
  color: white;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: pulsa 2s ease-in-out infinite;
}

@keyframes pulsa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-text h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--texto);
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: var(--azul-escuro);
  display: block;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--texto-claro);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.preco-destaque {
  background: white;
  border-radius: 20px;
  padding: 20px 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 30px rgba(91,200,208,0.25);
  margin-bottom: 28px;
  border: 2px solid var(--azul-claro);
}

.preco-destaque .de {
  font-size: 0.85rem;
  color: var(--texto-claro);
  text-decoration: line-through;
}

.preco-destaque .por {
  font-family: 'Baloo 2', cursive;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1;
}

.preco-destaque .label {
  font-size: 0.8rem;
  color: var(--rosa-escuro);
  font-weight: 700;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  color: white;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(58,171,180,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(58,171,180,0.55);
}

.hero-img {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: clamp(240px, 35vw, 420px);
  filter: drop-shadow(0 20px 40px rgba(91,200,208,0.4));
  animation: flutua 4s ease-in-out infinite;
}

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

/* ── SELOS ── */
.selos {
  background: var(--azul);
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.selos span {
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.selos span i {
  font-size: 1.2rem;
}

/* ── SEÇÃO GUIA ── */
.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--texto);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--azul-escuro);
}

.section-sub {
  text-align: center;
  color: var(--texto-claro);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* ── PASSOS DO GUIA ── */
.guia-bg {
  background: linear-gradient(180deg, #fef9fc 0%, var(--rosa) 100%);
}

.passos-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.passo-card {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 6px 28px rgba(91,200,208,0.13);
  border: 2px solid transparent;
  transition: border 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.passo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--azul), var(--rosa-escuro));
}

.passo-card:hover {
  border-color: var(--azul-claro);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(91,200,208,0.22);
}

.passo-numero {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--azul-claro), var(--rosa));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 20px;
}

.passo-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 12px;
}

.passo-card p {
  color: var(--texto-claro);
  line-height: 1.65;
  font-size: 0.97rem;
}

.passo-card .tag-dica {
  display: inline-block;
  background: var(--azul-claro);
  color: var(--azul-escuro);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ── ECONOMIAS ── */
.economia-bg {
  background: white;
}

.economia-cards {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.eco-card {
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--rosa) 100%);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}

.eco-card:hover {
  transform: scale(1.04);
}

.eco-emoji {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.eco-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--texto);
  margin-bottom: 10px;
}

.eco-card p {
  color: var(--texto-claro);
  font-size: 0.94rem;
  line-height: 1.6;
}

.eco-economia {
  display: inline-block;
  background: var(--azul-escuro);
  color: white;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ── FAQ / DICAS COLEÇÃO ── */
.colecao-bg {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--azul-claro) 100%);
}

.dicas-lista {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dica-item {
  background: white;
  border-radius: 18px;
  padding: 24px 28px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(91,200,208,0.12);
  transition: box-shadow 0.3s;
}

.dica-item:hover {
  box-shadow: 0 8px 28px rgba(91,200,208,0.25);
}

.dica-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dica-header h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--texto);
  flex: 1;
}

.dica-icon {
  width: 36px;
  height: 36px;
  background: var(--azul-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.dica-item.open .dica-icon {
  transform: rotate(45deg);
  background: var(--azul);
}

.dica-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--texto-claro);
  font-size: 0.97rem;
  line-height: 1.7;
  padding-top: 0;
}

.dica-item.open .dica-body {
  max-height: 300px;
  padding-top: 14px;
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul) 50%, var(--rosa-medio) 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-final h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.cta-final p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.preco-cta {
  display: inline-block;
  background: white;
  border-radius: 20px;
  padding: 18px 36px;
  margin-bottom: 28px;
}

.preco-cta .valor {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--azul-escuro);
  display: block;
  line-height: 1;
}

.preco-cta .detalhe {
  font-size: 0.85rem;
  color: var(--texto-claro);
  font-weight: 600;
}

.btn-cta-final {
  display: inline-block;
  background: white;
  color: var(--azul-escuro);
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 20px 50px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  max-width: 360px;
  margin: 0 auto;
}

.btn-cta-final:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.3);
}

.garantia {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-top: 20px;
}

/* ── FOOTER ── */
footer {
  background: var(--texto);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .selos {
    gap: 20px;
  }
}
