/* =============================================================
   Noivas Belíssima do Alcantara — Design System Editorial
   ============================================================= */

:root {
  /* Paleta da marca — Noivas Belíssimas */
  --brand-primary: #991A5E;   /* PRIMÁRIA  */
  --brand-secondary: #C93F88; /* SECUNDÁRIA */
  --brand-accent: #F4B5D1;    /* ACENTO */
  --brand-light: #FFF7FB;     /* CLARA */
  --brand-neutral: #C59B87;   /* NEUTRA */

  --bg: #FFF7FB;
  --bg-alt: #FBEDF4;
  --bg-cream: #F8E3EE;
  --text: #3A2030;
  --text-soft: #7C5867;
  --text-mute: #9E7E8C;
  --gold: #991A5E;
  --gold-soft: #C93F88;
  --champagne: #F4B5D1;
  --rose: #C59B87;
  --brown: #741246;
  --white: #FFFFFF;
  --black: #2A1420;
  --whats: #25D366;
  --whats-hover: #1EAF55;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --radius: 4px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(23, 20, 18, .04), 0 4px 14px rgba(23, 20, 18, .04);
  --shadow-md: 0 8px 28px rgba(23, 20, 18, .09);
  --shadow-lg: 0 18px 50px rgba(23, 20, 18, .14);
  --transition: 280ms cubic-bezier(.2, .7, .2, 1);
  --transition-slow: 600ms cubic-bezier(.2, .7, .2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -.005em; line-height: 1.12; margin: 0; }
em { font-style: italic; color: var(--gold); font-weight: 500; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--text); color: var(--white); padding: 12px 18px; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =============================================================
   Eyebrows & rules (decorative)
   ============================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow-gold { color: var(--gold); }

.rule {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0;
  position: relative;
}
.rule::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.rule-center { margin-left: auto; margin-right: auto; }
.rule-light { background: rgba(244, 181, 209, .6); }
.rule-light::after { background: var(--champagne); }

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: normal;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1.25;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); }

.btn-secondary { background: transparent; border-color: var(--gold); color: var(--text); }
.btn-secondary:hover { background: var(--gold); color: var(--white); }

.btn-ghost-dark {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-ghost-dark:hover { background: var(--text); color: var(--white); }

.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { background: var(--whats-hover); transform: translateY(-1px); }

.btn-outline-whats {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline-whats:hover {
  background: var(--whats);
  border-color: var(--whats);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--text);
}
.btn-outline-gold:hover {
  background: var(--whats);
  border-color: var(--whats);
  color: #fff;
}

.btn-lg { padding: 19px 38px; font-size: .82rem; letter-spacing: .2em; }

.link-arrow {
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  display: inline-block;
  transition: transform var(--transition), letter-spacing var(--transition);
}
.link-btn { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }

/* =============================================================
   Header
   ============================================================= */
.site-header {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 247, 251, .94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(153, 26, 94, .14);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-mark { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; letter-spacing: .005em; }
.brand-name { font-family: var(--sans); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--text-soft); margin-top: 5px; }

.primary-nav ul { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text);
  position: relative; padding: 6px 0;
}
.primary-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition), left var(--transition);
}
.primary-nav a:hover::after { width: 100%; left: 0; }

.header-whats { padding: 11px 18px; font-size: .68rem; letter-spacing: .16em; }
.header-whats svg { flex: 0 0 auto; }

.hamburger { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform var(--transition), opacity var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO Editorial
   ============================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 760px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-image { overflow: hidden; }
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-panel {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(244, 181, 209, .25), transparent 60%),
    var(--bg);
  display: flex;
  align-items: center;
  padding: 80px 70px;
}
.hero-panel-inner {
  max-width: 540px;
  position: relative;
}
.hero-medal {
  position: absolute;
  top: -20px; right: 0;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  color: var(--text);
  box-shadow: inset 0 0 0 5px var(--bg), inset 0 0 0 6px rgba(153,26,94,.4);
  transform: rotate(-6deg);
  z-index: 5;
}
.medal-line {
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); font-family: var(--sans); font-weight: 500;
}
.medal-line-bottom { margin-top: 2px; font-style: italic; text-transform: lowercase; letter-spacing: .14em; font-family: var(--serif); color: var(--text-soft); }
.medal-num {
  font-size: 2.4rem; font-weight: 600; line-height: 1; margin: 4px 0;
  letter-spacing: -.02em;
}
.medal-num sup {
  font-size: .9rem; color: var(--gold); top: -.9em; margin-left: 2px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.012em;
}
.hero-title em { font-weight: 500; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.45;
}
.hero-text-body {
  color: var(--text-soft);
  font-size: .96rem;
  margin: 0 0 32px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================================
   Authority strip
   ============================================================= */
.authority {
  background: var(--bg-cream);
  border-top: 1px solid rgba(153,26,94,.18);
  border-bottom: 1px solid rgba(153,26,94,.18);
  padding: 38px 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.authority-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px;
  position: relative;
}
.authority-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(153,26,94,.3);
}
.authority-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 6px;
}
.authority-icon svg { width: 100%; height: 100%; }
.authority-title {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600;
  margin: 0; letter-spacing: -.005em;
  color: var(--text);
  line-height: 1.2;
}
.authority-text {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 2px 0 0;
}

