:root {
  --wine: #76172C;
  --rose: #D86487;
  --rose-soft: #EEAAC3;
  --rose-mist: #fff3f7;
  --text: #4A202A;
  --surface: #ffffff;
  --line: rgba(118, 23, 44, 0.14);
  --line-strong: rgba(118, 23, 44, 0.24);
  --shadow-soft: 0 24px 60px rgba(118, 23, 44, 0.12);
  --shadow-card: 0 18px 40px rgba(118, 23, 44, 0.1);
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
  --container: min(1120px, calc(100% - 2rem));
  --title-size: 2rem;
  --subtitle-size: 1.125rem;
  --body-size: 0.8125rem;
  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: var(--body-size);
  line-height: 1.8;
  background:
    radial-gradient(circle at top left, rgba(216, 100, 135, 0.08), transparent 34%),
    linear-gradient(180deg, #fff9fb 0%, #ffffff 22%, #fffafb 100%);
}

img {
  display: block;
  max-width: 100%;
}

iframe {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 252, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(118, 23, 44, 0.08);
}

body[data-page="home"] .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(255, 249, 251, 0.82) 0%, rgba(255, 249, 251, 0.28) 62%, rgba(255, 249, 251, 0) 100%);
  backdrop-filter: none;
  border-bottom: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  padding-block: max(0.7rem, env(safe-area-inset-top));
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(88px, 12vw, 118px);
  height: auto;
  object-fit: contain;
}

.site-menu {
  position: relative;
}

.menu-toggle {
  display: inline-grid;
  gap: 0.33rem;
  padding: 0.95rem 0.9rem;
  border: 1px solid rgba(118, 23, 44, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(118, 23, 44, 0.12);
  border-color: rgba(118, 23, 44, 0.2);
  outline: none;
}

.menu-toggle span {
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--wine);
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  min-width: 220px;
  padding: 0.7rem;
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(118, 23, 44, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.site-header.is-open .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a {
  border-radius: 0;
  padding: 0.9rem 1rem;
  color: var(--wine);
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.menu-panel a:hover,
.menu-panel a:focus-visible,
.menu-panel a.is-current {
  background: rgba(216, 100, 135, 0.14);
  color: var(--wine);
  transform: translateX(2px);
  outline: none;
}

section {
  padding-block: clamp(4rem, 7vw, 6rem);
}

body[data-page="home"] main > section {
  padding-block: clamp(2.5rem, 4.2vw, 3.8rem);
}

body[data-page="home"] .section-heading {
  margin-bottom: clamp(1.15rem, 2.1vw, 1.7rem);
}

.section-kicker,
.sub-title,
.section-title,
.hero-title,
.button,
.accordion__title,
.review-name {
  font-family: "Poppins", sans-serif;
}

.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--rose);
  font-size: var(--subtitle-size);
  font-weight: 600;
  line-height: 1.4;
}

.section-title {
  margin: 0;
  color: var(--rose);
  font-size: var(--title-size);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.sub-title {
  margin: 0 0 0.7rem;
  color: var(--rose);
  font-size: var(--subtitle-size);
  font-weight: 600;
  line-height: 1.45;
}

.body-text {
  margin: 0;
  color: var(--text);
  font-size: var(--body-size);
}

.body-text + .body-text {
  margin-top: 1rem;
}

.body-text--lead {
  max-width: 58ch;
  font-size: 0.95rem;
  line-height: 1.9;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  padding-top: 0;
  min-height: clamp(540px, 92vh, 780px);
  overflow: hidden;
}

body[data-page="home"] .hero {
  min-height: clamp(700px, 98vh, 920px);
  padding-block: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 252, 0.98) 0%, rgba(255, 250, 252, 0.92) 34%, rgba(255, 250, 252, 0.4) 68%, rgba(255, 250, 252, 0.1) 100%),
    url("imagens/HOME.jpeg");
  background-position: center center;
  background-size: auto, cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

body[data-page="home"] .hero-media {
  background-size: auto, cover;
  background-position: left top, center center;
}

.hero-card,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero .container {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  min-height: clamp(540px, 92vh, 780px);
  display: flex;
  align-items: center;
}

body[data-page="home"] .hero .container {
  min-height: clamp(700px, 98vh, 920px);
  align-items: flex-start;
}

.hero-card {
  min-height: 0;
  width: 100%;
  display: grid;
  align-items: center;
  background: none;
  box-shadow: none;
}

body[data-page="home"] .hero-card {
  min-height: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(580px, 100%);
  padding: clamp(2.2rem, 6vw, 5rem);
}

body[data-page="home"] .hero-copy {
  width: min(560px, 100%);
  padding: clamp(9.5rem, 15vw, 12rem) 0 clamp(2.8rem, 5vw, 4rem);
}

.hero-title {
  margin: 0 0 1.6rem;
  color: var(--rose);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

body[data-page="home"] .hero-title {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
}

.hero-title--inner {
  max-width: 12ch;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.55rem;
  border: 0;
  border-radius: 0;
  background: var(--rose-soft);
  color: #fff8fb;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.02);
  outline: none;
}

.button--light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--wine);
  box-shadow: none;
}

