:root {
  --white: #FFFFFF;
  --purple: #A26DA7;
  --purple-mid: #875F8F;
  --purple-dark: #684770;
  --lilac: #F3EAF5;
  --lilac-strong: #E7D7EA;
  --text: #38313B;
  --muted: #6F6872;
  --line: rgba(104, 71, 112, .14);
  --shadow: 0 18px 50px rgba(83, 55, 89, .10);
  --shadow-soft: 0 10px 30px rgba(83, 55, 89, .07);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--text); background: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 105px 0; position: relative; overflow: clip; }
.section-soft { background: linear-gradient(180deg, #FCF9FC 0%, var(--lilac) 100%); }
.section-lilac { background: var(--lilac); }

.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; padding: 12px 18px; background: var(--purple-dark); color: white; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {  inset: 0 0 auto; z-index: 1000; background: #a26da7; border-bottom: 1px solid rgba(255,255,255,.18); transition: box-shadow .25s, border-color .25s; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(62,41,67,.20); border-color: rgba(255,255,255,.24); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; padding: 5px 10px;  border-radius: 14px; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.btn) { position: relative; padding: 9px 0; color: #fff; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: #fff; transition: right .25s; }
.main-nav > a:not(.btn):hover::after, .main-nav > a:not(.btn).active::after { right: 0; }
.nav-cta { margin-left: 5px; color: #684770; background: #fff; box-shadow: 0 10px 24px rgba(72,43,78,.18); }
.nav-cta:hover { color: #684770; background: #f7f1f8; box-shadow: 0 14px 30px rgba(72,43,78,.24); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid rgba(255,255,255,.38); background: #fff; border-radius: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #684770; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.2; cursor: pointer; transition: transform .2s, box-shadow .2s, background-color .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--purple); box-shadow: 0 10px 24px rgba(162,109,167,.25); }
.btn-primary:hover { background: var(--purple-mid); box-shadow: 0 14px 32px rgba(135,95,143,.30); }
.btn-secondary { color: var(--purple-dark); background: #fff; border-color: rgba(104,71,112,.24); }
.btn-secondary:hover { border-color: var(--purple); box-shadow: var(--shadow-soft); }
.btn-small { min-height: 40px; padding: 9px 18px; font-size: 14px; }
.btn-full { width: 100%; }
.text-link { color: var(--purple-dark); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(162,109,167,.35); text-underline-offset: 5px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--purple-mid); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 6px rgba(162,109,167,.12); }
h1, h2, h3 { margin: 0 0 18px; font-family: var(--font-title); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(43px, 5vw, 70px); letter-spacing: -.035em; }
h2 { font-size: clamp(35px, 4vw, 51px); letter-spacing: -.025em; }
h3 { font-size: 23px; }
p { margin: 0 0 18px; color: var(--muted); }
.section-heading { max-width: 580px; }
.section-heading.centered { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered p { max-width: 680px; margin-inline: auto; }

.hero { min-height: 760px; padding-top: 109px; display: flex; align-items: center; background: radial-gradient(circle at 82% 20%, rgba(231,215,234,.8), transparent 29%), #fff; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.hero-content { max-width: 650px; }
.hero h1 em { color: var(--purple-dark); font-style: normal; }
.hero-lead { color: #504952; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; color: var(--muted); font-size: 14px; }
.hero-media { position: relative; min-height: 570px; }
.hero-media > img { position: relative; z-index: 2; width: 100%; height: 770px; margin-left: auto; object-fit: cover; border-radius: 48% 48% 22px 22px / 27% 27% 22px 22px; box-shadow: var(--shadow); }
.organic-shape { position: absolute; inset: 10% 8% 2% 0; z-index: 1; background: var(--lilac-strong); border-radius: 56% 44% 48% 52% / 40% 52% 48% 60%; transform: rotate(-4deg); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 17px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow-soft); border-radius: 16px; backdrop-filter: blur(12px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--text); font-size: 14px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.floating-card-top { top: 55px; left: -10px; }
.floating-card-bottom { right: -10px; bottom: 55px; }
.mini-icon { display: grid; place-items: center; width: 38px; height: 38px; color: white; background: var(--purple); border-radius: 50%; }
.butterfly { position: absolute; z-index: 4; color: var(--purple); font-family: Georgia, serif; font-size: 36px; transform: rotate(-18deg); opacity: .55; }
.butterfly-a { right: 0; top: 12px; }
.butterfly-b { left: 40px; bottom: 10px; transform: rotate(18deg) scale(.7); }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: start; }
.feature-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-checks article { display: flex; gap: 16px; min-height: 165px; padding: 25px; background: white; border: 1px solid rgba(104,71,112,.09); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.feature-checks article > span { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; color: var(--purple-dark); background: var(--lilac); border-radius: 12px; font-weight: 700; }
.feature-checks h3 { margin-bottom: 8px; font-family: var(--font-body); font-size: 17px; }
.feature-checks p { margin: 0; font-size: 14px; line-height: 1.55; }

.needs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.need-chip { display: flex; align-items: center; min-height: 66px; padding: 15px 18px 15px 48px; position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; color: #514A54; font-weight: 600; box-shadow: 0 8px 22px rgba(83,55,89,.04); }
.need-chip::before { content: "✓"; position: absolute; left: 17px; display: grid; place-items: center; width: 22px; height: 22px; color: white; background: var(--purple); border-radius: 50%; font-size: 12px; }
.center-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 42px; text-align: center; }
.center-actions small { color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 300px; padding: 29px 25px; background: #fff; border: 1px solid rgba(104,71,112,.09); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(162,109,167,.3); box-shadow: var(--shadow); }
.service-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 26px; color: var(--purple-dark); background: var(--lilac); border-radius: 16px; font-family: Georgia, serif; font-size: 28px; }
.service-card h3 { min-height: 54px; font-family: var(--font-body); font-size: 19px; line-height: 1.35; }
.service-card p { margin: 0; font-size: 14px; }

.about-grid { display: grid; grid-template-columns: .87fr 1.13fr; gap: 90px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 610px; object-fit: cover; border-radius: 90px 24px 90px 24px; box-shadow: var(--shadow); }
.about-badge { position: absolute; right: -25px; bottom: 35px; width: 210px; padding: 20px; background: white; border-radius: 18px; box-shadow: var(--shadow); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { color: var(--purple-dark); font-family: var(--font-title); font-size: 25px; }
.about-badge span { color: var(--muted); font-size: 13px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 30px; }
.values-grid span { padding: 13px 15px 13px 42px; position: relative; background: var(--lilac); border-radius: 13px; font-size: 14px; font-weight: 600; }
.values-grid span::before { content: "✦"; position: absolute; left: 15px; color: var(--purple); }

.professional-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 85px; align-items: center; }
.professional-content { max-width: 650px; }
.quote { padding-left: 22px; border-left: 3px solid var(--purple); color: var(--purple-dark); font-family: var(--font-title); font-size: 21px; }
.professional-data { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.professional-data div { padding: 15px; background: rgba(255,255,255,.65); border: 1px solid rgba(104,71,112,.11); border-radius: 14px; }
.professional-data dt { color: var(--purple-mid); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.professional-data dd { margin: 4px 0 0; color: var(--text); font-weight: 600; font-size: 14px; }
.professional-media img { width: 100%; max-height: 610px; object-fit: cover; border-radius: 30% 30% 20px 20px; box-shadow: var(--shadow); }
.replace-note { display: block; margin-top: 12px; color: var(--muted); font-size: 12px; text-align: center; }

.differentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.diff-card { min-height: 230px; padding: 27px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.diff-card > span { color: var(--purple); font-size: 14px; font-weight: 700; }
.diff-card h3 { margin: 17px 0 10px; font-family: var(--font-body); font-size: 19px; }
.diff-card p { margin: 0; font-size: 14px; }

.process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; min-height: 260px; padding: 25px 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.process-list li:not(:last-child)::after { content: ""; position: absolute; z-index: 2; top: 48px; left: calc(100% - 4px); width: 22px; height: 1px; background: var(--purple); opacity: .5; }
.process-list li > span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 25px; color: white; background: var(--purple); border-radius: 50%; font-weight: 700; }
.process-list h3 { font-family: var(--font-body); font-size: 17px; }
.process-list p { margin: 0; font-size: 13px; }

.audience-grid { align-items: center; }
.audience-list { display: flex; flex-wrap: wrap; gap: 11px; }
.audience-list span { padding: 12px 17px; background: var(--lilac); border: 1px solid rgba(162,109,167,.15); border-radius: 999px; color: #514A54; font-weight: 600; font-size: 14px; }
.disclaimer { display: inline-block; margin-top: 14px; padding: 10px 14px; background: var(--lilac); border-radius: 10px; font-size: 13px; }

.gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 245px; gap: 16px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 20px; background: var(--lilac); cursor: pointer; }
.gallery-large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; inset: auto 14px 14px; padding: 8px 12px; color: white; background: rgba(56,49,59,.72); border-radius: 10px; font-size: 13px; font-weight: 700; backdrop-filter: blur(8px); }
.gallery-note { margin: 20px 0 0; text-align: center; font-size: 12px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { margin: 0; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.stars { display: block; margin-bottom: 18px; color: var(--purple); letter-spacing: 3px; font-size: 14px; }
.testimonial p { color: #504952; font-family: var(--font-title); font-size: 18px; }
.testimonial footer { color: var(--purple-dark); font-size: 14px; font-weight: 700; }

.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: start; }
.accordion { display: grid; gap: 10px; }
.accordion details { background: white; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; cursor: pointer; list-style: none; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; display: grid; place-items: center; width: 28px; height: 28px; color: var(--purple-dark); background: var(--lilac); border-radius: 50%; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: 0; padding: 0 22px 22px; font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: start; }
.contact-info { display: grid; gap: 12px; margin-top: 30px; }
.contact-info > * { padding: 16px 18px; background: var(--lilac); border-radius: 14px; }
.contact-info span, .contact-info strong { display: block; }
.contact-info span { color: var(--purple-mid); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-info strong { margin-top: 4px; color: var(--text); font-size: 14px; }
.contact-form { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #514A54; font-size: 14px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 15px; color: var(--text); background: #fff; border: 1px solid rgba(104,71,112,.22); border-radius: 12px; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(162,109,167,.12); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-size: 12px !important; font-weight: 400 !important; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--purple); }
.consent a { color: var(--purple-dark); text-decoration: underline; }
.form-status { margin: 12px 0 0; min-height: 24px; font-size: 13px; }
.map-wrap { margin-top: 55px; }
.map-placeholder { display: grid; place-items: center; min-height: 350px; padding: 40px; background: radial-gradient(circle at 70% 15%, rgba(162,109,167,.22), transparent 25%), var(--lilac); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.map-placeholder > div { max-width: 500px; }
.map-placeholder span { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; color: white; background: var(--purple); border-radius: 50%; font-size: 26px; }

.final-cta { padding-top: 20px; }
.final-cta-inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 65px; overflow: hidden; background: var(--lilac); border: 1px solid var(--line); border-radius: 34px; }
.final-cta-inner > div:first-of-type { max-width: 740px; }
.final-actions { display: flex; flex-direction: column; gap: 10px; min-width: 225px; }
.butterfly-watermark { position: absolute; right: 12%; top: -50px; color: var(--purple); font-family: Georgia, serif; font-size: 190px; opacity: .08; transform: rotate(-20deg); }

.site-footer { padding: 70px 0 25px; background: #FAF7FA; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1.1fr; gap: 45px; }
.footer-brand img { width: 300px; }
.footer-brand p { max-width: 270px; }
.footer-grid h3 { margin-bottom: 15px; font-family: var(--font-body); font-size: 15px; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) p { display: block; margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.social-links { display: flex; gap: 10px; }
.social-links a { padding: 8px 12px; color: var(--purple-dark); background: var(--lilac); border-radius: 999px; font-size: 12px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-bottom p, .footer-bottom a { margin: 0; color: var(--muted); font-size: 12px; }
.footer-bottom > div { display: flex; gap: 16px; }


.cookie-banner { position: fixed; z-index: 1200; left: 20px; right: 20px; bottom: 20px; display: none; align-items: center; justify-content: space-between; gap: 25px; width: min(calc(100% - 40px), 780px); margin-inline: auto; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow); }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 13px; }
.cookie-banner a { color: var(--purple-dark); text-decoration: underline; }

.lightbox { width: min(92vw, 960px); padding: 0; overflow: visible; border: 0; border-radius: 20px; background: transparent; }
.lightbox::backdrop { background: rgba(35,27,37,.85); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #fff; border-radius: 20px; }
.lightbox p { margin: 12px 0 0; color: #fff; text-align: center; }
.lightbox-close { position: absolute; z-index: 2; right: -10px; top: -45px; width: 38px; height: 38px; padding: 0; color: white; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; cursor: pointer; font-size: 28px; line-height: 1; }

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

:focus-visible { outline: 3px solid rgba(162,109,167,.35); outline-offset: 3px; }

@media (max-width: 1080px) {
  .main-nav { gap: 15px; }
  .main-nav > a:not(.btn) { font-size: 13px; }
  .nav-cta { padding-inline: 17px; }
  .hero-grid { gap: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li:not(:last-child)::after { display: none; }
  .needs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .main-nav { position: fixed; inset: 0 0 0 18%; z-index: 1001; flex-direction: column; align-items: stretch; gap: 3px; padding: 105px 26px 35px; background: #a26da7; box-shadow: -20px 0 50px rgba(56,49,59,.22); transform: translateX(105%); transition: transform .28s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a:not(.btn) { padding: 12px 4px; color: #fff; font-size: 16px; }
  .nav-cta { margin: 12px 0 0; color: #684770; background: #fff; }
  .hero { min-height: auto; padding-top: 200px; }
  .hero-grid, .about-grid, .professional-grid, .contact-grid, .faq-layout, .split-grid { grid-template-columns: 1fr; gap: 48px; }
  /* No tablet e no celular, a imagem da Hero aparece antes do texto. */
  .hero-media { order: 1; min-height: 500px; }
  .hero-content { order: 2; max-width: 720px; }
  .hero-media > img { width: 90%; height: 500px; }
  .feature-checks { grid-template-columns: 1fr 1fr; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .differentials-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-media { max-width: 650px; }
  .professional-content { order: 2; }
  .professional-media { order: 1; max-width: 560px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: span 2; grid-row: auto; }
  .final-cta-inner { grid-template-columns: 1fr; padding: 45px; }
  .final-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 3; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .brand img { width: 300px; }
  .header-inner { min-height: 74px; }
  h1 { font-size: 43px; }
  h2 { font-size: 35px; }
  .hero { padding-top: 200px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 8px; }
  .hero-media { min-height: 410px; }
  .hero-media > img { width: 100%; height: 770px;  }
  .floating-card-top { top: 25px; left: 0; }
  .floating-card-bottom { right: 0; bottom: 25px; }
  .floating-card { max-width: 215px; padding: 11px 13px; }
  .feature-checks, .needs-grid, .services-grid, .differentials-grid, .testimonials-grid, .process-list, .professional-data, .values-grid, .form-row { grid-template-columns: 1fr; }
  .feature-checks article { min-height: auto; }
  .service-card { min-height: auto; }
  .about-media img { height: 480px; }
  .about-badge { right: 10px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-large { grid-column: auto; }
  .final-cta-inner { padding: 35px 24px; }
  .final-actions, .final-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-grid > div:last-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 12px; }
  .whatsapp-label { display: none; }
 
}

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

.legal-page { min-height: 100vh; padding: 70px 0; background: linear-gradient(180deg, #fff, var(--lilac)); }
.legal-page .container { max-width: 850px; padding: 45px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.legal-page h1 { margin-top: 35px; }
.legal-page h2 { margin-top: 34px; font-size: 28px; }
@media (max-width: 620px) { .legal-page { padding: 20px 0; } .legal-page .container { padding: 26px 20px; } }

/* Rodapé institucional e formas de pagamento */
.site-footer {
  color: #fff;
  background: #a26da7;
  border-top-color: rgba(255,255,255,.22);
}
.site-footer p,
.site-footer h3,
.site-footer a,
.site-footer .footer-grid > div:not(.footer-brand) a,
.site-footer .footer-grid > div:not(.footer-brand) p,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  color: #ffffff;
}
.site-footer a:hover { opacity: .82; }
.footer-brand img {
  
}
.site-footer .social-links a {
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.42);
}
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.payment-methods > p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.payment-flags {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.payment-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 42px;
  padding: 6px 12px;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1;
  text-align: center;
}

/* Botão WhatsApp */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:auto;
    height:60px;
    padding:0 22px;
    background:#25D366;
    color:#fff;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
    animation:pulseWhats 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.05);
    background:#1ebe5d;
    color:#fff;
}

.whatsapp-float svg{
    width:28px;
    height:28px;
}

@keyframes pulseWhats{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .whatsapp-float{
        right:15px;
        bottom:15px;
        width:60px;
        height:60px;
        padding:0;
        justify-content:center;
    }

    .whatsapp-float span{
        display:none;
    }

}


.resultados {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 55px 40px;
  box-sizing: border-box;

  background-color: #935897;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(71, 29, 75, 0.22);

  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.resultado-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 140px;
  padding: 20px;
  text-align: center;
}

.resultado-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -12px;

  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.3);
}

.contador {
  display: block;
  margin-bottom: 10px;

  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
}

.resultado-item span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .resultados {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 32px);
    padding: 30px 24px;
  }

  .resultado-item {
    min-height: 120px;
  }

  .resultado-item:not(:last-child)::after {
    top: auto;
    right: 15%;
    bottom: 0;

    width: 70%;
    height: 1px;
  }
}
.payment-flag:nth-child(2) { font-size: 11px; font-style: normal; }
.payment-flag:nth-child(3) { font-size: 18px; }
.payment-flag:nth-child(4) { font-size: 11px; font-style: normal; }
.payment-flag-amex { min-width: 84px; font-size: 9px; font-style: normal; line-height: .9; letter-spacing: .02em; }
.site-footer .footer-bottom {
  border-top-color: rgba(255,255,255,.28);
}

@media (max-width: 620px) {
  .payment-methods { align-items: flex-start; flex-direction: column; }
  .payment-methods > p { white-space: normal; }
  .payment-flags { justify-content: flex-start; }
  .payment-flag { min-width: 72px; }
}
