:root {
  --ink: #221c15;
  --ink-deep: #17130e;
  --cream: #f8f4ec;
  --paper: #fffdf8;
  --gold: #b88932;
  --gold-deep: #96702a;
  --champagne: #e2c98f;
  --taupe: #766a5c;
  --line: rgba(34, 28, 21, 0.15);
  --line-dark: rgba(226, 201, 143, 0.24);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --radius: 22px;
  --shadow: 0 30px 70px rgba(52, 39, 20, 0.16);
  --banner-h: 44px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(88px + var(--banner-h)); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: clamp(80px, 9vw, 130px); }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 18px; background: var(--paper); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }

.demo-banner { position: fixed; z-index: 200; top: 0; left: 0; right: 0; height: var(--banner-h); display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--ink-deep); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; box-shadow: 0 2px 10px rgba(23, 19, 14, .18); }
.demo-banner::before, .demo-banner::after { content: "✦"; font-size: 10px; opacity: .7; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; line-height: 1.02; }
h1 { margin-bottom: 26px; font-size: clamp(52px, 6.4vw, 92px); }
h2 { margin-bottom: 26px; font-size: clamp(42px, 5vw, 68px); }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 1px; background: currentColor; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 11px; padding: 14px 26px; border: 1px solid var(--gold); border-radius: 999px; background: var(--gold); color: var(--ink-deep); font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button:hover { transform: translateY(-2px); background: var(--champagne); border-color: var(--champagne); box-shadow: 0 14px 30px rgba(184, 137, 50, .2); }
.button-small { min-height: 44px; padding: 10px 20px; }
.button-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; text-decoration: none; }
.text-link span { font-size: 18px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link-dark { color: var(--ink); }

.site-header { position: fixed; z-index: 100; width: 100%; top: var(--banner-h); color: var(--ink); transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.scrolled, .site-header.menu-active { background: rgba(248, 244, 236, .92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--font-display); font-size: 18px; letter-spacing: -.06em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.brand-copy small { margin-top: 5px; color: var(--taupe); font-size: 8px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); }
.nav a { position: relative; color: var(--ink); font-size: 12px; font-weight: 600; text-decoration: none; opacity: .72; }
.nav a::after { content: ""; position: absolute; width: 0; height: 1px; left: 0; bottom: -7px; background: var(--gold); transition: width .25s; }
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .25s; }

.hero { position: relative; padding: calc(168px + var(--banner-h)) 0 0; overflow: hidden; }
.hero-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 0; align-items: end; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 70px; padding-right: 40px; }
.hero-lead { max-width: 420px; margin-bottom: 34px; color: var(--taupe); font-size: clamp(16px, 1.4vw, 18px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-photo { position: absolute; inset: 0; border-radius: var(--radius) 0 0 0; background-image: linear-gradient(to top, rgba(23,19,14,.4), transparent 45%), url("assets/hero-unhas-douradas.jpg"); background-size: cover; background-position: 52% center; background-repeat: no-repeat; }
.hero-caption { position: absolute; left: 34px; bottom: 30px; z-index: 2; display: flex; align-items: center; gap: 12px; max-width: 300px; margin: 0; color: var(--paper); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.hero-caption .spark { color: var(--champagne); font-size: 20px; }

.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: flex; flex-direction: column; gap: 6px; padding: 30px 24px; text-align: center; }
.proof-grid > div + div { border-left: 1px solid var(--line); }
.proof-grid strong { font-family: var(--font-display); font-size: 40px; font-weight: 500; color: var(--gold); line-height: 1; }
.proof-grid span { color: var(--taupe); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }

.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 60px; }
.section-heading > div { flex: 1; }
.section-heading h2 { margin: 0; }
.section-heading > p { max-width: 400px; margin: 0 0 8px; color: var(--taupe); }

.portfolio { background: var(--cream); }
.portfolio-heading { display: grid; grid-template-columns: 1fr .6fr; align-items: end; margin-bottom: 46px; }
.portfolio-heading .eyebrow { grid-column: 1 / -1; }
.portfolio-heading h2 { margin: 0; }
.portfolio-heading > p { max-width: 370px; margin: 0 0 8px; color: var(--taupe); }
.gallery { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 250px 250px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 14px; background-size: cover; background-position: center; background-repeat: no-repeat; filter: saturate(.92); transition: filter .35s; }
.gallery-item:hover { filter: saturate(1.05); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,19,14,.5), transparent 46%); }
.gallery-item span { position: absolute; z-index: 2; left: 20px; bottom: 16px; color: var(--paper); font-family: var(--font-display); font-size: 20px; font-style: italic; }
.gallery-main { grid-row: 1 / 3; background-image: url("assets/portfolio-nude-preto-dourado.jpg"); }
.gallery-item:nth-child(2) { background-image: url("assets/portfolio-lilas-champagne.jpg"); }
.gallery-item:nth-child(3) { background-image: url("assets/hero-unhas-douradas.jpg"); background-position: 52% 72%; }
.gallery-wide { grid-column: 2 / 4; background-image: url("assets/portfolio-azul-dourado.jpg"); }
.portfolio-action { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.portfolio-action p { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: 25px; font-style: italic; }

.quotes { padding-block: 40px; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quotes-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 48px; }
.quotes-label { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.quotes-label span { width: 24px; height: 1px; background: currentColor; }
.quotes blockquote { margin: 0; display: flex; align-items: baseline; gap: 10px; font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--ink); }
.quotes blockquote cite { font-style: normal; font-family: var(--font-body); font-size: 11px; color: var(--taupe); }

.services { background: var(--paper); }
.service-list { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.service-list li { display: grid; grid-template-columns: 50px 58px 1fr auto; align-items: center; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--gold); font-family: var(--font-display); font-size: 18px; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-deep); }
.service-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.service-copy h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.service-copy p { margin: 0; max-width: 520px; color: var(--taupe); font-size: 14px; }
.service-link { justify-self: end; display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(56px, 8vw, 110px); align-items: center; }
.about-lead { max-width: 520px; color: var(--ink); font-family: var(--font-display); font-size: 28px; font-style: italic; line-height: 1.3; }
.about-copy > p:not(.eyebrow):not(.about-lead) { max-width: 520px; color: var(--taupe); }
.about-signature { display: flex; align-items: end; gap: 16px; margin: 30px 0 16px; }
.about-signature span { color: var(--gold); font-family: var(--font-display); font-size: 44px; font-style: italic; line-height: 1; }
.about-signature small { padding-bottom: 6px; color: var(--taupe); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-visual { position: relative; min-height: 480px; }
.about-photo { position: absolute; inset: 0; border-radius: var(--radius); background-image: url("assets/suellen-retrato.jpg"); background-size: cover; background-position: center 15%; box-shadow: var(--shadow); }

.courses { background: var(--cream); }
.courses-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(56px, 8vw, 110px); align-items: center; }
.courses-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 30px; color: var(--taupe); }
.courses-visual { position: relative; min-height: 460px; }
.courses-photo { position: absolute; inset: 0; border-radius: var(--radius); background-image: url("assets/suellen-atelie.jpg"); background-size: cover; background-position: center 22%; box-shadow: var(--shadow); }
.courses-badge { position: absolute; left: -22px; bottom: -22px; z-index: 2; display: flex; align-items: center; gap: 14px; max-width: 240px; padding: 18px 22px; border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); }
.courses-icon { width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink-deep); }
.courses-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.courses-badge span:last-child { color: var(--ink); font-size: 12px; line-height: 1.4; }
.courses-badge strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--gold); font-weight: 500; line-height: 1.1; }