/* =============================================================
   Sections base
   ============================================================= */
.section { padding: 130px 0; }
.section-head { margin-bottom: 64px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.section-lead { color: var(--text-soft); font-size: 1.02rem; max-width: 660px; margin: 22px 0 0; line-height: 1.7; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* =============================================================
   Featured (Modelos em Destaque)
   ============================================================= */
.section-featured { background: var(--bg); padding-top: 110px; }
.featured-grid {
  display: grid; gap: 36px;
  grid-template-columns: repeat(3, 1fr);
}
.featured-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  border-radius: var(--radius);
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.featured-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.featured-card:hover .featured-img img { transform: scale(1.06); }
.featured-body {
  padding: 28px 24px 32px;
  text-align: center;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.featured-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: .005em;
}
.featured-meta {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.featured-meta .dot { display: inline-block; margin: 0 8px; opacity: .55; color: var(--gold); }
.featured-card .btn {
  margin-top: auto;
  width: 100%;
  padding: 14px 18px;
  font-size: .68rem;
  letter-spacing: .22em;
}

/* =============================================================
   Cores
   ============================================================= */
.section-colors { background: var(--bg-cream); }
.colors-row {
  display: flex; flex-wrap: wrap; gap: 32px 24px; justify-content: center;
}
.color-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 90px;
  cursor: pointer;
  transition: transform var(--transition);
}
.color-item:hover { transform: translateY(-3px); }
.color-swatch {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(23,20,18,.08);
  box-shadow: inset 0 0 0 3px var(--bg-cream), 0 1px 4px rgba(23,20,18,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.color-item:hover .color-swatch {
  transform: scale(1.06);
  box-shadow: inset 0 0 0 3px var(--bg-cream), 0 4px 12px rgba(23,20,18,.1);
}
.color-item.is-active .color-swatch {
  box-shadow:
    inset 0 0 0 3px var(--bg-cream),
    0 0 0 1px var(--gold),
    0 0 0 4px rgba(153,26,94,.18),
    0 4px 12px rgba(23,20,18,.1);
}
.color-label {
  font-size: .7rem;
  letter-spacing: .08em;
  text-align: center;
  color: var(--text-soft);
  line-height: 1.25;
  font-family: var(--serif);
  font-style: italic;
}
.color-item.is-active .color-label {
  color: var(--text);
  font-weight: 600;
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: .04em;
}

/* =============================================================
   Catálogo
   ============================================================= */
.section-catalog { background: var(--bg); }
.catalog-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start;
  gap: 18px; margin-bottom: 40px;
}
.catalog-toolbar:empty { margin-bottom: 0; }
.filters-cat { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(23,20,18,.18);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-weight: 500;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.is-active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.active-color {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .82rem; color: var(--text-soft);
  font-family: var(--serif); font-style: italic;
  background: var(--bg-alt);
  border: 1px solid rgba(153,26,94,.18);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
}
.active-color strong { color: var(--text); font-weight: 600; font-style: normal; font-family: var(--sans); letter-spacing: .04em; font-size: .78rem; }

.products-grid {
  display: grid; gap: 36px 28px;
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  background: transparent;
  overflow: hidden;
  transition: transform var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); }
.product-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body {
  padding: 0 4px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.005em;
}
.product-meta {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.product-meta .dot { display: inline-block; margin: 0 8px; color: var(--gold); }
.product-card .btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px 14px;
  font-size: .66rem;
  letter-spacing: .22em;
}

.empty-state { text-align: center; color: var(--text-soft); padding: 60px 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }

/* =============================================================
   Como funciona
   ============================================================= */
.section-how { background: var(--bg-cream); position: relative; }
.section-how::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px; background: rgba(153,26,94,.2);
}
.how-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(4, 1fr);
}
.how-step {
  background: var(--bg);
  padding: 44px 30px 38px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid rgba(153,26,94,.14);
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  letter-spacing: -.02em;
  font-style: italic;
}
.how-num::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin-top: 16px;
}
.how-step h3 {
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 10px;
}
.how-step p {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* =============================================================
   Sobre
   ============================================================= */
.section-about { background: var(--bg); padding: 140px 0; }
.about-grid {
  display: grid; gap: 80px;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 7px var(--bg), inset 0 0 0 8px rgba(153,26,94,.35), 0 6px 22px rgba(23,20,18,.1);
  z-index: 2;
}
.badge-num {
  font-size: 3.6rem; font-weight: 600; color: var(--text);
  line-height: 1; letter-spacing: -.02em;
}
.badge-num sup { font-size: 1.3rem; color: var(--gold); top: -1.2em; }
.badge-label {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 6px;
  line-height: 1.4;
}
.about-text h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: 22px; }
.about-text .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.5;
}
.about-text p { color: var(--text-soft); margin: 0 0 30px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 26px; }
.about-list li {
  position: relative; padding-left: 26px; font-size: .92rem; color: var(--text);
}
.about-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px; width: 14px; height: 1px;
  background: var(--gold);
}

