/* ===== Artuela — Landing Page ===== */

:root {
  --blue-900: #0f2f66;
  --blue-800: #163d80;
  --blue-700: #1e5fbf;
  --blue-100: #e8f0fd;
  --yellow: #ffc738;
  --yellow-dark: #f2ac00;
  --green: #2eb872;
  --orange: #ff7a33;
  --purple: #9b6bf2;
  --red: #ef4a5f;
  --bg: #fffdf7;
  --bg-alt: #fbf3e3;
  --text: #1b2740;
  --text-soft: #52607c;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 12px 30px rgba(15, 47, 102, 0.12);
  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: 0;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--blue-900); line-height: 1.15; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow);
  color: var(--blue-900);
  box-shadow: 0 8px 20px rgba(255, 199, 56, 0.45);
}
.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.22); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.92rem;
}
.btn-whatsapp:hover { background: #1fbb59; }

.btn-add {
  width: 100%;
  background: var(--blue-100);
  color: var(--blue-800);
  padding: 12px 18px;
  border-radius: 12px;
  justify-content: center;
}
.btn-add:hover { background: var(--yellow); color: var(--blue-900); }
.btn-add.active {
  background: var(--green);
  color: var(--white);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(15,47,102,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-900);
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.main-nav {
  display: flex;
  gap: 26px;
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a { color: var(--text-soft); }
.main-nav a:hover { color: var(--blue-700); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-whatsapp { display: inline-flex; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
  transition: transform .15s ease;
}
.icon-btn:hover { transform: translateY(-2px); }
.icon-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--blue-900);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,47,102,0.75) 0%, rgba(15,47,102,0.82) 55%, rgba(15,47,102,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 780px;
}
.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--yellow); }
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== Selos ===== */
.selos { background: var(--blue-900); padding: 22px 0; }
.selos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.selo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.selo strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.selo small { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.selo-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.selo-icon svg { width: 20px; height: 20px; }
.selo-pink { background: var(--red); }
.selo-green { background: var(--green); }
.selo-purple { background: var(--purple); }
.selo-orange { background: var(--orange); }

/* ===== Sections generic ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow {
  color: var(--blue-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  max-width: 720px;
  margin-bottom: 16px;
}
.section-lead {
  color: var(--text-soft);
  max-width: 640px;
  font-size: 1.05rem;
  margin-bottom: 44px;
}

/* ===== Diferenciais ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: left;
}
.diff-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: var(--yellow);
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--blue-900);
}
.diff-icon svg { width: 26px; height: 26px; }
.diff-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.diff-card p { color: var(--text-soft); font-size: 0.95rem; }

/* ===== Recreação infantil ===== */
.recreacao-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.recreacao-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.recreacao-fotos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.recreacao-fotos img:first-child { margin-top: 32px; }
.recreacao-texto p { color: var(--text-soft); font-size: 1.02rem; margin: 14px 0 26px; }

/* ===== Público ===== */
.publico-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.publico-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--yellow);
}
.publico-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--blue-100);
  border-radius: 14px;
  color: var(--blue-700);
  margin-bottom: 16px;
}
.publico-icon svg { width: 24px; height: 24px; }
.publico-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.publico-card p { color: var(--text-soft); margin-bottom: 18px; font-size: 0.96rem; }
.publico-card a { color: var(--blue-700); font-weight: 800; }
.publico-card a:hover { color: var(--yellow-dark); }

/* ===== Produtos ===== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.produto-img { aspect-ratio: 4/3; overflow: hidden; }
.produto-img img { width: 100%; height: 100%; object-fit: cover; }
.produto-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.produto-body h3 { font-size: 1.15rem; }
.produto-body > p { color: var(--text-soft); font-size: 0.93rem; flex-grow: 0; }
.produto-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--blue-800);
  font-weight: 700;
  margin-bottom: 4px;
}
.produto-specs li { display: flex; align-items: center; gap: 8px; }
.spec-icon {
  display: inline-flex;
  color: var(--blue-700);
  flex-shrink: 0;
}
.spec-icon svg { width: 16px; height: 16px; }
.produto-body .btn-add { margin-top: auto; }

/* ===== Área de atuação ===== */
.section-atuacao { background: var(--blue-700); padding: 46px 0; }
.atuacao-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
}
.atuacao-icon { flex-shrink: 0; color: var(--white); }
.atuacao-icon svg { width: 40px; height: 40px; }
.section-atuacao h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.section-atuacao p { color: rgba(255,255,255,0.88); }

/* ===== Galeria / Eventos reais ===== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  position: relative;
  background: #000;
}
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ===== Fundadores ===== */
.fundadores-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.fundadores-foto {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-700), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.fundadores-foto img { width: 100%; height: 100%; object-fit: cover; }
.fundadores-texto p:last-child { color: var(--text-soft); font-size: 1.02rem; margin-top: 14px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-900);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--yellow-dark);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--text-soft); margin-top: 12px; font-size: 0.97rem; }

/* ===== Cart bar ===== */
.cart-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  padding: 16px 0;
  z-index: 90;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.cart-bar.visible { transform: translateY(0); }
.cart-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cart-info { font-size: 0.95rem; }
.cart-items { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 2px; }
.cart-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cart-date {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  gap: 4px;
}
.cart-date input {
  border-radius: 10px;
  border: none;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

/* ===== CTA final ===== */
.cta-final {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffdd7a 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-final h2 { max-width: 640px; margin: 0 auto 26px; font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ===== Footer ===== */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,0.85); padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand p { color: rgba(255,255,255,0.7); }
.site-footer h4 { color: var(--yellow); font-family: var(--font-head); margin-bottom: 12px; font-size: 1rem; }
.footer-contact, .footer-area { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-link svg { flex-shrink: 0; color: var(--yellow); }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 20px 0;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .publico-grid { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .fundadores-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .recreacao-inner { grid-template-columns: 1fr; }
  .recreacao-fotos img:first-child { margin-top: 0; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-whatsapp span { display: none; }
  .selos-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid .galeria-item:first-child { grid-column: span 2; }
  .atuacao-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .cart-inner { flex-direction: column; align-items: flex-start; }
  .cart-actions { width: 100%; justify-content: space-between; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px;
  gap: 16px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}
