:root {
  /* Paleta divertida e infantil */
  --ok-yellow: #ffdd57;
  --ok-pink: #ff8fb7;
  --ok-blue: #6ec9ff;
  --ok-green: #6ee7b7;
  --ok-purple: #c4b5fd;

  --ok-bg: #fdf7ff;
  --ok-text: #1f2933;
  --ok-muted: #6b7280;

  --ok-radius-lg: 1.5rem;
  --ok-radius-md: 1rem;

  --ok-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
  --ok-shadow-hover: 0 20px 45px rgba(15, 23, 42, 0.18);
}

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #dff3ff 0%, #fdf7ff 50%, #fdf7ff 100%);
  color: var(--ok-text);
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Estrutura principal */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}

.container {
  width: 100%;
  max-width: 1120px;
}

/* TOPO */
.top-header {
  margin-bottom: 2rem;
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
}

.tagline {
  display: inline-block;
  background-color: var(--ok-yellow);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* HERO - fundo de céu com nuvens até metade da seção */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.8rem 1.5rem;
  border-radius: var(--ok-radius-lg);
  background: linear-gradient(to bottom, #dff3ff 0%, #fdf7ff 70%);
  overflow: hidden;
}

/* Nuvens com gradientes, só na metade superior da seção */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%; /* nuvens ocupam aproximadamente metade da seção */
  background:
    radial-gradient(circle at 10% 40%, #ffffff 0, #ffffff 40%, transparent 70%),
    radial-gradient(circle at 40% 25%, #ffffff 0, #ffffff 45%, transparent 70%),
    radial-gradient(circle at 75% 35%, #ffffff 0, #ffffff 40%, transparent 70%),
    radial-gradient(circle at 60% 70%, #ffffff 0, #ffffff 45%, transparent 75%);
  opacity: 0.9;
}

/* Garantir que conteúdo fique acima das nuvens */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.8rem 1.5rem;
  background-color: #ffffff;
  border-radius: var(--ok-radius-lg);
  box-shadow: var(--ok-shadow-soft);
  width: 100%;
}

/* Texto do Hero */
.hero-text h1 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.hero-text p {
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-text strong {
  font-weight: 600;
}

.hero-buttons {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-extra {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--ok-muted);
}

/* Botões chapados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background-color: var(--ok-pink);
  color: #1f2933;
  box-shadow: 0 8px 20px rgba(248, 113, 160, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(248, 113, 160, 0.55);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--ok-text);
  border-color: var(--ok-blue);
}

.btn-outline:hover {
  background-color: var(--ok-blue);
}

/* HERO ILUSTRAÇÃO */
.hero-illustration {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.bubble-1 {
  width: 140px;
  height: 140px;
  background-color: var(--ok-blue);
  top: 15px;
  left: 25px;
}

.bubble-2 {
  width: 110px;
  height: 110px;
  background-color: var(--ok-pink);
  bottom: 10px;
  right: 20px;
}

.hero-card {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--ok-radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--ok-shadow-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: left;
  max-width: 260px;
}

.hero-card p + p {
  margin-top: 0.3rem;
}

/* SEÇÕES */
.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ok-muted);
  margin-bottom: 1.4rem;
}

/* GRUPOS WHATSAPP */
.groups-section {
  margin-top: 1.8rem;
}

.groups-grid {
  display: grid;
  gap: 1rem;
}

.group-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--ok-radius-md);
  color: #111827;
  box-shadow: var(--ok-shadow-soft);
  background-color: #ffffff;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.group-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.group-card p {
  font-size: 0.95rem;
}

.group-badge {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.7);
}

/* Cores de cada grupo (chapadas) */
.group-baby {
  background-color: #ffefd5; /* pêssego claro */
}

.group-kids {
  background-color: #d1fae5; /* verdinho */
}

.group-junior {
  background-color: #bfdbfe; /* azul claro */
}

.group-teen {
  background-color: #fce7f3; /* rosa claro */
}

.group-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ok-shadow-hover);
}

/* INFORMAÇÕES DA LOJA */
.info-section {
  margin-top: 2.4rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  background-color: #ffffff;
  border-radius: var(--ok-radius-md);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--ok-shadow-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.info-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--ok-muted);
}

/* REDES SOCIAIS */
.social-section {
  margin-top: 2.4rem;
}

.social-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.social-button {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--ok-shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

/* Botões chapados de redes sociais */
.social-button.instagram {
  background-color: var(--ok-pink);
}

.social-button.facebook {
  background-color: var(--ok-blue);
}

.social-button.whatsapp {
  background-color: var(--ok-green);
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--ok-shadow-hover);
}

/* RODAPÉ */
.page-footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ok-muted);
}

/* RESPONSIVIDADE */
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
  }

  .hero-text {
    flex: 3;
  }

  .hero-illustration {
    flex: 2;
  }

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

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

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

  .hero-text h1 {
    font-size: 1.9rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 2.2rem 2.2rem;
  }
	
  .tagline {
    font-size: 1rem; /* aumenta no desktop */
    padding: 0.45rem 1.1rem; /* deixa mais elegante */
  }	

  .hero-text h1 {
    font-size: 2.1rem;
  }
}