.button--small {
  padding: 0.78rem 1.15rem;
  font-size: 0.84rem;
}

.button--light svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.brand-section {
  padding-top: 1.2rem;
}

body[data-page="home"] .brand-section {
  padding-block: 0.55rem;
  background: #ffffff;
}

body[data-page="home"] .brand-marquee {
  border: 0;
  background: none;
}

.brand-marquee {
  overflow: hidden;
  border: 1px solid rgba(118, 23, 44, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.brand-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1.2rem;
  animation: marquee 26s linear infinite;
}

body[data-page="home"] .brand-track {
  gap: 1.7rem;
  padding: 0.2rem 0;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(140px, 18vw, 200px);
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(118, 23, 44, 0.08);
  border-radius: 0;
  background: linear-gradient(180deg, #fffefd 0%, #fff7fa 100%);
  color: var(--wine);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-pill img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body[data-page="home"] .brand-pill {
  width: clamp(88px, 9vw, 126px);
  height: clamp(40px, 4vw, 56px);
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
}

.highlight-section {
  background: var(--rose);
}

.highlight-quote {
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 5rem);
  color: var(--rose);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.03em;
}

.highlight-quote__line,
.highlight-quote__subline {
  display: block;
}

.highlight-quote__line {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}

.highlight-quote__subline {
  margin-top: 0.65rem;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

body[data-page="home"] .highlight-quote {
  padding: clamp(2.4rem, 4.5vw, 3.8rem) 0;
  color: #ffffff;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  line-height: 1.35;
}

.accordion {
  display: grid;
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item summary {
  list-style: none;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  cursor: pointer;
}

.accordion__title {
  color: var(--rose);
  font-size: var(--subtitle-size);
  font-weight: 600;
  line-height: 1.4;
}

.accordion__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--wine);
  flex: 0 0 auto;
}

.accordion__symbol::before {
  content: "+";
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.accordion__item[open] .accordion__symbol::before {
  content: "-";
}

.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.accordion__item[open] .accordion__content {
  grid-template-rows: 1fr;
}

.accordion__inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom var(--transition);
}

.accordion__item[open] .accordion__inner {
  padding-bottom: 1.35rem;
}

.service-list,
.price-list {
  display: grid;
  gap: 0.9rem;
}

.pricing-entry {
  display: grid;
  gap: 0.32rem;
}

.pricing-subtitle {
  margin: 0.4rem 0 0;
  color: var(--rose);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.pricing-description {
  margin: 0;
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1.6;
}

.pricing-price {
  font-weight: 700;
  color: inherit;
}

.pricing-bullets {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.7;
}

.pricing-dash-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.7;
}

.pricing-dash-list li {
  position: relative;
  padding-left: 0.9rem;
}

.pricing-dash-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--wine);
  font-weight: 700;
}

.service-row,
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: var(--body-size);
}

