/* Lunessa Mulher — editorial advertorial (pt-PT) */
:root {
  --ink: #1a2f3d;
  --ink-2: #3a4f5c;
  --mute: #6a7c88;
  --paper: #eef3f6;
  --paper-2: #e2eaf0;
  --white: #ffffff;
  --line: rgba(26, 47, 61, 0.1);
  --sea: #2a7a84;
  --sea-deep: #1e5f67;
  --sea-soft: #d4e8eb;
  --sand: #c4a574;
  --sand-soft: #f3eadc;
  --radius: 18px;
  --shadow: 0 24px 50px rgba(26, 47, 61, 0.09);
  --font-display: "Spectral", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1080px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(42, 122, 132, 0.12), transparent 55%),
    radial-gradient(700px 400px at 100% 8%, rgba(196, 165, 116, 0.1), transparent 50%),
    linear-gradient(180deg, #e6eef2 0%, var(--paper) 30%, #f6f9fb 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--sea-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sea); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.45em;
}
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.top-ad {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.6rem 1.25rem;
  background: rgba(238, 243, 246, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 28px rgba(26, 47, 61, 0.06);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--sea);
}
.nav {
  display: none;
  gap: 1.1rem;
  margin-left: auto;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a:hover { color: var(--sea); }
.header-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  background: var(--sea);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}
.btn-buy:hover { background: var(--sea-deep); }
.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menu-btn i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 35;
  background: rgba(26, 47, 61, 0.4);
}
.mobile-nav.open { display: block; }
.mobile-nav > div {
  background: var(--white);
  padding: 1.4rem 1.2rem 2rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.mobile-nav a {
  display: block;
  padding: 0.7rem 0.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.mobile-nav small { color: var(--mute); font-size: 0.8rem; }

.mast {
  text-align: center;
  padding: 2.75rem 1.25rem 1.5rem;
}
.mast .brand-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  animation: fadeIn 0.8s ease both;
}
.mast .brand-lg em {
  font-style: italic;
  font-weight: 500;
  color: var(--sea);
}
.mast .tag {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 600;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.hero-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  text-align: center;
}
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.hero-article h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.85rem;
}
.hero-article .deck {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 38rem;
  margin: 0 auto 1rem;
}
.meta-line {
  font-size: 0.78rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
}
.hero-fig {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-fig img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  animation: zoomOut 16s ease-out forwards;
}
@keyframes zoomOut {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero-fig figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  color: var(--mute);
  background: var(--white);
  text-align: left;
}

.trust-bar {
  display: grid;
  gap: 0.85rem;
  width: min(100% - 2rem, var(--max));
  margin: 0.5rem auto 0;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.trust-item i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sea);
  font-weight: 600;
}
.trust-item b { display: block; font-size: 0.94rem; }
.trust-item small { color: var(--mute); font-size: 0.8rem; }

.section { padding: 4rem 0; }
.section-alt { background: rgba(255, 255, 255, 0.5); }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-head { max-width: 38rem; margin-bottom: 1.85rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.3vw, 2.55rem); }
.section-head p { color: var(--ink-2); margin: 0; }
.lead { font-size: 1.06rem; color: var(--ink-2); }

.intro-block {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.keybox {
  background: var(--sea-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  margin-top: 1.35rem;
}
.keybox h3 { font-size: 1.3rem; }
.keybox ul { margin: 0; padding-left: 1.1rem; color: var(--ink-2); }
.keybox li { margin-bottom: 0.4rem; }

.steps { display: grid; gap: 1.35rem; }
.step {
  display: grid;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26, 47, 61, 0.04);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--sea);
  padding: 1.15rem 1.2rem 0;
}
.step .body { padding: 0 1.2rem 1.3rem; }
.step h3 { font-size: 1.4rem; }
.step p { color: var(--ink-2); font-size: 0.96rem; }
.step-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.note {
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  background: var(--sand-soft);
  border-radius: 14px;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.food-grid { display: grid; gap: 1rem; }
.food-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.food-card.featured {
  border-color: rgba(42, 122, 132, 0.35);
  box-shadow: var(--shadow);
}
.food-card .pic { aspect-ratio: 16/11; overflow: hidden; }
.food-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.food-card:hover .pic img { transform: scale(1.04); }
.food-card .txt { padding: 1.05rem 1.1rem 1.2rem; }
.food-card h3 { font-size: 1.22rem; margin-bottom: 0.3rem; }
.food-card p { font-size: 0.9rem; color: var(--ink-2); margin: 0; }
.food-note {
  margin-top: 1.15rem;
  font-size: 0.84rem;
  color: var(--mute);
}

.product-panel {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-copy { padding: 1.5rem 1.3rem 1.7rem; }
.product-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.feature-list {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  color: var(--ink-2);
}
.feature-list li { margin-bottom: 0.3rem; }
.offer-box {
  background: var(--paper);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
}
.offer-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.price-row { display: flex; align-items: baseline; gap: 0.7rem; }
.price-now {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
}
.price-note { font-size: 0.8rem; color: var(--mute); }
.affiliate-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--mute);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
  background: var(--sea);
  color: #fff !important;
  width: 100%;
  max-width: 360px;
}
.btn-accent:hover { background: var(--sea-deep); }

