/*
Theme Name: Laliz Baby
Theme URI: https://lalizbaby.com.br
Author: OpenAI
Description: Tema customizado da home Laliz Baby para WordPress.
Version: 1.1
Text Domain: laliz-baby
*/

:root {
  --pink: #f48ea7;
  --pink-strong: #f27495;
  --pink-soft: #f8edef;
  --pink-soft-2: #f7ebee;
  --bg: #f8f5f6;
  --text: #6d6b73;
  --title: #3f3d45;
  --border: #ece1e5;
  --white: #ffffff;
  --green: #25d366;
  --orange: #ff7a00;
  --star: #e4b933;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

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

.topbar {
  background: var(--pink-soft-2);
  border-bottom: 1px solid #f1e6ea;
  font-size: 13px;
}
.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-note { color: #7b7880; }
.topbar-links { display: flex; align-items: center; gap: 28px; }
.topbar-links a { color: #7b7880; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-main {
  display: grid;
  grid-template-columns: 200px minmax(320px, 1fr) 300px;
  align-items: center;
  gap: 28px;
  padding: 24px 16px 18px;
}
.header-logo img { width: 138px; height: auto; }

.header-search form {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fcfbfc;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.header-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #6b6871;
  font-size: 14px;
}
.header-search button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.header-actions { display: flex; justify-content: flex-end; gap: 34px; }
.header-box { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.header-box strong { color: var(--title); font-weight: 700; }
.header-box span { color: #8d8a92; }

.main-nav { border-top: 1px solid #f2e8eb; }
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 58px;
}
.main-nav a {
  color: #4b4951;
  font-size: 15px;
  font-weight: 600;
}
.main-nav a.active,
.main-nav a:hover { color: var(--pink-strong); }

.hero-section { padding-top: 16px; }
.hero-box {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  background: var(--pink-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
}
.hero-image { min-height: 315px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #fcf5f7 0%, #f7ebee 100%);
  padding: 36px 40px;
}
.hero-content-inner { max-width: 360px; }
.hero-heart {
  color: #efafbf;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
}
.hero-content h1 {
  margin: 0;
  color: var(--title);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 35px;
  line-height: 1.14;
  font-weight: 500;
}
.hero-content h1 span { color: var(--pink-strong); font-style: italic; }
.hero-content p {
  margin: 18px 0 0;
  color: #6f6b73;
  font-size: 17px;
  line-height: 1.45;
  max-width: 320px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-width: 152px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 16px;
  background: var(--pink-strong);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.launches-section { padding-top: 22px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-header h2 {
  margin: 0;
  color: #35333a;
  font-size: 34px;
  font-weight: 700;
}
.section-header h2 span { color: var(--pink-strong); font-size: 25px; }
.section-arrows { display: flex; gap: 10px; }
.section-arrows button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: #96939a;
  font-size: 18px;
  cursor: pointer;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  border: 1px solid #eee3e7;
  border-radius: 20px;
  background: #fbf9fa;
  overflow: hidden;
}
.product-image-wrap { position: relative; background: #fff; }
.product-image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-width: 56px;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #aaa6ad;
  font-size: 16px;
  cursor: pointer;
}
.product-info { padding: 14px 14px 16px; }
.product-info h3 {
  margin: 0 0 10px;
  min-height: 52px;
  color: #2d2b32;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.stars { color: var(--star); font-size: 16px; letter-spacing: 1px; }
.reviews { color: #a3a0a8; font-size: 12px; }
.product-prices {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.old-price { color: #afacb4; font-size: 13px; text-decoration: line-through; }
.current-price { color: var(--pink-strong); font-size: 18px; font-weight: 700; }
.installments { margin-top: 5px; color: #87848c; font-size: 14px; }
.size-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.size-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid #ddd2d7;
  background: #fff;
  border-radius: 3px;
  color: #6b6871;
  font-size: 13px;
}

.benefits-section { padding-top: 18px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f9eef1;
}
.benefit-item .icon { font-size: 28px; }
.benefit-item strong {
  display: block;
  color: #4a474f;
  font-size: 15px;
  margin-bottom: 4px;
}
.benefit-item span { color: #8d8a92; font-size: 13px; }

.site-footer {
  margin-top: 28px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 38px 16px;
}
.footer-brand img {
  width: 138px;
  height: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  max-width: 260px;
  color: #8c8991;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer h4 {
  margin: 0 0 12px;
  color: #403e46;
  font-size: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li {
  margin-bottom: 8px;
  color: #8c8991;
  font-size: 14px;
}
.footer-copy {
  padding: 14px 16px;
  border-top: 1px solid #f1e7ea;
  text-align: center;
  color: #a8a5ac;
  font-size: 13px;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1200px) {
  .header-main { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-box { grid-template-columns: 1fr; }
  .benefits-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar .container, .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-grid, .benefits-grid, .footer-grid { grid-template-columns: 1fr; }
  .topbar-links { gap: 16px; flex-wrap: wrap; }
}