.service-row strong,
.price-row strong {
  font-weight: 500;
  flex: 1 1 auto;
}

.service-row span,
.price-row span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.service-row span:last-child,
.price-row span:last-child {
  color: var(--wine);
  font-weight: 700;
  white-space: nowrap;
}

.app-section {
  color: #fff7fa;
}

body[data-page="home"] .app-section {
  color: #fff8fb;
  padding-inline: 0;
}

body[data-page="home"] .app-section .container {
  width: 100%;
  max-width: none;
}

.app-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(2rem, 5vw, 4.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(255, 248, 251, 0.08) 0%, rgba(118, 23, 44, 0.78) 44%, rgba(216, 100, 135, 0.8) 100%),
    url("imagens/App.png") left 2rem bottom / auto 92% no-repeat;
  box-shadow: none;
}

body[data-page="home"] .app-card {
  min-height: clamp(580px, 66vw, 760px);
  padding: clamp(2rem, 4.4vw, 3.4rem);
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 390px);
  grid-template-areas: ". text";
  grid-template-rows: auto;
  align-content: start;
  align-items: start;
  background-image:
    linear-gradient(90deg, rgba(216, 100, 135, 0.24) 0%, rgba(216, 100, 135, 0.58) 52%, rgba(118, 23, 44, 0.72) 100%),
    url("imagens/App.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.app-card::after {
  display: none;
}

.app-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: end;
  max-width: 420px;
}

body[data-page="home"] .app-copy {
  grid-area: text;
  justify-self: end;
  align-self: start;
  width: min(100%, 370px);
  max-width: 370px;
}

.app-copy .section-kicker,
.app-copy .section-title,
.app-copy .body-text,
.app-copy .check-list {
  color: #fff8fb;
}

body[data-page="home"] .app-copy .section-title,
body[data-page="home"] .app-copy .body-text,
body[data-page="home"] .app-copy .check-list {
  color: #fff8fb;
  text-shadow: 0 2px 14px rgba(118, 23, 44, 0.28);
}

body[data-page="home"] .app-copy .check-list {
  gap: 0.85rem;
  margin-top: 1.2rem;
  width: min(100%, 370px);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
  font-size: 0.95rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.check-icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  flex: 0 0 auto;
}

body[data-page="home"] .check-icon {
  background: rgba(255, 255, 255, 0.2);
}

.check-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.38rem;
  height: 0.65rem;
  border-right: 2px solid #fff8fb;
  border-bottom: 2px solid #fff8fb;
  transform: rotate(38deg) translate(-5%, -8%);
}