.experience { background: var(--paper); }
.experience-heading { margin-bottom: 48px; }
.steps { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.steps li { display: grid; grid-template-columns: 110px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--gold); font-family: var(--font-display); font-size: 20px; }
.steps li div { display: grid; grid-template-columns: .7fr 1fr; gap: 36px; align-items: baseline; }
.steps h3 { margin: 0; font-family: var(--font-display); font-size: 29px; font-weight: 500; }
.steps p { max-width: 460px; margin: 0; color: var(--taupe); }

.contact { color: var(--cream); background: var(--ink-deep); }
.contact .eyebrow { color: var(--champagne); }
.contact h2 em { color: var(--champagne); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(64px, 9vw, 130px); }
.contact-copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 30px; color: rgba(248, 244, 236, .64); }
.contact-social { display: flex; flex-direction: column; gap: 6px; margin-top: 36px; }
.contact-social a { width: fit-content; color: rgba(248, 244, 236, .62); font-size: 12px; text-decoration: none; }
.contact-social a:hover { color: var(--champagne); }
.contact-details { border-left: 1px solid rgba(226, 201, 143, .22); }
.detail-block { padding: 8px 0 40px 44px; }
.detail-block + .detail-block { padding-top: 38px; border-top: 1px solid rgba(226, 201, 143, .22); }
.detail-label { color: var(--champagne); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.detail-block h3 { margin: 14px 0 8px; font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.detail-block p { color: rgba(248, 244, 236, .6); font-size: 13px; }
.detail-block > a { color: var(--champagne); font-size: 11px; font-weight: 700; text-decoration: none; }
.hours-block dl { margin: 16px 0 0; }
.hours-block dl div { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; border-bottom: 1px solid rgba(226, 201, 143, .1); font-size: 12px; }
.hours-block dt { color: rgba(248, 244, 236, .6); }
.hours-block dd { margin: 0; color: var(--cream); }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .58fr 1fr; gap: clamp(56px, 8vw, 110px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-family: var(--font-display); font-size: 22px; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--gold); font-family: var(--font-body); font-size: 22px; font-weight: 300; transition: transform .25s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 620px; padding: 0 40px 22px 0; margin: 0; color: var(--taupe); font-size: 14px; }

.footer { padding: 60px 0 22px; color: var(--cream); background: var(--ink-deep); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 46px; }
.footer .brand-copy small { color: var(--champagne); }
.brand-footer { min-width: 220px; }
.footer-top p { margin: 0; color: rgba(248, 244, 236, .5); font-family: var(--font-display); font-size: 21px; font-style: italic; line-height: 1.25; text-align: center; }
.footer-up { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(226, 201, 143, .22); border-radius: 50%; color: var(--champagne); text-decoration: none; transition: background .2s; }
.footer-up:hover { background: rgba(226, 201, 143, .1); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(226, 201, 143, .2); color: rgba(248, 244, 236, .34); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.floating-whatsapp { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 56px; height: 56px; display: none; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink-deep); box-shadow: 0 12px 32px rgba(0,0,0,.22); }
.floating-whatsapp svg { width: 25px; fill: currentColor; }

.ig-modal { position: fixed; z-index: 300; inset: 0; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility 0s linear .4s; }
.ig-modal.visible { opacity: 1; visibility: visible; transition: opacity .4s ease; }
.ig-modal-backdrop { position: absolute; inset: 0; background: rgba(23, 19, 14, .55); }
.ig-modal-card { position: relative; z-index: 1; width: 100%; max-width: 360px; padding: 40px 32px 32px; border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); text-align: center; transform: scale(.92); transition: transform .4s ease; }
.ig-modal.visible .ig-modal-card { transform: scale(1); }
.ig-modal-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; color: var(--taupe); font-size: 20px; line-height: 1; cursor: pointer; }
.ig-modal-icon { width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.ig-modal-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.ig-modal-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); }
.ig-modal-card p { margin: 0 0 26px; color: var(--taupe); font-size: 13px; line-height: 1.6; }
.ig-modal-button { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; border-radius: 999px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.ig-modal-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; padding-bottom: 40px; }
  .hero-visual { min-height: 460px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-left: 0; }
  .service-list li { grid-template-columns: 40px 50px 1fr; }
  .service-link { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .section { padding-block: 76px; }
  h1 { font-size: clamp(46px, 13vw, 66px); }
  h2 { font-size: clamp(38px, 10vw, 54px); }
  .site-header { background: rgba(248, 244, 236, .92); backdrop-filter: blur(12px); }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 17px; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .nav { position: fixed; inset: calc(72px + var(--banner-h)) 0 auto; display: grid; gap: 0; padding: 22px 16px 32px; background: rgba(248, 244, 236, .98); border-top: 1px solid var(--line); transform: translateY(-130%); opacity: 0; transition: transform .3s, opacity .3s; }
  .nav.open { transform: none; opacity: 1; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 22px; opacity: 1; }
  .hero { padding: calc(122px + var(--banner-h)) 0 0; }
  .hero-visual { min-height: 380px; }
  .hero-photo { border-radius: var(--radius); }
  .section-heading, .portfolio-heading { display: block; }
  .section-heading > p, .portfolio-heading > p { margin-top: 24px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 200px 200px; }
  .gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .gallery-wide { grid-column: 1 / 3; }
  .about-grid, .courses-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .courses-visual { order: -1; margin-bottom: 36px; }
  .courses-badge { left: 16px; bottom: -18px; }
  .about-visual { min-height: 420px; margin-bottom: 36px; }
  .steps li { grid-template-columns: 56px 1fr; }
  .steps li div { grid-template-columns: 1fr; gap: 8px; }
  .contact-details { border-left: 0; border-top: 1px solid rgba(226, 201, 143, .22); }
  .detail-block { padding-left: 0; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .header-inner { min-height: 66px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 7px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(even) { border-left: 1px solid var(--line); }
  .proof-grid > div:nth-child(odd) { border-left: 0; }
  .service-list li { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .service-number { display: none; }
  .gallery { grid-template-rows: 280px 170px 170px; gap: 9px; }
  .gallery-item span { left: 14px; bottom: 12px; font-size: 17px; }
  .portfolio-action { align-items: stretch; flex-direction: column; }
  .steps li { grid-template-columns: 40px 1fr; gap: 10px; padding: 26px 0; }
  .steps h3 { font-size: 25px; }
  .contact-grid { gap: 60px; }
  .accordion summary { font-size: 20px; }
  .footer-top { flex-wrap: wrap; }
  .footer-top p { order: 3; width: 100%; text-align: left; }
  .footer-bottom { flex-direction: column; }
  .quotes-grid { flex-direction: column; align-items: flex-start; gap: 14px; }
  .floating-whatsapp { display: grid; }
  .ig-modal-card { padding: 34px 24px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
