/* ============================================================
   LINGERIE FEMININAS — Design System
   Fonte: Playfair Display (display) + DM Sans (body)
   Paleta: Rosa Profundo + Off-white + Grafite Escuro
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

:root {
  --bg: #0d0a0c;
  --card: #16111a;
  --surface: #1f1824;
  --line: rgba(255,255,255,.07);
  --txt: #f0eaf5;
  --muted: #9b8faa;
  --soft: #c8b8d8;
  --rose: #f26090;
  --rose-light: #ffa8c5;
  --rose-pale: rgba(242,96,144,.12);
  --gold: #d4a96a;
  --gold-pale: rgba(212,169,106,.12);
  --green: #7ee8b8;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.5);
  --shadow-sm: 0 4px 20px rgba(0,0,0,.3);
  --max: 1100px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.68;
  background-image:
    radial-gradient(ellipse 900px 500px at 10% -5%, rgba(242,96,144,.14) 0%, transparent 65%),
    radial-gradient(ellipse 700px 600px at 90% 10%, rgba(212,169,106,.08) 0%, transparent 60%),
    radial-gradient(ellipse 800px 700px at 50% 110%, rgba(126,232,184,.06) 0%, transparent 60%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p { margin-bottom: 1.1rem; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; color: var(--txt); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--rose); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 0;
  font-size: .85rem; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(13,10,12,.78);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 20px;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
}
.brand-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 14px rgba(242,96,144,.35);
}
.brand small { display: block; font-family: var(--font-body); font-size: .72rem; color: var(--muted); font-weight: 400; margin-top: 1px; }
nav { display: flex; gap: 6px; flex-wrap: wrap; }
nav a {
  font-size: .82rem; font-weight: 500; color: var(--soft);
  padding: 5px 12px; border-radius: 50px;
  border: 1px solid transparent;
  transition: var(--transition);
}
nav a:hover, nav a[aria-current="page"] {
  background: var(--rose-pale); border-color: rgba(242,96,144,.3); color: var(--rose-light);
}
.nav-cta {
  background: linear-gradient(135deg, var(--rose), #c94070) !important;
  color: #fff !important; border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(242,96,144,.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(242,96,144,.45); }

/* ── LAYOUT ARTICLE ── */
.page-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px 80px; }
.article-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; margin-top: 40px; }

/* ── HERO ARTICLE ── */
.article-hero {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 36px;
  min-height: 320px;
  background: var(--card);
}
.article-hero img { width: 100%; height: 360px; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,12,.9) 0%, rgba(13,10,12,.3) 60%, transparent 100%);
}
.hero-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
}
.hero-badge {
  display: inline-block; background: var(--rose);
  color: #fff; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ── ARTICLE CONTENT ── */
.article-body {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  border: 1px solid var(--line);
}
.article-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem; color: var(--muted);
}
.meta-tag {
  background: var(--rose-pale); color: var(--rose-light);
  border: 1px solid rgba(242,96,144,.2);
  padding: 3px 10px; border-radius: 50px; font-size: .75rem; font-weight: 500;
}
.article-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700; margin: 2rem 0 .9rem;
  color: var(--txt); position: relative; padding-left: 18px;
}
.article-body h2::before {
  content: ''; position: absolute; left: 0; top: .2em;
  width: 4px; height: 1.1em; background: var(--rose);
  border-radius: 2px;
}
.article-body h3 {
  font-size: 1.15rem; font-weight: 600; margin: 1.6rem 0 .7rem;
  color: var(--soft);
}
.article-body p { color: var(--txt); font-size: .97rem; line-height: 1.78; }
.article-body ul, .article-body ol {
  margin: .8rem 0 1.2rem; padding-left: 1.4rem;
}
.article-body li { margin-bottom: .45rem; color: var(--txt); font-size: .96rem; line-height: 1.7; }
.article-body strong { color: var(--rose-light); font-weight: 600; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--rose);
  background: var(--rose-pale);
  margin: 1.8rem 0; padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.08rem; color: var(--soft);
}

/* ── CTA BOX (inline) ── */
.cta-box {
  background: linear-gradient(135deg, rgba(242,96,144,.15), rgba(212,169,106,.1));
  border: 1px solid rgba(242,96,144,.3);
  border-radius: var(--radius); padding: 28px 32px;
  margin: 2rem 0; text-align: center;
}
.cta-box p { margin: 0 0 16px; font-size: 1rem; color: var(--soft); }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), #c94070);
  color: #fff !important; font-weight: 600; font-size: .95rem;
  padding: 13px 32px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(242,96,144,.4);
  transition: var(--transition); letter-spacing: .02em;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(242,96,144,.5); }