/* =============================================================
   CTA Final
   ============================================================= */
.section-cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(244, 181, 209, .55), transparent 60%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--champagne) 100%);
  z-index: -1;
}
.cta-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(153,26,94,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(153,26,94,.06) 0%, transparent 45%);
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 0; }
.cta-inner p { color: var(--text-soft); max-width: 540px; margin: 22px auto 38px; font-size: 1.02rem; }
.cta-inner .btn-whats { box-shadow: 0 8px 26px rgba(37,211,102,.28); }

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  background: var(--black);
  color: rgba(255,253,249,.7);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid; gap: 50px;
  grid-template-columns: 1.6fr 1fr 1fr;
  margin-bottom: 60px;
}
.site-footer .brand-mark { color: var(--white); font-size: 1.5rem; margin: 0 0 14px; }
.site-footer h4 {
  font-family: var(--sans); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brand-accent); margin: 0 0 18px; font-weight: 500;
}
.footer-text { font-size: .94rem; max-width: 380px; line-height: 1.7; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-info p { font-size: .94rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,253,249,.08);
  padding-top: 28px;
  font-size: .78rem;
  text-align: center;
  color: rgba(255,253,249,.42);
  letter-spacing: .04em;
}

/* =============================================================
   Float WhatsApp
   ============================================================= */
.float-whats {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whats); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .38);
  transition: background var(--transition), transform var(--transition);
}
.float-whats:hover { background: var(--whats-hover); transform: scale(1.08); }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1180px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-panel { padding: 60px 50px; }
  .hero-medal { width: 110px; height: 110px; top: -10px; }
  .medal-num { font-size: 2rem; }
}

