/* ═══════════════════════════════════════════
   lumilean-shared.css – CSS partilhado
   Palette: #FAF7F1 bg · #4B294D primary
═══════════════════════════════════════════ */
:root {
  --primary:       #4B294D;
  --primary-dark:  #361E38;
  --primary-light: #DFD0E0;
  --primary-bg:    #F5EDF6;
  --bg:            #FAF7F1;
  --gold:          #C9974A;
  --gold-light:    #FBF3E8;
  --red:           #B94040;
  --text:          #1C1220;
  --text2:         #3D3050;
  --text3:         #7A6E82;
  --border:        #DDD3DE;
  --off-white:     #FAF7F1;
  --white:         #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.65; background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(75,41,77,.08);
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 40px; width: auto; }
.site-logo-text { font-family: 'Merriweather', serif; font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); line-height: 1.1; }
.site-logo-text small { display: block; font-family: 'Lato', sans-serif; font-size: .6rem; color: var(--text3); font-weight: 400; letter-spacing: .5px; margin-top: 2px; }

/* HERO */
.hero {
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 55%, #7B4D7E 100%);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; background:rgba(255,255,255,.04); border-radius:50%; }
.hero::after  { content:''; position:absolute; bottom:-80px; left:-80px; width:400px; height:400px; background:rgba(255,255,255,.03); border-radius:50%; }
.hero-sub-wrap { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .74rem; font-weight: 700;
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 18px; letter-spacing: .9px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.22);
}
.hero h1 { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 700; line-height: 1.28; margin-bottom: 16px; color: #fff; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.04rem; color: rgba(255,255,255,.88); margin-bottom: 28px; line-height: 1.65; max-width: 660px; margin-left: auto; margin-right: auto; }
.hero-prod-img {
  width: 150px; height: 150px; object-fit: contain;
  border-radius: 18px; background: rgba(255,255,255,.1);
  margin: 0 auto 22px; display: block;
  border: 3px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--primary-dark);
  font-weight: 900; font-size: 1.05rem;
  padding: 17px 38px; border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.32); color: var(--primary-dark); }
.hero-note { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: 12px; }

/* ARTICLE BODY */
.article-body { max-width: 880px; margin: 0 auto; padding: 50px 24px 36px; }
.bc { font-size: .82rem; color: var(--text3); margin-bottom: 28px; }
.bc a { color: var(--primary); }
.sp { height: 1px; background: var(--border); margin: 38px 0; }

/* TYPOGRAPHY */
.sec-h { font-family: 'Merriweather', serif; font-size: 1.35rem; color: var(--primary-dark); margin: 0 0 16px; padding-bottom: 11px; border-bottom: 2px solid var(--primary-light); }
.sh3 { font-size: 1.04rem; font-weight: 900; color: var(--primary-dark); margin: 20px 0 10px; }
p { margin-bottom: 14px; color: var(--text2); line-height: 1.78; }
ul.lst, ol.lst { padding-left: 20px; margin-bottom: 16px; }
ul.lst li, ol.lst li { margin-bottom: 8px; line-height: 1.68; color: var(--text2); }

/* CALLOUTS */
.callout { padding: 16px 20px; border-radius: 8px; margin: 20px 0; line-height: 1.65; font-size: .9rem; }
.c-primary { background: var(--primary-bg); border-left: 4px solid var(--primary); color: var(--text); }
.c-ok      { background: #F3FAF5;          border-left: 4px solid #3A8A55; color: var(--text); }
.c-gold    { background: var(--gold-light); border-left: 4px solid var(--gold); color: var(--text); }
.c-red     { background: #FDF4F4;          border-left: 4px solid var(--red); color: var(--text); }

/* CTA BUTTONS */
.sec-cta { text-align: center; margin: 28px 0 0; }
.btn-sec-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; font-weight: 900;
  font-size: .95rem; padding: 14px 32px; border-radius: 8px;
  text-decoration: none; transition: background .2s, transform .2s;
}
.btn-sec-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-sec-cta-lg { font-size: 1.05rem; padding: 17px 38px; }

/* COMPARISON TABLE */
.comp-wrap { overflow-x: auto; border-radius: 10px; margin: 20px 0; box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.comp-table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 440px; }
.comp-table thead tr { background: var(--primary-dark); }
.comp-table th { color: #fff; padding: 13px 16px; font-weight: 700; text-align: left; }
.comp-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); background: var(--white); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: var(--bg); }
.cw { color: #3A8A55; font-weight: 700; }
.cl { color: var(--text3); }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-q {
  width: 100%; background: var(--white); border: none;
  padding: 16px 22px; text-align: left; font-weight: 700;
  font-size: .93rem; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--text); font-family: 'Lato', sans-serif;
  transition: background .15s;
}
.faq-q:hover { background: var(--primary-bg); }
.faq-ico { font-size: 1.3rem; color: var(--primary); margin-left: 12px; flex-shrink: 0; }
.faq-a { display: none; padding: 16px 22px; font-size: .89rem; color: var(--text2); line-height: 1.72; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 22px 0 28px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 8px; left: 14px; font-size: 3rem; color: var(--primary-light); font-family: 'Merriweather', serif; line-height: 1; }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 1px; }
.testi-txt { font-size: .85rem; color: var(--text2); line-height: 1.68; margin-bottom: 10px; font-style: italic; padding-top: 8px; }
.testi-name { font-size: .77rem; color: var(--text3); font-weight: 700; }