.cta-btn-sm {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose-light) !important; font-weight: 500; font-size: .85rem;
  padding: 9px 22px; border-radius: 50px;
  transition: var(--transition);
}
.cta-btn-sm:hover { background: var(--rose-pale); }

/* ── PRODUCT CARD ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; margin: 1.5rem 0; }
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(242,96,144,.3); box-shadow: var(--shadow-sm); }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-card-body { padding: 16px; }
.product-card h4 { font-size: .9rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.product-card .price { color: var(--rose); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.product-card .btn { width: 100%; text-align: center; padding: 9px; }

/* ── TABLE OF CONTENTS ── */
.toc-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px; margin: 0 0 2rem;
}
.toc-box h4 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc-box ol { padding-left: 1.3rem; }
.toc-box li { margin-bottom: .35rem; }
.toc-box a { color: var(--soft); font-size: .88rem; transition: var(--transition); }
.toc-box a:hover { color: var(--rose-light); }

/* ── INFO BOX ── */
.info-box {
  background: var(--gold-pale); border: 1px solid rgba(212,169,106,.25);
  border-radius: var(--radius); padding: 18px 22px; margin: 1.5rem 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-box .icon { font-size: 1.5rem; flex-shrink: 0; }
.info-box p { margin: 0; font-size: .9rem; color: var(--soft); }

/* ── RATING STARS ── */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.sidebar-card-header {
  background: linear-gradient(135deg, rgba(242,96,144,.18), rgba(212,169,106,.1));
  padding: 14px 18px;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-light); border-bottom: 1px solid var(--line);
}
.sidebar-card-body { padding: 18px; }
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { font-size: .85rem; color: var(--soft); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.sidebar-links a:hover { color: var(--rose-light); }
.sidebar-links .arrow { color: var(--rose); font-size: .8rem; margin-left: auto; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .8rem; color: var(--muted); margin: 24px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--rose-light); }
.breadcrumb span { color: var(--muted); }
.breadcrumb .current { color: var(--soft); }

/* ── HOME HERO ── */
.home-hero {
  padding: 70px 20px 60px;
  text-align: center;
  max-width: 760px; margin: 0 auto;
}
.home-hero .badge {
  display: inline-block; background: var(--rose-pale);
  border: 1px solid rgba(242,96,144,.3); color: var(--rose-light);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 18px;
}
.home-hero h1 em { font-style: italic; color: var(--rose); }
.home-hero p { font-size: 1.1rem; color: var(--soft); max-width: 560px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CARD GRADE ── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.art-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.art-card:hover { transform: translateY(-5px); border-color: rgba(242,96,144,.3); box-shadow: var(--shadow); }
.art-card img { width: 100%; height: 200px; object-fit: cover; }
.art-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.art-card-cat { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.art-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.art-card p { font-size: .87rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
.art-card .read-more { font-size: .82rem; color: var(--rose-light); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.art-card .read-more::after { content: '→'; transition: var(--transition); }
.art-card:hover .read-more::after { transform: translateX(3px); }

/* ── SECTION TITLE ── */
.section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.section-head h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.section-head .line { flex: 1; height: 1px; background: var(--line); }
.section-sub { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  margin-top: 60px; padding: 40px 20px;
  background: var(--card);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
footer h4 { font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 12px; }
footer ul { list-style: none; padding: 0; }
footer li { margin-bottom: .5rem; }
footer a { font-size: .85rem; color: var(--muted); transition: var(--transition); }
footer a:hover { color: var(--rose-light); }
.footer-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; font-size: .78rem; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--rose-light); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-q {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--soft); cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--rose); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: .9rem; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 12px; }

/* ── BADGE SEO TAGS ── */
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.2rem 0; }
.seo-tag { background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-size: .75rem; padding: 4px 12px; border-radius: 50px; }

/* ── RELATED POSTS ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 12px; }
.related-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.related-card:hover { border-color: rgba(242,96,144,.3); transform: translateY(-3px); }
.related-card img { width: 100%; height: 120px; object-fit: cover; }
.related-card-body { padding: 12px; }
.related-card h4 { font-size: .82rem; font-weight: 600; line-height: 1.35; color: var(--txt); }

/* ── PROGRESS BAR ── */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--gold)); z-index: 200; width: 0%; transition: width .1s linear; }

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .article-body { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  .home-hero { padding: 50px 16px 40px; }
  .article-body { padding: 22px 18px; }
  nav { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}