.health-box {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  font-size: 0.9rem;
}
.health-box strong { color: #fff; }

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  margin-bottom: 0.55rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}
.faq details p {
  margin: 0.65rem 0 0;
  color: var(--ink-2);
  font-size: 0.94rem;
}

.newsletter {
  background:
    linear-gradient(135deg, rgba(42, 122, 132, 0.1), rgba(196, 165, 116, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.7rem 1.35rem;
}
.newsletter h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); }
.nl-form { display: grid; gap: 0.8rem; margin-top: 1rem; }
.nl-form label.field {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.28rem;
}
.nl-form input[type="text"],
.nl-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
}
.nl-form .consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-2);
}
.nl-form .consent input { margin-top: 0.2rem; }
.nl-form button {
  justify-self: start;
  background: var(--sea);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nl-form button:disabled { opacity: 0.65; cursor: wait; }
.nl-error { color: #8a3a3a; font-size: 0.88rem; }
.nl-note { font-size: 0.8rem; color: var(--mute); margin-top: 0.8rem; margin-bottom: 0; }

.site-footer {
  margin-top: 1.5rem;
  padding: 2.75rem 0 1.75rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}
.site-footer a { color: #a8d4da; }
.foot-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.foot-brand em { font-style: italic; color: #7eb8c0; }
.foot-tag { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 1.15rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin-bottom: 1.35rem;
}
.foot-links a { text-decoration: none; font-size: 0.88rem; }
.disc p { font-size: 0.8rem; line-height: 1.6; margin-bottom: 0.7rem; }
.legal-id { font-size: 0.78rem; }
.copy {
  margin-top: 1.35rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 500px;
  margin-inline: auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.84rem; margin-bottom: 0.8rem; }
.cookie-banner a { color: #a8d4da; }
.cookie-actions { display: flex; gap: 0.5rem; }
.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cookie-accept { background: #fff; color: var(--ink); }
.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.legal { padding: 2.75rem 0 3.75rem; }
.legal-head {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.15rem;
}
.legal-head h1 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.legal-head p { color: var(--mute); font-size: 0.84rem; margin: 0.45rem 0 0; }
.legal-main h2 { font-size: 1.28rem; margin-top: 1.6rem; }
.legal-main p, .legal-main li { color: var(--ink-2); font-size: 0.94rem; }
.legal-main ul { padding-left: 1.1rem; }
.contact-grid {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.contact-card h2 { font-size: 1.15rem; }

.js [data-in] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js [data-in][data-w="1"] { transition-delay: 0.07s; }
.js [data-in][data-w="2"] { transition-delay: 0.14s; }
.js [data-in].in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .header-end { margin-left: 0; }
  .trust-bar { grid-template-columns: repeat(3, 1fr); }
  .intro-block { grid-template-columns: 1.1fr 0.9fr; }
  .step { grid-template-columns: 100px 1fr; align-items: start; }
  .step-num { padding: 1.35rem 0 1.35rem 1.25rem; }
  .step .body { padding: 1.25rem 1.35rem 1.35rem 0; }
  .step-thumb {
    float: right;
    width: 42%;
    max-width: 280px;
    margin: 0 0 0.7rem 1rem;
    border-radius: 14px;
    aspect-ratio: 4/3;
  }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .food-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }
  .food-card.featured .pic { aspect-ratio: auto; min-height: 240px; }
  .product-panel { grid-template-columns: 0.9fr 1.1fr; }
  .product-visual img { aspect-ratio: auto; height: 100%; min-height: 420px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
  .food-grid { grid-template-columns: repeat(3, 1fr); }
  .food-card.featured { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fig img, .mast .brand-lg { animation: none; }
  .js [data-in] { opacity: 1; transform: none; transition: none; }
  .food-card .pic img { transition: none; }
}