/* RATING BARS */
.rating-bar-wrap { margin: 20px 0; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rating-label { font-size: .82rem; color: var(--text2); width: 110px; flex-shrink: 0; }
.rating-bar-outer { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-bar-inner { height: 100%; background: var(--primary); border-radius: 4px; transition: width 1.2s ease; }
.rating-pct { font-size: .82rem; font-weight: 700; color: var(--primary); width: 36px; text-align: right; flex-shrink: 0; }

/* STEP ITEMS */
.step-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.step-num { width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; flex-shrink: 0; box-shadow: 0 4px 14px rgba(75,41,77,.25); }
.step-content h3 { font-weight: 900; color: var(--primary-dark); margin-bottom: 5px; font-size: .93rem; }
.step-content p { font-size: .87rem; margin: 0; }

/* EXPERT BOX */
.expert-box { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 12px; padding: 20px; margin: 20px 0; }
.expert-icon { font-size: 2.6rem; flex-shrink: 0; }
.expert-info strong { display: block; font-size: .92rem; color: var(--primary-dark); margin-bottom: 5px; }
.expert-info p { margin: 0; font-size: .86rem; }

/* GUARANTEE BOX */
.guarantee-box { display: flex; gap: 24px; align-items: center; background: var(--primary-bg); border: 2px solid var(--primary-light); border-radius: 14px; padding: 26px; margin: 28px 0; }
.guarantee-icon { font-size: 3.6rem; flex-shrink: 0; }
.guarantee-title { font-family: 'Merriweather', serif; font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 8px; }
.guarantee-text { font-size: .87rem; color: var(--text2); margin: 0; }

/* CTA FULL */
.cta-full {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 60%, #7B4D7E 100%);
  padding: 64px 40px; text-align: center; color: #fff;
}
.cta-full h2 { font-family: 'Merriweather', serif; font-size: 1.65rem; color: #fff; margin-bottom: 10px; }
.cta-full > p { color: rgba(255,255,255,.8); margin-bottom: 30px; font-size: 1rem; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 780px; margin: 36px auto 0; }
.pkg { background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.15); border-radius: 14px; padding: 22px 18px; text-align: center; color: #fff; }
.pkg-pop { background: rgba(255,255,255,.18); border: 2px solid var(--gold); }
.pkg-name { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; color: rgba(255,255,255,.75); }
.pkg-price { font-size: 2.4rem; font-weight: 900; line-height: 1; color: #fff; }
.pkg-price small { font-size: 1rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.pkg-save { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* FOOTER */
footer { background: var(--primary-dark); color: rgba(255,255,255,.6); text-align: center; padding: 34px 24px; font-size: .82rem; line-height: 1.85; }
footer a { color: rgba(255,255,255,.75); }
footer p + p { margin-top: 8px; }
.footer-logo { height: 32px; width: auto; margin: 0 auto 14px; filter: brightness(0) invert(1); opacity: .65; }

/* SCROLL TO TOP */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--primary); color: #fff; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: background .2s, transform .2s; z-index: 999; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.scroll-top.visible { display: flex; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { padding: 52px 24px; }
  .site-header { padding: 12px 24px; }
  .cta-full { padding: 52px 24px; }
}
@media (max-width: 640px) {
  html { font-size: 17px; }
  .hero { padding: 38px 20px; }
  .hero h1 { font-size: 1.38rem; }
  .hero-sub { font-size: .92rem; }
  .site-header { padding: 10px 16px; }
  .article-body { padding: 32px 16px 18px; }
  .btn-hero { font-size: .9rem; padding: 14px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .cta-full { padding: 40px 20px; }
  .guarantee-box { flex-direction: column; gap: 14px; text-align: center; }
  .expert-box { flex-direction: column; gap: 10px; }
}