body[data-page="home"] .check-icon::before {
  border-right-color: #fff8fb;
  border-bottom-color: #fff8fb;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.content-card,
.image-card,
.info-card,
.note-card,
.cta-card,
.page-hero__panel,
.pricing-card {
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.content-card,
.info-card,
.note-card,
.cta-card,
.page-hero__panel,
.pricing-card {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(118, 23, 44, 0.08);
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.image-card {
  overflow: hidden;
  background: #fff7fa;
  border: 1px solid rgba(118, 23, 44, 0.08);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.review-section {
  padding-block: clamp(2.4rem, 4vw, 3.2rem);
  background: #F8D6E2;
}

.review-rating {
  font-size: 0.9rem;
}

.review-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  max-width: 680px;
  margin-inline: auto;
}

.carousel-arrow {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(118, 23, 44, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--wine);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(118, 23, 44, 0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(118, 23, 44, 0.22);
  box-shadow: 0 16px 28px rgba(118, 23, 44, 0.12);
  outline: none;
}

.review-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.review-track {
  display: flex;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
}

.review-card {
  min-height: 100%;
  padding: 0.5rem 0 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.review-stars {
  margin: 0 0 0.9rem;
  color: var(--rose);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.review-name {
  margin: 0 0 0.6rem;
  color: var(--rose);
  font-size: var(--subtitle-size);
  font-weight: 600;
}

.review-text {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.9;
}

.location-section {
  background: #ffffff;
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(118, 23, 44, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.88);
}

.map-card iframe {
  width: 100%;
  height: min(62vw, 460px);
  min-height: 320px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.location-button {
  width: 3.45rem;
  height: 3.45rem;
  padding: 0;
  border-radius: 999px;
  background: var(--rose-soft);
  color: #fff8fb;
  flex: 0 0 auto;
}

.location-button img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

body[data-page="home"] .split-layout {
  gap: clamp(1rem, 2vw, 1.6rem);
}

body[data-page="home"] .team-section .image-card img {
  min-height: 0;
  height: auto;
  max-height: clamp(280px, 34vw, 400px);
  object-fit: contain;
  object-position: center;
}

body[data-page="home"] .location-actions {
  margin-top: 1rem;
}

.cta-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.cta-card {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  text-align: center;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .cta-card .section-title {
  color: #ffffff;
}

body[data-page="home"] .cta-section {
  background: var(--rose);
}

body[data-page="home"] .cta-card .cta-heart {
  display: inline-block;
  margin-inline: 0.2rem;
  color: #ffffff;
  font-size: 0.9em;
  transform: translateY(-0.04em);
}

body[data-page="home"] .cta-card .button {
  background: rgba(255, 255, 255, 0.92);
  color: var(--wine);
}

.page-hero {
  padding-block: clamp(4rem, 8vw, 6rem);
  background-color: #fff6fa;
}

.page-hero--about {
  background: none;
}

.page-hero--about .page-hero__panel {
  padding: 0;
  background: none;
  border: 0;
}

body[data-page="about"] .content-card,
body[data-page="about"] .info-card {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.page-hero--policies {
  background:
    linear-gradient(120deg, rgba(118, 23, 44, 0.76), rgba(216, 100, 135, 0.65)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%);
}

.page-hero--pricing {
  background:
    linear-gradient(105deg, rgba(255, 250, 252, 0.95), rgba(255, 250, 252, 0.78)),
    url("imagens/HOME.jpeg") center center / cover no-repeat;
}

.pricing-hero__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.pricing-hero__filter {
  min-height: 0;
  padding: 0.72rem 1rem;
  font-size: 0.84rem;
  line-height: 1;
  text-decoration: none;
}

.page-hero--policies .page-hero__panel {
  background: rgba(255, 249, 251, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.page-hero--policies .section-kicker,
.page-hero--policies .hero-title,
.page-hero--policies .body-text {
  color: #fff8fb;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card-grid--policies {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-section {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.policy-stack {
  display: grid;
  gap: 1.2rem;
  max-width: 960px;
  margin-inline: auto;
}

.policy-card {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(118, 23, 44, 0.08);
  display: grid;
  gap: 1rem;
}

.policy-block {
  display: grid;
  gap: 0.6rem;
}

.policy-block + .policy-block {
  padding-top: 1rem;
  border-top: 1px solid rgba(118, 23, 44, 0.1);
}

.policy-label {
  margin: 0;
  color: var(--rose);
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

.policy-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.7;
}

.note-section {
  padding-top: 0;
}

.note-card {
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.pricing-page-section {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 2.4rem);
}

.pricing-card--compact {
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
}

.pricing-card--compact .section-kicker {
  margin-bottom: 0;
}

.pricing-card--compact .section-title {
  margin-bottom: 0.25rem;
}

.pricing-card--compact .price-list {
  gap: 1rem;
}

.pricing-section {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
  border: 1px solid rgba(118, 23, 44, 0.08);
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.7rem);
  scroll-margin-top: 7rem;
}

.pricing-section__title {
  margin: 0;
}

.pricing-section__blocks {
  display: grid;
  gap: clamp(1.15rem, 3vw, 1.45rem);
}

.pricing-block {
  --pricing-media-size: clamp(92px, 13vw, 132px);
  display: grid;
  grid-template-columns: var(--pricing-media-size) minmax(0, 1fr);
  gap: clamp(0.95rem, 2vw, 1.35rem);
  align-items: start;
}

.pricing-block--reverse {
  grid-template-columns: minmax(0, 1fr) var(--pricing-media-size);
}

.pricing-block--text-only {
  grid-template-columns: 1fr;
}

.pricing-block__media {
  display: flex;
  justify-content: center;
}

.pricing-block__media-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 36%),
    linear-gradient(160deg, rgba(248, 214, 226, 0.9), rgba(255, 247, 250, 0.96));
}

.pricing-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-block__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 36%),
    linear-gradient(160deg, rgba(248, 214, 226, 0.9), rgba(255, 247, 250, 0.96));
}

.pricing-block__body {
  min-width: 0;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.pricing-block__title {
  margin: 0;
  color: var(--rose);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.06rem);
  font-weight: 600;
  line-height: 1.45;
}

.pricing-block__text {
  margin: 0;
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.8;
}

.pricing-block--reverse .pricing-block__media {
  order: 2;
}

.pricing-block--reverse .pricing-block__body {
  order: 1;
}

.pricing-accordion-stack {
  display: grid;
  gap: 0.9rem;
}

.pricing-accordion-block {
  display: grid;
  gap: 0.45rem;
}

.pricing-accordion-block + .pricing-accordion-block {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(118, 23, 44, 0.08);
}

.accordion__actions {
  margin-top: 1.15rem;
}

.accordion__button {
  padding: 0.78rem 1.15rem;
  font-size: 0.84rem;
}

.site-footer {
  padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(118, 23, 44, 0.08);
  background: rgba(255, 250, 252, 0.94);
}

.team-section .content-card,
.team-section .image-card {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.team-section .image-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1.2rem;
}

.team-section__photo {
  width: min(100%, 360px);
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: clamp(220px, 40vw, 360px);
  object-fit: contain;
  margin-inline: auto;
}

.team-section__content {
  display: grid;
  gap: 1rem;
  width: min(100%, 32rem);
  justify-items: start;
}

.team-section__note {
  margin: 0;
  color: var(--text);
  font-size: var(--body-size);
  line-height: 1.8;
}

.review-section .section-heading {
  justify-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

body[data-page="home"] .review-section {
  padding-block: clamp(2rem, 3vw, 2.6rem);
}

body[data-page="home"] .review-section .section-heading {
  justify-items: start;
  text-align: left;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

body[data-page="home"] .review-rating {
  font-size: 0.82rem;
}

body[data-page="home"] .review-carousel {
  max-width: 430px;
  margin-inline: auto;
}

body[data-page="home"] .review-card {
  text-align: center;
}

body[data-page="home"] .review-stars {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

body[data-page="home"] .review-name {
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
}

body[data-page="home"] .review-text {
  font-size: 0.76rem;
  line-height: 1.6;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 1.5rem;
}

.site-footer__info {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}

.site-footer__brand {
  margin: 0;
  color: var(--wine);
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--wine);
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer__detail a {
  color: inherit;
}

.site-footer__icon {
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 0.75rem;
}

.site-footer__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__bottom {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  grid-column: 2;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.4rem;
}

.site-footer__links a {
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--wine);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity var(--transition);
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  opacity: 0.72;
  outline: none;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.site-footer__social-icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--wine);
  text-decoration: none;
}

.site-footer__social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
  }

  .hero-media {
    background-position: left top, 60% center;
  }

  .hero-card {
    min-height: 620px;
  }

  .hero-title {
    max-width: 12ch;
  }

  .app-card,
  .split-layout,
  .split-layout--reverse,
  .card-grid,
  .card-grid--policies,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .app-card {
    min-height: 540px;
    padding: 1.8rem;
    grid-template-columns: minmax(180px, 1fr) minmax(240px, 320px);
    grid-template-areas: ". text";
    grid-template-rows: auto;
    align-content: start;
    background-image:
      linear-gradient(90deg, rgba(216, 100, 135, 0.26) 0%, rgba(216, 100, 135, 0.6) 52%, rgba(118, 23, 44, 0.74) 100%),
      url("imagens/App.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .app-copy {
    grid-column: 1;
    justify-self: start;
    max-width: 100%;
  }

  body[data-page="home"] .app-copy {
    grid-area: text;
    justify-self: end;
  }

  body[data-page="home"] .team-section .image-card img {
    max-height: 320px;
  }

  .image-card img {
    min-height: 320px;
  }

  .pricing-card--compact {
    justify-items: stretch;
  }

  .pricing-block {
    --pricing-media-size: 108px;
    gap: 1rem;
    align-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --title-size: 1.85rem;
    --subtitle-size: 1.05rem;
  }

  .menu-panel {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 4.4rem);
    right: 0.6rem;
    left: auto;
    width: min(280px, calc(100vw - 1.2rem));
    min-width: 0;
    max-width: calc(100vw - 1.2rem);
  }

  .hero-card {
    min-height: 540px;
  }

  .hero-copy {
    padding: 2rem 1.5rem;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .hero-media,
  body[data-page="home"] .hero .container {
    min-height: 620px;
  }

  body[data-page="home"] .hero-copy {
    width: min(92vw, 520px);
    padding: 7.8rem 0 2.6rem;
  }

  .hero-title,
  .hero-title--inner {
    max-width: 100%;
  }

  .highlight-quote {
    padding-inline: 0;
  }

  body[data-page="home"] .app-card {
    min-height: 520px;
    padding: 1.4rem;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
    grid-template-areas: ". text";
    grid-template-rows: auto;
    align-content: start;
    background-image:
      linear-gradient(90deg, rgba(216, 100, 135, 0.28) 0%, rgba(216, 100, 135, 0.62) 54%, rgba(118, 23, 44, 0.78) 100%),
      url("imagens/App.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  body[data-page="home"] .app-copy {
    grid-area: text;
    justify-self: end;
    max-width: 240px;
  }

  .review-text {
    font-size: 0.84rem;
  }

  body[data-page="home"] .team-section .image-card img {
    max-height: 260px;
  }

  .map-card iframe {
    height: 340px;
  }

  .site-footer__info {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .site-footer__bottom {
    grid-column: auto;
    justify-self: center;
  }

  .pricing-hero__filters {
    gap: 0.6rem;
  }

  .pricing-hero__filter {
    padding: 0.68rem 0.9rem;
    font-size: 0.8rem;
  }

  body[data-page="policies"] [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(1120px, calc(100% - 1.1rem));
    --body-size: 0.8rem;
  }

  .site-header__inner {
    min-height: 76px;
  }

  section {
    padding-block: 3.4rem;
  }

  .menu-toggle {
    padding: 0.85rem 0.8rem;
  }

  .menu-toggle span {
    width: 1.2rem;
  }

  .hero-card {
    min-height: 500px;
  }

  .hero-media {
    background-position: left top, 64% center;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .hero-media,
  body[data-page="home"] .hero .container {
    min-height: 580px;
  }

  .hero-copy,
  .content-card,
  .info-card,
  .note-card,
  .cta-card,
  .page-hero__panel,
  .pricing-card,
  .pricing-section {
    padding: 1.35rem;
  }

  .brand-pill {
    min-width: 132px;
    padding-inline: 1rem;
  }

  body[data-page="home"] .app-card {
    min-height: 470px;
    padding: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(165px, 210px);
    grid-template-areas: ". text";
    background-image:
      linear-gradient(90deg, rgba(216, 100, 135, 0.3) 0%, rgba(216, 100, 135, 0.64) 56%, rgba(118, 23, 44, 0.8) 100%),
      url("imagens/App.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-template-columns: minmax(0, 1fr) minmax(165px, 210px);
  }

  body[data-page="home"] .app-copy {
    max-width: 210px;
  }

  .accordion__trigger {
    padding-block: 1.15rem;
  }

  .location-actions {
    align-items: stretch;
  }

  .location-actions .button {
    width: 100%;
  }

  .location-actions .location-button {
    width: 3.3rem;
  }

  .pricing-block {
    --pricing-media-size: 88px;
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
