:root {
  --navy: #04111f;
  --navy-2: #071c30;
  --cream: #f7efe4;
  --cream-2: #fffaf3;
  --gold: #c98724;
  --gold-light: #edbd67;
  --blue: #0e2b49;
  --text: #172333;
  --white: #fff;
  --shadow: 0 24px 60px rgba(0, 0, 0, .18);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 999; background: var(--gold); color: #09111a; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(2, 11, 20, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(237, 189, 103, .18);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-mark { font-family: "Cormorant Garamond", serif; font-size: 32px; color: var(--gold-light); }
.brand-name { font-family: "Cormorant Garamond", serif; font-size: 22px; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-links a {
  min-width: 150px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  border: 1px solid rgba(237,189,103,.85);
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(201,135,36,.15), 0 0 18px rgba(201,135,36,.08);
  transition: .25s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { background: var(--gold); color: #06101a; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,135,36,.28); }
.nav-links a.nav-buy {
  background: var(--gold);
  color: #06101a;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 8px 22px rgba(201,135,36,.22);
}
.nav-links a.nav-buy:hover, .nav-links a.nav-buy:focus-visible {
  filter: brightness(1.08);
}

.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 28px; height: 2px; background: var(--gold-light); margin: 6px 0; }

.hero {
  min-height: 100svh;
  padding: 130px 0 34px;
  color: #f8efe3;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 30%, rgba(201,135,36,.18), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(40,132,199,.12), transparent 23%),
    linear-gradient(135deg, #02070d 0%, #071522 52%, #02070d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}
.hero-stars { position: absolute; inset: 0; opacity: .55; background-image: radial-gradient(circle, rgba(237,189,103,.8) 0 1px, transparent 1.5px); background-size: 62px 62px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1.4fr .85fr; gap: 38px; align-items: center; }
.ethos-column { display: grid; gap: 6px; }
.value-card { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(201,135,36,.5); }
.value-card:last-child { border-bottom: 0; }
.value-icon { width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); font-size: 24px; }
.value-card h2 { margin: 0 0 4px; font: 700 22px/1.1 "Cormorant Garamond", serif; color: var(--gold-light); text-transform: uppercase; letter-spacing: .08em; }
.value-card p { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 17px; line-height: 1.35; color: #e9ded0; }
.hero-center { text-align: center; }
.symbol { position: relative; width: min(350px, 100%); margin: 0 auto 14px; }
.hero-logo { width: min(330px, 92%); height: auto; display: block; margin: 0 auto 20px; object-fit: contain; border-radius: 18px; box-shadow: 0 0 42px rgba(201,135,36,.22); }
.eyebrow { margin: 0 0 10px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: 13px; }
.eyebrow.dark { color: #a96513; }
.hero h1 { margin: 0; font: 700 clamp(58px, 7vw, 96px)/.88 "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: .04em; color: #fff4e3; }
.hero-lead { margin: 22px auto 8px; max-width: 610px; font: 600 20px/1.45 "Cormorant Garamond", serif; letter-spacing: .04em; }
.hero-signature { color: var(--gold-light); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.pillars span { border-left: 1px solid rgba(201,135,36,.6); padding: 0 14px; font: 700 13px "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: .1em; color: #e7c99b; }
.hero-book { text-align: center; position: relative; }
.hero-book img { width: min(255px, 84%); max-height: 390px; object-fit: contain; object-position: center; margin: 0 auto; filter: drop-shadow(0 20px 26px rgba(0,0,0,.42)); transform: none; position: relative; z-index: 2; border-radius: 4px; }
.book-halo { position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(237,189,103,.65); box-shadow: 0 0 48px rgba(201,135,36,.25); left: 50%; top: 82px; transform: translateX(-50%); }
.mini-label { margin: 22px 0 4px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
.hero-book h2 { margin: 0 auto 18px; max-width: 280px; font: 700 27px/1.1 "Cormorant Garamond", serif; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 10px; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; font-weight: 800; transition: .25s ease; }
.btn-primary { border: 1px solid var(--gold-light); color: var(--gold-light); background: rgba(4,17,31,.78); }
.btn-primary:hover { background: var(--gold); color: #05101b; transform: translateY(-2px); }
.social-bar { position: relative; margin-top: 44px; min-height: 62px; display: flex; align-items: center; justify-content: center; gap: clamp(30px,7vw,120px); border: 1px solid rgba(201,135,36,.5); border-radius: 999px; background: rgba(2,10,17,.62); }
.social-bar a { color: #f0d09d; text-decoration: none; }
.social-logo { font: 700 28px "Cormorant Garamond", serif; color: var(--gold-light); }

.book-section { padding: 90px 0 70px; background: linear-gradient(180deg, #fff9f1, #f2e5d4); position: relative; overflow: hidden; }
.book-section::before { content: ""; position: absolute; left: -8%; top: 0; width: 50%; height: 100%; background: radial-gradient(circle at 35% 25%, rgba(219,177,110,.24), transparent 55%); }
.book-intro { position: relative; display: grid; grid-template-columns: .9fr 1.35fr; gap: 70px; align-items: center; }
.book-visual { position: relative; }
.book-visual img { width: min(400px, 94%); max-height: 620px; object-fit: contain; object-position: center; margin: auto; filter: drop-shadow(0 30px 30px rgba(52,38,24,.24)); transform: none; }
.book-shadow { position: absolute; left: 12%; right: 12%; bottom: -18px; height: 36px; background: rgba(43,30,18,.22); filter: blur(20px); border-radius: 50%; }
.book-copy h2, .purchase-section h2 { margin: 0; font: 700 clamp(44px,5vw,72px)/.98 "Cormorant Garamond", serif; color: var(--blue); }
.author-name { color: #b56f1c; text-transform: uppercase; letter-spacing: .18em; font: 700 18px "Cormorant Garamond", serif; }
.book-copy p { font-size: 18px; }
blockquote { margin: 30px 0; padding: 22px 26px; color: #fff; background: var(--blue); border: 1px solid var(--gold); border-radius: 18px; font: 600 20px/1.4 "Cormorant Garamond", serif; text-align: center; box-shadow: var(--shadow); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(175,114,29,.28); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.5); }
.stats div { padding: 18px 12px; text-align: center; border-right: 1px solid rgba(175,114,29,.22); }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; font: 700 28px "Cormorant Garamond", serif; color: var(--blue); }
.stats span { display: block; margin-top: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.sample-reflection { position: relative; margin-top: 72px; display: grid; grid-template-columns: .72fr 1.55fr; gap: 46px; padding: 42px; border: 1px solid rgba(175,114,29,.34); border-radius: 22px; background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(246,230,207,.72)); box-shadow: 0 22px 55px rgba(75,48,20,.12); }
.sample-reflection::before { content: "“"; position: absolute; right: 28px; top: -26px; color: rgba(175,114,29,.18); font: 700 150px/1 "Cormorant Garamond", serif; pointer-events: none; }
.sample-reflection-heading { align-self: start; padding-right: 28px; border-right: 1px solid rgba(175,114,29,.26); }
.sample-reflection-heading h3 { margin: 8px 0 10px; color: var(--blue); font: 700 clamp(34px,4vw,52px)/1 "Cormorant Garamond", serif; }
.sample-subtitle { margin: 0; color: #a96513; font: 600 23px/1.25 "Cormorant Garamond", serif; }
.sample-reflection-text { position: relative; z-index: 1; }
.sample-reflection-text p { margin: 0 0 17px; font-size: 17px; line-height: 1.75; color: #303842; }
.sample-reflection-text p:last-child { margin-bottom: 0; }
.sample-question { padding: 20px 22px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: var(--blue); color: #fff !important; font: 600 20px/1.5 "Cormorant Garamond", serif !important; }

.themes-grid { margin-top: 70px; display: grid; grid-template-columns: 1.4fr .7fr; gap: 50px; align-items: center; }
.themes-grid h3 { font: 700 34px "Cormorant Garamond", serif; color: #a96513; text-transform: uppercase; letter-spacing: .08em; }
.themes { list-style: none; padding: 0; margin: 0; counter-reset: theme; display: grid; gap: 14px; }
.themes li { counter-increment: theme; display: grid; grid-template-columns: 42px 1fr; align-items: start; column-gap: 12px; }
.themes li::before { content: counter(theme, upper-roman); width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: var(--gold-light); display: grid; place-items: center; font: 700 13px "Cormorant Garamond", serif; }
.themes strong { color: var(--blue); text-transform: uppercase; font-family: "Cormorant Garamond", serif; font-size: 20px; }
.themes span { grid-column: 2; color: #4d5561; }
.reflection-card { background: rgba(255,255,255,.55); border: 1px solid rgba(175,114,29,.3); border-radius: 18px; padding: 34px; text-align: center; font: 600 22px/1.45 "Cormorant Garamond", serif; color: var(--blue); }

.dedication-section { padding: 88px 0; background: linear-gradient(145deg, #fffaf4, #f3e2ca); position: relative; overflow: hidden; }
.dedication-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 15%, rgba(201,135,36,.13), transparent 30%), radial-gradient(circle at 90% 85%, rgba(7,31,51,.09), transparent 34%); pointer-events: none; }
.dedication-card { position: relative; display: grid; grid-template-columns: .55fr 1.45fr; gap: 56px; align-items: start; padding: 54px; border: 1px solid rgba(175,114,29,.34); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 24px 60px rgba(75,48,20,.12); }
.dedication-heading { position: sticky; top: 110px; text-align: center; padding: 34px 24px; border-radius: 18px; background: linear-gradient(145deg, #071d30, #0b3150); color: #fff; }
.dedication-heading .eyebrow { color: var(--gold-light); }
.dedication-heading h2 { margin: 12px 0 20px; color: #fff4df; font: 700 clamp(44px,5vw,66px)/1 "Cormorant Garamond", serif; }
.dedication-ornament { width: 58px; height: 58px; margin: 24px auto 0; border: 1px solid rgba(237,189,103,.7); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); font-size: 24px; }
.dedication-text p { margin: 0 0 20px; color: #303842; font-size: 17px; line-height: 1.82; }
.dedication-highlight { margin: 32px 0; padding: 28px 30px; border-left: 5px solid var(--gold); border-radius: 0 16px 16px 0; background: #071d30; }
.dedication-highlight p { color: #f4e9da; }
.dedication-highlight p:first-child { color: var(--gold-light); font: 700 26px/1.35 "Cormorant Garamond", serif; }
.dedication-closing { margin-top: 34px !important; padding-top: 28px; border-top: 1px solid rgba(175,114,29,.3); color: #8a5817 !important; font: 700 23px/1.5 "Cormorant Garamond", serif !important; text-align: center; }

.author-section { padding: 82px 0; background: linear-gradient(135deg, #061522, #0b2a45); color: #f8efe3; }
.author-card { display: grid; grid-template-columns: 360px 1fr; gap: 52px; align-items: center; padding: 38px; border: 1px solid rgba(237,189,103,.52); border-radius: var(--radius); background: rgba(2,12,21,.45); box-shadow: var(--shadow); }
.author-photo-wrap { aspect-ratio: 1/1; overflow: hidden; border-radius: 50%; border: 3px solid var(--gold); box-shadow: 0 0 0 8px rgba(201,135,36,.12); }
.author-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 17%; }
.author-copy h2 { margin: 0 0 20px; font: 700 58px/1 "Cormorant Garamond", serif; color: var(--gold-light); }
.author-copy p { color: #ebdfd1; }
.text-link { display: inline-flex; gap: 10px; color: var(--gold-light); text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.full-bio { margin-top: 26px; }
details { border: 1px solid rgba(237,189,103,.42); border-radius: 16px; background: rgba(2,12,21,.35); }
summary { cursor: pointer; padding: 18px 22px; color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.full-bio-text { padding: 4px 26px 26px; max-width: 880px; }
.full-bio-text p { color: #e9dfd5; }


.community-section { padding: 78px 0; background: linear-gradient(135deg, #f7eee2, #fffaf4); position: relative; overflow: hidden; }
.community-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 50%, rgba(37,211,102,.11), transparent 30%), radial-gradient(circle at 88% 30%, rgba(201,135,36,.11), transparent 32%); pointer-events: none; }
.community-card { position: relative; display: grid; grid-template-columns: 190px 1fr; gap: 44px; align-items: center; padding: 42px 46px; border: 1px solid rgba(175,114,29,.28); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 24px 60px rgba(50,35,20,.12); }
.community-logo-link { width: 160px; height: 160px; margin-inline: auto; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(145deg, #25d366, #128c7e); box-shadow: 0 18px 38px rgba(18,140,126,.24); transition: transform .25s ease, box-shadow .25s ease; }
.community-logo-link:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 24px 48px rgba(18,140,126,.32); }
.community-logo-link img { width: 96px; height: 96px; }
.community-copy h2 { margin: 0 0 16px; max-width: 850px; font: 700 clamp(36px,4.4vw,60px)/1 "Cormorant Garamond", serif; color: var(--blue); }
.community-copy p { max-width: 900px; font-size: 18px; color: #394552; }
.community-note { font-family: "Cormorant Garamond", serif; font-size: 22px !important; font-weight: 600; color: #7b541f !important; }
.btn-whatsapp { gap: 11px; margin-top: 8px; color: #fff; background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 12px 28px rgba(18,140,126,.24); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(18,140,126,.34); }
.btn-whatsapp img { width: 25px; height: 25px; }

.purchase-section { padding: 80px 0 90px; background: var(--cream-2); text-align: center; }
.purchase-section h2 { max-width: 900px; margin-inline: auto; font-size: clamp(38px,4.8vw,64px); }
.purchase-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.purchase-card { display: grid; grid-template-columns: 92px 1fr; gap: 24px; align-items: center; text-align: left; background: #fff; border: 1px solid rgba(175,114,29,.28); border-radius: 20px; padding: 30px; box-shadow: 0 18px 45px rgba(50,35,20,.09); }
.purchase-icon { width: 78px; height: 78px; border-radius: 50%; background: var(--blue); border: 2px solid var(--gold); color: var(--gold-light); display: grid; place-items: center; font-size: 34px; }
.purchase-card h3 { margin: 0; font: 700 32px "Cormorant Garamond", serif; color: var(--blue); }
.purchase-card p { margin: 6px 0 18px; }
.btn-dark { color: #fff; background: linear-gradient(135deg, #bd6f0c, #d69b32); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(183,106,12,.28); }

.footer { padding: 34px 0; background: #04111f; color: #e9ddcc; border-top: 1px solid rgba(237,189,103,.4); }
.footer-grid { display: grid; grid-template-columns: .7fr 1.6fr 1fr; gap: 32px; align-items: center; }
.footer-brand { color: var(--gold-light); font: 700 24px "Cormorant Garamond", serif; }
.footer-brand span { font-size: 36px; margin-right: 10px; }
.neurodiversity-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: .76;
  filter: saturate(.78);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.neurodiversity-mark svg { display: block; width: 100%; height: auto; overflow: visible; }
.neurodiversity-mark-header { width: 31px; margin-left: -3px; }
.brand:hover .neurodiversity-mark-header { opacity: .98; filter: saturate(1); transform: translateY(-1px); }
.neurodiversity-mark-footer { width: 34px; margin-left: 8px; vertical-align: middle; }
.footer-brand:hover .neurodiversity-mark-footer { opacity: .98; filter: saturate(1); }


.footer p { margin: 0; text-align: center; }
.footer-links { display: grid; gap: 4px; justify-items: end; }
.footer-links a { color: #f1dfc4; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .ethos-column { grid-row: 2; grid-column: 1 / -1; grid-template-columns: repeat(2,1fr); }
  .hero-center { grid-column: 1; }
  .hero-book { grid-column: 2; }
  .book-intro { gap: 36px; }
  .author-card { grid-template-columns: 300px 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(175,114,29,.22); }
}

@media (max-width: 820px) {
  .site-header { background: rgba(2,11,20,.95); }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 74px; left: 18px; right: 18px; padding: 16px; border-radius: 16px; background: #071522; border: 1px solid rgba(237,189,103,.3); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links a { width: 100%; }
  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-center, .hero-book, .ethos-column { grid-column: auto; }
  .hero-book { order: 2; }
  .ethos-column { order: 3; grid-template-columns: 1fr; }
  .book-intro, .themes-grid, .dedication-card, .author-card, .community-card, .purchase-grid { grid-template-columns: 1fr; }
  .community-card { text-align: center; }
  .dedication-heading { position: static; }
  .community-copy p { margin-inline: auto; }
  .book-copy { text-align: center; }
  .author-card { text-align: center; }
  .author-photo-wrap { width: min(320px, 86vw); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-items: center; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-name { display: none; }
  .neurodiversity-mark-header { width: 28px; margin-left: -5px; }
  .hero h1 { font-size: 56px; }
  .symbol { width: min(300px, 92vw); margin-inline: auto; }
  .social-bar { flex-direction: column; gap: 2px; padding: 14px; border-radius: 20px; }
  .book-section, .dedication-section, .author-section, .community-section, .purchase-section { padding-block: 62px; }
  .community-card { padding: 28px 22px; gap: 26px; }
  .dedication-card { padding: 28px 22px; gap: 28px; }
  .dedication-highlight { padding: 24px 20px; }
  .community-logo-link { width: 132px; height: 132px; }
  .community-logo-link img { width: 78px; height: 78px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .author-card { padding: 22px; }
  .author-copy h2 { font-size: 44px; }
  .purchase-card { grid-template-columns: 1fr; text-align: center; }
  .purchase-icon { margin-inline: auto; }
}

@media (max-width: 800px) {
  .sample-reflection { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; }
  .sample-reflection-heading { padding-right: 0; padding-bottom: 24px; border-right: 0; border-bottom: 1px solid rgba(175,114,29,.26); text-align: center; }
  .sample-reflection::before { right: 10px; top: -16px; font-size: 110px; }
}


.epicuro-quote { margin-top: 1.5rem; font-style: italic; } .epicuro-quote cite { display:block; margin-top:.5rem; font-style:normal; }

/* Produtos — carteiras em formato de fita K7 */
.products-section { padding: 88px 0 94px; background: linear-gradient(145deg, #f6eee2 0%, #fffaf4 45%, #efe1cf 100%); position: relative; overflow: hidden; }
.products-section::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; top: -220px; right: -130px; background: radial-gradient(circle, rgba(201,135,36,.20), transparent 68%); pointer-events: none; }
.products-heading { max-width: 900px; margin: 0 auto 42px; text-align: center; position: relative; }
.products-heading h2 { margin: 8px 0 20px; color: var(--blue); font: 700 clamp(42px,5.2vw,68px)/.98 "Cormorant Garamond", serif; }
.products-heading p { color: #3d4650; font-size: 17px; line-height: 1.8; }
.products-lead { font-size: 19px !important; }
.btn-marketplace { margin-top: 14px; color: #fff; background: linear-gradient(135deg, #234f9b, #183568); box-shadow: 0 14px 30px rgba(24,53,104,.23); }
.btn-marketplace:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(24,53,104,.32); }
.products-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: stretch; }
.product-image { grid-column: span 4; margin: 0; overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid rgba(104,74,34,.18); box-shadow: 0 16px 36px rgba(66,43,18,.10); transition: transform .25s ease, box-shadow .25s ease; }
.product-image:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(66,43,18,.16); }
.product-image img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #fff; }
.product-image figcaption { padding: 13px 16px 15px; color: var(--blue); font-weight: 700; text-align: center; }
.product-image-featured, .product-image-open { grid-column: span 6; }
.product-image-open img { object-fit: contain; padding: 12px; }

@media (max-width: 820px) {
  .products-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-image, .product-image-featured, .product-image-open { grid-column: auto; }
}
@media (max-width: 560px) {
  .products-section { padding-block: 62px; }
  .products-gallery { grid-template-columns: 1fr; gap: 14px; }
  .products-heading { margin-bottom: 30px; }
  .btn-marketplace { width: 100%; justify-content: center; }
}

/* Ajustes de navegação e galeria — versão compacta para desktop */
@media (min-width: 821px) {
  .nav { gap: 16px; }
  .brand { flex: 0 0 auto; gap: 8px; }
  .brand-mark { font-size: 28px; }
  .brand-name { font-size: 19px; letter-spacing: .05em; }
  .neurodiversity-mark-header { width: 38px; }
  .nav-links { flex: 1 1 auto; justify-content: flex-end; gap: 7px; }
  .nav-links a {
    min-width: 0;
    padding: 10px 11px;
    font-size: 11px;
    letter-spacing: .055em;
    white-space: nowrap;
  }
}

.products-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.product-image,
.product-image-featured,
.product-image-open {
  grid-column: auto;
  display: flex;
  flex-direction: column;
}
.product-image img,
.product-image-open img {
  width: 100%;
  height: 250px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 14px;
  background: #fff;
}
.product-image figcaption {
  margin-top: auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-open {
  grid-column: 2;
}

@media (max-width: 820px) {
  .products-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
  .product-image-open { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .product-image img, .product-image-open img { height: 230px; }
}
@media (max-width: 560px) {
  .products-gallery { grid-template-columns: 1fr; }
  .product-image-open { grid-column: auto; width: 100%; }
  .product-image img, .product-image-open img { height: 240px; }
}


/* Destaque de apoio ao projeto Éthos Nexum */
.products-support {
  max-width: 820px;
  margin: 28px auto 18px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  text-align: left;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(175,114,29,.28);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(66,43,18,.08);
}
.products-support-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #c58a31, #e1b56b);
  color: #fff;
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(151,96,24,.20);
}
.products-support h3 {
  margin: 0 0 9px;
  color: var(--blue);
  font: 700 27px/1.08 "Cormorant Garamond", serif;
}
.products-support p { margin: 0; font-size: 15.5px; line-height: 1.7; color: #3d4650; }
.products-support-thanks { margin-top: 8px !important; color: #8b5b18 !important; }
.products-purchase-note { margin: 12px 0 0; font-size: 14px !important; font-weight: 700; color: #7d541d !important; letter-spacing: .01em; }
.products-purchase-note span { color: #a94d43; }

@media (max-width: 560px) {
  .products-support { grid-template-columns: 1fr; text-align: center; padding: 22px 18px; }
  .products-support-icon { margin-inline: auto; }
  .products-support h3 { font-size: 25px; }
}


/* Botão flutuante de contato pelo WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  min-width: 58px;
  height: 58px;
  padding: 0 18px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 30px rgba(18, 140, 126, .36);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.whatsapp-float img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 17px 36px rgba(18, 140, 126, .45);
  filter: brightness(1.04);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255,255,255,.95);
  outline-offset: 3px;
}
@media (max-width: 620px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    min-width: 58px;
    padding: 0;
  }
  .whatsapp-float span { display: none; }
}


/* Música original — Entre o Ser e o Existir */
.original-song {
  display: grid;
  grid-template-columns: minmax(220px, 290px) 1fr;
  gap: 38px;
  align-items: center;
  margin: 0 auto 62px;
  padding: 28px;
  border: 1px solid rgba(222, 192, 126, .34);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,247,237,.055), rgba(0,0,0,.18));
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
  text-align: left;
}
.original-song-cover-wrap {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(0,0,0,.35);
}
.original-song-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.original-song-eyebrow { color: #e5c98e !important; }
.original-song-content h2 {
  margin: 5px 0 10px;
  color: #fff7ed;
  font: 700 clamp(38px, 5vw, 62px)/1.02 "Cormorant Garamond", serif;
}
.original-song-tagline {
  margin: 0 0 16px;
  color: #e5e8e9;
  font-size: 18px;
  line-height: 1.65;
}
.original-song-quote {
  margin: 18px 0;
  padding: 0 0 0 18px;
  border-left: 2px solid #c9a962;
  color: #e5c98e;
  font: 600 25px/1.45 "Cormorant Garamond", serif;
}
.original-song-content > p:not(.eyebrow):not(.original-song-tagline):not(.original-song-note) {
  color: #dce6e9;
  font-size: 16px;
  line-height: 1.78;
}
.original-song-player {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
}
.song-play-button {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(229,201,142,.55);
  border-radius: 50%;
  background: #e5c98e;
  color: #071522;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.24);
  transition: transform .2s ease, filter .2s ease;
}
.song-play-button:hover, .song-play-button:focus-visible {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
}
.song-player-main { flex: 1; min-width: 0; }
.song-player-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 7px;
  color: #fff7ed;
  font-size: 13px;
}
.song-player-label span { color: #aab8bf; }
.ethos-audio { width: 100%; height: 42px; }
.original-song-note {
  margin: 15px 0 0 !important;
  color: #e5c98e !important;
  font: 600 20px/1.5 "Cormorant Garamond", serif !important;
}
@media (max-width: 720px) {
  .original-song {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 22px;
  }
  .original-song-cover-wrap { max-width: 330px; }
  .original-song-player { align-items: flex-start; }
  .song-player-label { flex-direction: column; gap: 2px; }
}

/* Músicas — playlist oficial no Spotify */
.music-section {
  padding: 82px 0;
  background: linear-gradient(145deg, #071522 0%, #0b1f2e 55%, #06111d 100%);
  position: relative;
  overflow: hidden;
}
.music-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  top: -240px;
  left: -140px;
  background: radial-gradient(circle, rgba(30,215,96,.18), transparent 68%);
  pointer-events: none;
}
.music-card {
  position: relative;
  max-width: 940px;
  padding: 46px 48px;
  text-align: center;
  border: 1px solid rgba(30,215,96,.30);
  border-radius: 26px;
  background: rgba(7,21,34,.74);
  box-shadow: 0 26px 64px rgba(0,0,0,.25);
}
.music-heading .eyebrow { color: #7eeaa4; }
.music-heading h2 {
  margin: 8px auto 28px;
  max-width: 820px;
  color: #fff7ed;
  font: 700 clamp(40px,5vw,64px)/1 "Cormorant Garamond", serif;
}
.spotify-playlist-link {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 14px 22px 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-radius: 999px;
  background: #1ed760;
  color: #06101a;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 15px 34px rgba(30,215,96,.22);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.spotify-playlist-link img { width: 58px; height: 58px; flex: 0 0 auto; }
.spotify-playlist-link:hover, .spotify-playlist-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(30,215,96,.30);
  filter: brightness(1.04);
}
.music-copy { max-width: 790px; margin: 0 auto; }
.music-copy p { color: #dce6e9; font-size: 17px; line-height: 1.8; }
.music-copy strong { color: #fff; }
.music-note { margin-top: 20px; color: #95ebb3 !important; font-family: "Cormorant Garamond", serif; font-size: 22px !important; font-weight: 600; }
@media (max-width: 560px) {
  .music-section { padding-block: 62px; }
  .music-card { padding: 32px 20px; }
  .spotify-playlist-link { width: 100%; justify-content: center; padding-right: 14px; font-size: 15px; }
  .spotify-playlist-link img { width: 50px; height: 50px; }
}

/* Produto — Perguntas que Incomodam */
.cards-product-section {
  padding: 86px 0;
  background: linear-gradient(145deg, #f5efe5 0%, #fffaf1 50%, #eadcc6 100%);
}
.cards-product-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}
.cards-product-visual { text-align: center; }
.cards-product-visual img {
  width: min(100%, 560px);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(35,24,12,.18));
}
.cards-product-copy h2 {
  margin: 8px 0 18px;
  color: #17130f;
  font: 700 clamp(42px,5vw,68px)/.98 "Cormorant Garamond", serif;
}
.cards-product-copy > p { color: #3c3329; font-size: 17px; line-height: 1.78; }
.cards-product-tagline { font-family: "Cormorant Garamond", serif; font-size: 24px !important; color: #8a641d !important; }
.cards-product-copy blockquote {
  margin: 26px 0;
  padding: 20px 24px;
  border-left: 3px solid #b8892f;
  background: rgba(255,255,255,.52);
  color: #241d16;
  font: 600 22px/1.45 "Cormorant Garamond", serif;
}
.cards-product-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cards-product-meta span { padding: 9px 14px; border: 1px solid rgba(139,100,29,.35); border-radius: 999px; color: #6d4d15; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.46); }
@media (max-width: 780px) {
  .cards-product-section { padding: 64px 0; }
  .cards-product-card { grid-template-columns: 1fr; }
  .cards-product-visual img { width: min(86vw, 480px); }
  .cards-product-copy { text-align: center; }
  .cards-product-copy blockquote { text-align: left; }
  .cards-product-meta { justify-content: center; }
}

.cards-use-highlight {
  margin: 26px 0;
  padding: 24px 26px;
  border-left: 4px solid #b88a38;
  border-radius: 10px;
  background: rgba(184, 138, 56, 0.10);
}
.cards-use-highlight h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  color: #6f4c16;
}
.cards-use-highlight p { margin: 0 0 12px; }
.cards-use-highlight p:last-child { margin-bottom: 0; }


/* =========================================
   LIVRO — PAULO PARA ALÉM DA RELIGIÃO
   Integrado ao Site 30 / Loja
   ========================================= */
.book-purchase {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(175,114,29,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 14px 34px rgba(52,38,24,.08);
}
.purchase-label {
  margin: 0 0 12px;
  color: #a96513;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.book-purchase-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.book-purchase-buttons .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
}
.paulo-purchase {
  max-width: 790px;
  background: rgba(255,255,255,.045);
  border-color: rgba(212,162,84,.32);
}
.paulo-purchase .purchase-label { color: #d4a254; }
@media (max-width: 820px) {
  .book-purchase-buttons { justify-content: center; }
}
@media (max-width: 560px) {
  .book-purchase-buttons { flex-direction: column; }
  .book-purchase-buttons .btn { width: 100%; }
}

.paulo-book-section { padding: 92px 0; position: relative; overflow: hidden; background: radial-gradient(circle at 78% 34%, rgba(190,132,48,.16), transparent 32%), linear-gradient(145deg, #080b0d 0%, #11100e 55%, #07090b 100%); }
.paulo-book-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28; background-image: linear-gradient(rgba(211,160,78,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(211,160,78,.035) 1px, transparent 1px); background-size: 42px 42px; }
.paulo-book-grid { position: relative; display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(42px,7vw,88px); align-items: center; }
.paulo-book-cover { position: relative; max-width: 430px; margin-inline: auto; }
.paulo-book-cover img { display: block; width: 100%; height: auto; border-radius: 4px; box-shadow: 0 30px 70px rgba(0,0,0,.58), 0 0 0 1px rgba(211,160,78,.18); }
.paulo-book-copy { color: #e8e0d5; }
.paulo-eyebrow { color: #d4a254 !important; }
.paulo-book-copy h2 { margin: 7px 0 5px; color: #f2e9db; font: 700 clamp(44px,5vw,70px)/.96 "Cormorant Garamond", serif; max-width: 780px; }
.paulo-subtitle { margin: 0 0 25px !important; color: #d4a254 !important; font-family: "Cormorant Garamond", serif; font-size: clamp(21px,2.2vw,29px) !important; font-weight: 600; line-height: 1.2 !important; }
.paulo-book-copy > p { max-width: 790px; margin: 0 0 16px; color: #d9d2c8; font-size: 17px; line-height: 1.78; }
.paulo-book-copy strong { color: #fff4df; }
.paulo-book-copy blockquote { margin: 28px 0 24px; padding: 22px 0 22px 24px; max-width: 720px; border-left: 2px solid #c99545; color: #e9c27e; font: 600 clamp(24px,2.8vw,34px)/1.22 "Cormorant Garamond", serif; }
@media (max-width: 820px) {
  .paulo-book-section { padding: 68px 0; }
  .paulo-book-grid { grid-template-columns: 1fr; gap: 42px; }
  .paulo-book-cover { max-width: 360px; }
  .paulo-book-copy { text-align: center; }
  .paulo-book-copy > p, .paulo-book-copy h2, .paulo-book-copy blockquote { margin-left: auto; margin-right: auto; }
  .paulo-book-copy blockquote { padding-left: 0; border-left: 0; border-top: 1px solid rgba(201,149,69,.45); border-bottom: 1px solid rgba(201,149,69,.45); }
}
@media (max-width: 560px) {
  .book-purchase-buttons { flex-direction: column; }
  .book-purchase-buttons .btn { width: 100%; }
}

/* =========================================
   LIVRO — O QUE APRENDEMOS A ACREDITAR
   ========================================= */
.acreditar-book-section { padding: 92px 0; position: relative; overflow: hidden; background: radial-gradient(circle at 20% 35%, rgba(190,132,48,.14), transparent 32%), linear-gradient(145deg, #080b0d 0%, #12100d 55%, #07090b 100%); color: #e8e0d5; }
.acreditar-book-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(211,160,78,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(211,160,78,.035) 1px, transparent 1px); background-size: 42px 42px; }
.acreditar-book-grid { position: relative; display: grid; grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr); gap: clamp(42px,7vw,88px); align-items: center; }
.acreditar-book-cover { position: relative; max-width: 430px; margin-inline: auto; }
.acreditar-book-cover img { display:block; width:100%; height:auto; border-radius:4px; box-shadow:0 30px 70px rgba(0,0,0,.58),0 0 0 1px rgba(211,160,78,.18); }
.acreditar-book-copy { color:#e8e0d5; }
.acreditar-eyebrow { color:#d4a254 !important; }
.acreditar-book-copy h2 { margin:7px 0 5px; color:#f2e9db; font:700 clamp(44px,5vw,70px)/.96 "Cormorant Garamond",serif; max-width:780px; }
.acreditar-subtitle { margin:0 0 25px !important; color:#d4a254 !important; font-family:"Cormorant Garamond",serif; font-size:clamp(21px,2.2vw,29px) !important; font-weight:600; line-height:1.2 !important; }
.acreditar-book-copy > p { max-width:790px; margin:0 0 16px; color:#d9d2c8; font-size:17px; line-height:1.78; }
.acreditar-book-copy strong { color:#fff4df; }
.acreditar-book-copy blockquote { margin:28px 0 24px; padding:22px 0 22px 24px; max-width:720px; border-left:2px solid #c99545; color:#e9c27e; font:600 clamp(24px,2.8vw,34px)/1.22 "Cormorant Garamond",serif; }
.acreditar-purchase { max-width:790px; background:rgba(255,255,255,.045); border-color:rgba(212,162,84,.32); }
.acreditar-purchase .purchase-label { color:#d4a254; }
@media (max-width:820px) { .acreditar-book-section{padding:68px 0;} .acreditar-book-grid{grid-template-columns:1fr;gap:42px;} .acreditar-book-cover{max-width:360px;} .acreditar-book-copy{text-align:center;} .acreditar-book-copy>p,.acreditar-book-copy h2,.acreditar-book-copy blockquote{margin-left:auto;margin-right:auto;} .acreditar-book-copy blockquote{padding-left:0;border-left:0;border-top:1px solid rgba(201,149,69,.45);border-bottom:1px solid rgba(201,149,69,.45);} }

/* SOBRE A BÍBLIA — bloco expansível */
.biblia-book-section { background: radial-gradient(circle at 78% 34%, rgba(190,132,48,.16), transparent 32%), linear-gradient(145deg, #080b0d 0%, #11100e 55%, #07090b 100%); }
.biblia-book-section::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.28; background-image:linear-gradient(rgba(211,160,78,.045) 1px, transparent 1px),linear-gradient(90deg, rgba(211,160,78,.035) 1px, transparent 1px); background-size:42px 42px; }
.biblia-book-section .paulo-book-cover img { width:100%; height:auto; aspect-ratio:16/23; object-fit:cover; border-radius:4px; }
.biblia-read-more { margin:8px 0 24px; border:1px solid rgba(212,162,84,.72); color:#e9c27e; background:transparent; cursor:pointer; }
.biblia-read-more:hover { background:rgba(212,162,84,.12); transform:translateY(-2px); }
.biblia-more-content { max-width:790px; margin:0 0 24px; padding:22px 24px 8px; border-top:1px solid rgba(212,162,84,.35); border-bottom:1px solid rgba(212,162,84,.25); background:rgba(255,255,255,.025); }
.biblia-more-content p { margin:0 0 16px; color:#d9d2c8; font-size:17px; line-height:1.78; }
.biblia-more-content strong { color:#fff4df; }
.biblia-more-content blockquote { margin:28px 0 24px; padding:22px 0 22px 24px; max-width:720px; border-left:2px solid #c99545; color:#e9c27e; font:600 clamp(24px,2.8vw,34px)/1.22 "Cormorant Garamond",serif; }
@media (max-width:820px) {
  .biblia-book-section { padding:68px 0; }
  .biblia-book-section .paulo-book-cover { max-width:360px; }
  .biblia-more-content { padding:20px 0 4px; }
  .biblia-more-content blockquote { padding-left:0; border-left:0; border-top:1px solid rgba(201,149,69,.45); border-bottom:1px solid rgba(201,149,69,.45); }
}

/* Pequeno ícone do Instagram antes dos perfis */
.instagram-mini-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  flex: 0 0 17px;
  vertical-align: -3px;
  margin-right: 7px;
  color: currentColor;
}
a:has(.instagram-mini-icon) {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Instagram — pequenos ícones antes dos perfis */
.instagram-link { display: inline-flex; align-items: center; gap: 8px; }
.instagram-link img { width: 17px; height: 17px; display: block; flex: 0 0 17px; color: currentColor; }
.social-bar .instagram-link { color: #f0d09d; }
.social-bar .instagram-link img { width: 18px; height: 18px; }
.footer-links .instagram-link { justify-content: flex-end; }
.footer-links .instagram-link img { width: 16px; height: 16px; }
@media (max-width: 1040px) {
  .footer-links .instagram-link { justify-content: center; }
}