@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .primary-nav ul { gap: 20px; }
  .primary-nav a { font-size: .68rem; }
}

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .header-whats { display: none; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(153, 26, 94, .14);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 28px 24px; }
  .primary-nav li { border-bottom: 1px solid rgba(23,20,18,.06); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: 14px 0; font-size: .82rem; }
  .primary-nav a::after { display: none; }
  .header-inner { gap: 12px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { aspect-ratio: 4 / 3; max-height: auto; }
  .hero-image img { object-position: center center; }
  .hero-panel { padding: 70px 28px 80px; }
  .hero-panel-inner { max-width: 100%; }
  .hero-medal {
    position: relative;
    margin: 0 auto 28px;
    top: auto; right: auto;
    transform: rotate(-4deg);
  }
  .hero-actions .btn { flex: 1 1 100%; max-width: 360px; }

  .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .authority-item:not(:last-child)::after { display: none; }

  .section { padding: 90px 0; }
  .section-head { margin-bottom: 50px; }
  .section-about { padding: 90px 0; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image { aspect-ratio: 4 / 4; max-height: 520px; margin: 0 auto; max-width: 520px; width: 100%; }
  .about-badge { width: 140px; height: 140px; bottom: -20px; right: -10px; }
  .badge-num { font-size: 2.6rem; }
  .badge-num sup { font-size: 1rem; }

  .colors-row {
    flex-wrap: nowrap; overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 0 18px;
    gap: 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -28px; margin-right: -28px;
    padding-left: 28px; padding-right: 28px;
  }
  .color-item { flex: 0 0 auto; scroll-snap-align: start; }
  .colors-row::-webkit-scrollbar { height: 4px; }
  .colors-row::-webkit-scrollbar-thumb { background: rgba(153,26,94,.4); border-radius: 999px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .catalog-toolbar { flex-direction: column; align-items: flex-start; }
  .filters-cat { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .chip { flex: 0 0 auto; }
}

@media (max-width: 520px) {
  .brand-mark { font-size: 1.35rem; }
  .brand-name { font-size: .58rem; letter-spacing: .26em; }
  .featured-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .product-name { font-size: 1.2rem; }
  .how-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .float-whats { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .hero-panel { padding: 60px 24px 70px; }
  /* Botões do catálogo/destaques podem quebrar linha em telas estreitas */
  .product-card .btn, .featured-card .btn {
    white-space: normal; line-height: 1.25;
    letter-spacing: .12em; padding-left: 8px; padding-right: 8px;
  }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Logo (header + footer)
   ============================================================= */
.brand-logo { display: flex; align-items: center; }
.brand-logo img { height: 46px; width: auto; display: block; }
.footer-logo { height: 54px; width: auto; margin: 0 0 18px; display: block; }
@media (max-width: 520px) {
  .brand-logo img { height: 38px; }
}

/* =============================================================
   Featured — cartão placeholder de noiva
   ============================================================= */
.featured-card.is-placeholder { border: 1px dashed rgba(153, 26, 94, .28); background: var(--bg-alt); }
.featured-card.is-placeholder .featured-img {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(244,181,209,.35), transparent 70%),
    var(--bg-cream);
}
.placeholder-mark {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--gold); text-align: center; padding: 20px;
}
.placeholder-mark svg { width: 42px; height: 42px; opacity: .8; }
.placeholder-mark span {
  font-family: var(--sans); font-size: .62rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--text-mute);
}

/* =============================================================
   Mapa (rodapé)
   ============================================================= */
.footer-map {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, .12);
  line-height: 0;
}
.footer-map iframe { width: 100%; height: 180px; border: 0; display: block; filter: saturate(1.05); }
.footer-maplink {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-size: .82rem; color: var(--brand-accent);
  letter-spacing: .04em; transition: color var(--transition);
}
.footer-maplink:hover { color: var(--white); }

/* =============================================================
   Reveal-on-scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .7, .2, 1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-image img { animation: none; }
}

/* =============================================================
   Lightbox
   ============================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(23, 20, 18, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  padding: 10px;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox:not([hidden]) .lightbox-content img {
  transform: scale(1);
}
.clickable-img {
  cursor: pointer;
}

/* =============================================================
   Vestido Destaque Exclusivo
   ============================================================= */
.section-highlight { background: var(--bg-alt); padding: 110px 0; border-top: 1px solid rgba(153, 26, 94, .1); }
.highlight-grid {
  display: grid; gap: 60px;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.highlight-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.highlight-image img { width: 100%; height: 100%; object-fit: cover; }
.highlight-text h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 22px; color: var(--brand-primary); }
.scarcity-alert {
  display: inline-flex;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  background: rgba(153, 26, 94, .08);
  color: var(--brand-primary);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(153, 26, 94, .2);
}
.scarcity-alert svg { flex-shrink: 0; margin-top: 2px; }
.highlight-text p { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 26px; line-height: 1.7; max-width: 90%; }
.highlight-actions { margin-top: 32px; }

@media (max-width: 880px) {
  .highlight-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .highlight-image { max-width: 480px; margin: 0 auto; width: 100%; }
  .highlight-text p { max-width: 100%; margin-left: auto; margin-right: auto; }
}

@media (max-width: 520px) {
  .section-highlight { padding: 80px 0; }
  .highlight-grid { gap: 32px; }
  .scarcity-alert {
    padding: 12px 16px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
  .highlight-actions .btn {
    white-space: normal;
    padding: 16px 20px;
  }
}