:root {
  --bg: #f1f7f6;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #fffdf8;
  --text: #4f5049;
  --muted: #6f7368;
  --primary: #ebb330;
  --primary-deep: #d29c22;
  --secondary: #779474;
  --secondary-deep: #779474;
  --secondary-soft: #429EBD;
  --line: rgba(79, 80, 73, 0.12);
  --shadow: 0 22px 60px rgba(113, 123, 95, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --container-gutter: calc(1rem + 1cm);
  --header-gap: clamp(0.85rem, 1.1vw, 1rem);
  --top-strip-height: 104px;
  --hero-inline-start: clamp(3.8rem, 6vw, 5.5rem);
  --hero-inline-end: clamp(7.8rem, 12vw, 12rem);
}

.scroll-top-button {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(30, 42, 26, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, background-color 220ms ease;
  z-index: 60;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: var(--primary-deep);
}

.scroll-top-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .scroll-top-button {
    right: 1rem;
    bottom: 1rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  display: none;
}

.page-shell::after {
  display: none;
}

.page-container,
.site-header,
.hero {
  width: min(calc(100% - (var(--container-gutter) * 2)), var(--max-width));
  margin-inline: auto;
}

.section,
.top-strip-inner,
.announcement {
  width: min(
    calc(100% - (var(--container-gutter) * 2) - var(--hero-inline-end)),
    calc(var(--max-width) - var(--hero-inline-end))
  );
  margin-right: auto;
  margin-left: calc(
    (100% - min(calc(100% - (var(--container-gutter) * 2)), var(--max-width))) / 2 +
      var(--hero-inline-start)
  );
}

.top-strip {
  position: relative;
  inset: auto;
  z-index: 40;
  background: #429EBD;
  color: #fffdf8;
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(31, 58, 19, 0.18);
}

.top-strip-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--header-gap);
  min-height: 78px;
  padding-block: 0.5rem;
  padding-inline: 1.05rem;
}

.top-strip-social,
.top-strip-contact,
.top-strip-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-strip-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #429EBD;
  line-height: 0;
  padding-block: 0.14rem;
  padding-inline: 0.3rem;
  margin-block: 0;
  margin-left: 0;
}

.top-strip-brand-image {
  width: auto;
  height: auto;
  max-width: 256px;
  max-height: 72px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.top-strip-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.16);
  color: #fffdf8;
  cursor: pointer;
}

.top-strip-menu-toggle span {
  display: block;
  width: 15px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.top-strip-menu-toggle span + span {
  margin-top: 0.5px;
}

.top-strip.is-menu-open .top-strip-menu-toggle span:nth-child(1) {
  transform: translateY(6.65px) rotate(45deg);
}

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

.top-strip.is-menu-open .top-strip-menu-toggle span:nth-child(3) {
  transform: translateY(-6.65px) rotate(-45deg);
}

.top-strip-nav {
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: var(--header-gap);
  min-width: 0;
  padding-left: 0;
  margin-left: auto;
  margin-right: 0;
}

.top-strip-nav a {
  color: #fffdf8;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
}

.top-strip-nav a:hover,
.top-strip-nav a:focus-visible {
  color: rgba(255, 253, 248, 0.82);
}

.top-strip-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(255, 253, 248, 0.85);
  border-radius: 50%;
  color: #fffdf8;
}

.top-strip-social {
  flex-shrink: 0;
  margin-left: 0;
  gap: var(--header-gap);
}

.top-strip-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--header-gap);
  flex-shrink: 0;
  margin-left: var(--header-gap);
}

.top-strip-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip-social .filled-icon {
  fill: currentColor;
  stroke: none;
}

.top-strip-contact a {
  color: #fffdf8;
  font-size: 0.96rem;
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.9rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 42px rgba(122, 121, 113, 0.12);
  flex-wrap: nowrap;
}

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

.brand-logo-image {
  width: 154px;
  height: 72px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-cta,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.top-strip-cta {
  background: var(--primary) !important;
  color: #fffdf8 !important;
  box-shadow: none;
  margin-left: 0;
  padding: 0.52rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
}

.top-strip-social {
  gap: 0.4rem;
}

.nav-cta,
.primary-button {
  background: linear-gradient(135deg, var(--secondary-deep), var(--secondary));
  color: white;
  box-shadow: 0 16px 30px rgba(125, 153, 86, 0.28);
}

.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 253, 248, 0.82);
  color: var(--text);
  border: 1px solid rgba(79, 80, 73, 0.12);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.nav-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 1.2rem;
}

.hero-reference {
  position: relative;
  grid-template-columns: minmax(0, 70%) minmax(280px, 30%);
  align-items: center;
  min-height: calc(100svh - var(--top-strip-height));
  gap: 0;
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
  padding-inline: 0;
}

.hero-reference::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: var(--bg);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.8vw, 3.55rem);
  max-width: min(100%, 760px);
  text-align: left;
  line-height: 1.08;
}

.hero-title-emphasis {
  color: var(--primary);
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
}

.hero-title-desktop {
  display: block;
}

.hero-title-mobile {
  display: none;
}

.hero-text {
  margin: 0.45rem 0 0;
  max-width: min(100%, 900px);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-actions-mobile {
  display: none;
}

.hero-mobile-brand {
  display: none;
}

.hero-mobile-support {
  display: contents;
}

.hero-mobile-visual,
.hero-mobile-photo {
  display: none;
  margin: 0;
}

.hero-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: start;
}

.hero-photo {
  position: relative;
  height: clamp(420px, 56vh, 520px);
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(180deg, #aac97e 0%, #95b96a 100%);
  box-shadow: var(--shadow);
}

.reference-visual {
  align-items: center;
  justify-items: start;
}

.reference-photo {
  width: min(100%, 760px);
  height: clamp(520px, 84vh, 840px);
  min-height: 520px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
  margin-inline: -5.25rem auto;
  justify-self: start;
  transform: translateY(calc(-24px - 10%));
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 253, 248, 0.92) 0 12%, transparent 12.5%),
    radial-gradient(circle at 10% 34%, rgba(255, 253, 248, 0.92) 0 4%, transparent 4.5%),
    radial-gradient(circle at 24% 34%, rgba(255, 253, 248, 0.92) 0 4%, transparent 4.5%),
    radial-gradient(circle at 15% 42%, rgba(255, 253, 248, 0.92) 0 4%, transparent 4.5%),
    radial-gradient(circle at 19% 17%, rgba(255, 253, 248, 0.18) 0 28%, transparent 28.5%);
  opacity: 0.45;
  pointer-events: none;
}

.reference-photo::before {
  display: none;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  object-position: center top;
}

.reference-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-copy-landing {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.8rem;
  max-width: none;
  width: 100%;
  justify-self: start;
  padding-left: var(--hero-inline-start);
  padding-right: 0;
  padding-top: 0;
  transform: translateY(-10%);
}

.hero-copy-landing h1 {
  max-width: min(100%, 760px);
}

.highlight-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 253, 248, 0.85);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.highlight-card:nth-child(2) {
  transform: rotate(2deg) translateX(1.5rem);
}

.highlight-card:nth-child(3) {
  transform: rotate(-1deg) translateX(0.5rem);
}

.highlight-card.warm {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(239, 207, 182, 0.9));
}

.highlight-card.sky {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(220, 232, 200, 0.94));
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(157, 191, 110, 0.18);
  font-size: 1.6rem;
}

.highlight-card h2,
.service-card h3,
.step-card h3,
.rules-card h3,
.contact-card h3,
.about-features h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.2rem;
}

.highlight-card p,
.service-card p,
.step-card p,
.contact-card p,
.about-panel p,
.about-features p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.announcement {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -7.2rem;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #429EBD;
  border: 3px solid #429EBD;
  color: #fffdf8;
  box-shadow: 0 18px 40px rgba(118, 171, 88, 0.2);
  position: relative;
  z-index: 3;
}

.announcement-item {
  display: grid;
  justify-items: center;
  align-content: start;
  justify-content: center;
  gap: 0.55rem;
  min-height: 114px;
  padding: 0.85rem 0.95rem 0.65rem;
  text-align: center;
}

.announcement-item:not(:last-child) {
  border-right: 1px solid rgba(255, 253, 248, 0.28);
}

.announcement-icon {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 42px;
  line-height: 1;
}

.announcement-icon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.announcement-item p {
  margin: 0;
  width: 100%;
  max-width: 18ch;
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}

.intro-story {
  padding-top: 2.8rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 1rem;
}

.story-panel {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(79, 80, 73, 0.08);
  box-shadow: 0 14px 32px rgba(101, 111, 88, 0.1);
}

.story-panel.strong {
  background: linear-gradient(135deg, rgba(157, 191, 110, 0.22), rgba(255, 253, 248, 0.94));
}

.story-panel h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.story-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checklist-panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 4.15rem 0 0;
}

.section.alt {
  position: relative;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.45rem;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.55rem);
  line-height: 1.08;
  max-width: 18ch;
}

.about-grid,
.contact-grid,
.rules-layout,
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.4rem;
}

.map-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.about-panel,
.rules-card,
.contact-card,
.map-card {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

#sobre .about-grid {
  grid-template-columns: 1fr;
}

#sobre .about-panel {
  padding: 1.6rem 1.7rem;
}

#sobre .about-panel p {
  line-height: 1.78;
}

#sobre .about-panel p + p {
  margin-top: 1rem;
}

#sobre .eyebrow {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#sobre .section-heading h2 {
  max-width: 30ch;
}

#servicos .section-heading h2,
#galeria .section-heading h2,
#como-funciona .section-heading h2,
#contactos .section-heading h2 {
  max-width: 30ch;
}

#servicos .eyebrow,
#galeria .eyebrow,
#como-funciona .eyebrow {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-features,
.services-grid,
.steps-grid,
.gallery-grid {
  display: grid;
}

.about-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-features article,
.service-card,
.step-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(79, 80, 73, 0.08);
  box-shadow: 0 14px 32px rgba(101, 111, 88, 0.1);
}

.about-features article span {
  font-size: 1.5rem;
}

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

.service-card.emphasis {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
}

.service-card.emphasis p,
.service-card.emphasis h3 {
  color: inherit;
}

.section-heading-compact {
  margin-top: 1.1rem;
  margin-bottom: 1rem;
}

.services-extra-heading .eyebrow {
  margin: 0;
}

.services-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-extra-price {
  margin-top: 0.9rem;
  color: var(--primary-deep);
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  justify-content: center;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 24px;
  gap: 0.1rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
  background: #d7e6c8;
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.gallery-card-podenga img {
  filter: brightness(1.04) contrast(1.08) saturate(0.94);
  object-position: center 42%;
}

.gallery-card-guete img {
  filter: brightness(1.02) contrast(1.05) saturate(0.92);
  object-position: center 36%;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fffdf8;
  font-size: 1.2rem;
  font-weight: 800;
}

.rules-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.rules-layout {
  margin-top: 1rem;
}

.rules-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.map-card {
  padding: 0.65rem;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.map-card iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(92, 153, 58, 0.12);
  color: var(--secondary-deep);
  flex-shrink: 0;
}

.contact-icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-link .filled-icon {
  fill: currentColor;
  stroke: none;
}

.contact-phone {
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.2;
}

.contact-card.accent {
  background: linear-gradient(135deg, rgba(157, 191, 110, 0.22), rgba(255, 253, 248, 0.96));
}

.site-footer {
  margin-top: 3.6rem;
  padding: 3.1rem 0 1.15rem;
  background: #429EBD;
  color: #fffdf8;
}

.site-footer-inner {
  width: min(calc(100% - (var(--container-gutter) * 2)), var(--max-width));
  margin-inline: auto;
  display: grid;
  gap: 1.1rem;
}

.site-footer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  align-items: end;
}

.site-footer-heading {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.site-footer .eyebrow {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: rgba(255, 253, 248, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer-heading h2 {
  margin: 0;
  max-width: none;
  color: #fffdf8;
  font-size: clamp(1.95rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.site-footer-heading p,
.site-footer-bottom p,
.footer-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-start;
  gap: 0.75rem;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.1);
  color: #fffdf8;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-inline-link:hover,
.footer-inline-link:focus-visible {
  background: rgba(255, 253, 248, 0.16);
  border-color: rgba(255, 253, 248, 0.28);
  transform: translateY(-1px);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.site-footer-grid > * {
  min-width: 0;
}

.footer-card,
.footer-map-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.1);
  box-shadow: 0 20px 48px rgba(9, 42, 52, 0.18);
}

.footer-card {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1.15rem;
  min-width: 0;
}

.footer-card h3 {
  margin: 0;
  color: #fffdf8;
  font-size: 1.06rem;
}

.footer-contact-card .contact-icon-link {
  background: rgba(255, 253, 248, 0.18);
  color: #fffdf8;
}

.footer-contact-card .contact-phone {
  color: #fffdf8;
}

.footer-contact-card {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 253, 248, 0.24);
}

.footer-location-copy {
  display: grid;
  gap: 0.3rem;
}

.footer-detail-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.66);
}

.footer-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  color: #fffdf8;
  font-weight: 700;
  font-size: 0.92rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.footer-cta-card {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 253, 248, 0.24);
}

.footer-cta-card p {
  color: rgba(255, 255, 255, 0.88);
}

.footer-cta-card .primary-button {
  margin-top: auto;
  align-self: center;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fffdf8;
  box-shadow: 0 16px 30px rgba(96, 43, 10, 0.18);
  white-space: nowrap;
  border: 2px solid rgba(255, 253, 248, 0.92);
}

.footer-map-card {
  padding: 0.55rem;
  overflow: hidden;
  min-width: 0;
}

.footer-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  border-radius: 24px;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-credit {
  margin: 0;
  color: #fffdf8;
  font-weight: 600;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.footer-credit-brand {
  color: #ebb330;
}

.footer-credit-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.footer-credit-links .footer-inline-link {
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  background: rgba(255, 253, 248, 0.1);
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 50;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 34, 53, 0.56);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90vh, 960px);
  overflow: auto;
  padding: 1.6rem;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(73, 84, 55, 0.26);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(157, 191, 110, 0.18);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-header {
  padding-right: 3rem;
}

.booking-form {
  margin-top: 1.4rem;
}

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

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

.form-section {
  margin: 0;
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(79, 80, 73, 0.1);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.62);
}

.form-section-header {
  margin-bottom: 0.9rem;
}

.form-section h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  color: var(--primary-deep);
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(79, 80, 73, 0.14);
  border-radius: 16px;
  background: #fffefb;
  color: var(--text);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(157, 191, 110, 0.18);
  border-color: rgba(157, 191, 110, 0.52);
}

.full-width {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1080px) {
  :root {
    --top-strip-height: 92px;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  .services-extra-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 3.65rem;
  }

  .section-heading {
    margin-bottom: 1.3rem;
  }

  .hero-reference {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.92fr);
    gap: 1rem;
  }

  .hero-copy-landing {
    padding-left: clamp(2rem, 4vw, 3rem);
    transform: translateY(-2%);
  }

  .hero-copy-landing h1 {
    max-width: 12ch;
  }

  .hero-text {
    max-width: 32ch;
  }

  .hero-mobile-support {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(185px, 235px);
    gap: 0.12rem;
    align-items: start;
    width: 100%;
  }

  .hero-mobile-visual {
    display: grid;
    align-items: start;
    justify-items: center;
    margin-left: -10%;
  }

  .hero-mobile-photo {
    display: block;
    width: 100%;
    height: clamp(220px, 31vw, 300px);
    overflow: hidden;
  }

  .hero-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-actions-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.05rem;
    position: relative;
    z-index: 2;
  }

  .hero-actions-mobile .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    min-height: 3.5rem;
    padding: 1.05rem 1.25rem;
    font-size: 0.98rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    box-shadow: 0 16px 30px rgba(200, 90, 24, 0.24);
  }

  .reference-photo {
    width: min(100%, 540px);
    min-height: 420px;
    height: clamp(420px, 58vw, 620px);
    transform: translateY(-2%);
  }

  .section,
  .top-strip-inner,
  .announcement {
    width: min(calc(100% - (var(--container-gutter) * 2)), var(--max-width));
    margin-inline: auto;
  }

  .site-header {
    border-radius: 40px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .top-strip-inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.48rem 1rem;
  }

  .top-strip-brand {
    margin-left: 0;
    justify-self: start;
  }

  .top-strip-brand-image {
    max-width: 236px;
    max-height: 64px;
  }

  .top-strip-menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .top-strip-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 1rem;
    flex-wrap: nowrap;
  }

  .top-strip.is-menu-open .top-strip-nav {
    display: flex;
  }

  .top-strip-nav a {
    width: 100%;
  }

  .top-strip-cta,
  .top-strip-social {
    display: none;
  }

  .top-strip-actions {
    display: flex;
    order: 3;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0;
  }

  .top-strip-actions .language-switcher {
    display: flex !important;
    align-items: center;
    margin-left: 0 !important;
  }

  .top-strip-actions .language-switcher [data-language-toggle] {
    padding: 0.36rem 0.62rem !important;
  }

  .hero,
  .about-grid,
  .rules-layout,
  .services-grid,
  .steps-grid,
  .story-grid,
  .site-footer-head {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .hero h1 {
    max-width: unset;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

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

  .announcement {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -4.5rem;
    margin-inline: auto;
  }

  .announcement-item:nth-child(2n) {
    border-right: 0;
  }

  .announcement-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  }

  .hero-reference {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
    padding-top: 1rem;
    padding-bottom: 0.8rem;
  }

  .hero-copy-landing {
    justify-items: start;
    text-align: left;
    justify-self: start;
    gap: 0.75rem;
    max-width: 34rem;
    padding-inline: 0;
    padding-right: 0;
    transform: none;
  }

  .hero-copy-landing h1 {
    max-width: 13ch;
    margin-inline: 0;
    font-size: clamp(2.1rem, 7vw, 2.85rem);
    line-height: 1.02;
    text-align: left;
    text-wrap: pretty;
  }

  #sobre .section-heading h2,
  #servicos .section-heading h2,
  #como-funciona .section-heading h2,
  #contactos .section-heading h2 {
    max-width: 22ch;
    font-size: clamp(1.36rem, 4.45vw, 1.86rem);
  }

  #galeria .section-heading h2 {
    max-width: 26ch;
    font-size: clamp(1.18rem, 3.85vw, 1.58rem);
  }

  .hero-text {
    max-width: 38ch;
    margin-top: 0;
    font-size: 0.98rem;
    line-height: 1.58;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }

  .hero-photo {
    min-height: 320px;
    height: 320px;
  }

  .reference-visual {
    display: none;
  }

  .reference-photo {
    width: min(100%, 420px);
    min-height: 320px;
    height: clamp(320px, 50vh, 420px);
    margin-inline: auto;
    margin-bottom: 0;
    justify-self: center;
    transform: none;
    display: block;
  }

  .reference-photo img {
    object-position: center top;
    display: block;
    margin-bottom: 0;
  }

  .announcement {
    margin-top: 0;
  }

  .announcement-item {
    min-height: 88px;
    padding: 0.75rem 0.7rem;
    justify-items: center;
    align-content: start;
    justify-content: center;
    text-align: center;
  }

  .announcement-item p {
    width: 100%;
    font-size: 0.92rem;
    line-height: 1.24;
    max-width: 16ch;
    text-align: center;
    margin-inline: auto;
  }

  .footer-nav {
    justify-content: flex-start;
  }

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

  .footer-map-card {
    grid-column: 1 / -1;
  }

  .footer-map-card iframe {
    min-height: 280px;
  }

  .site-footer {
    margin-top: 3.7rem;
    padding-top: 3.2rem;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-credit-links {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-map-card {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  :root {
    --container-gutter: clamp(0.95rem, 4vw, 1.2rem);
    --top-strip-height: 80px;
  }

  .top-strip {
    display: block;
  }

  .section {
    padding-top: 2.85rem;
  }

  .section-heading {
    gap: 0.5rem;
    margin-bottom: 1.1rem;
  }

  .section-heading h2,
  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.55rem);
  }

  .site-header,
  .section,
  .hero,
  .announcement {
    width: min(calc(100% - (var(--container-gutter) * 2)), var(--max-width));
  }

  .site-header {
    position: static;
    margin-top: 0.6rem;
    justify-content: center;
    padding: 0.85rem 1rem 1rem;
    flex-wrap: wrap;
  }

  .top-strip-brand-image {
    max-width: 188px;
    max-height: 50px;
    display: block;
    width: auto;
    height: auto;
    flex: 0 0 auto;
  }

  .top-strip-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 74px;
    gap: 0.75rem;
    padding: 0.55rem 0.9rem;
  }

  .brand-logo-image {
    width: 118px;
    height: 58px;
  }

  .top-strip-brand {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    min-width: max-content;
    margin-right: auto;
    padding: 0;
    background: transparent;
  }

  .top-strip-menu-toggle {
    order: 2;
    margin-left: 0;
    width: 35px;
    height: 35px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .top-strip-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    width: auto;
    margin-top: 0;
    padding: 0.75rem 0.95rem;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(79, 80, 73, 0.08);
    box-shadow: 0 18px 34px rgba(54, 73, 42, 0.16);
    gap: 0.15rem;
    z-index: 30;
  }

  .top-strip-nav a {
    width: 100%;
    padding: 0.7rem 0.35rem;
    color: var(--text);
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(79, 80, 73, 0.08);
  }

  .top-strip-nav a:hover,
  .top-strip-nav a:focus-visible {
    color: var(--text);
    background: rgba(92, 153, 58, 0.08);
  }

  .top-strip-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-reference {
    padding-top: 0.9rem;
    padding-bottom: 0.8rem;
  }

  .hero-reference {
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    align-items: start;
    padding-top: 0.9rem;
  }

  .hero-reference::before {
    background: var(--bg);
  }

  .hero-copy-landing {
    align-content: start;
    justify-items: center;
    gap: 0.55rem;
    max-width: 34rem;
    min-height: auto;
    margin-inline: auto;
    padding-inline: 0.15rem;
    padding-top: 1.2rem;
    padding-bottom: 0;
    transform: none;
    text-align: center;
  }

  .hero-mobile-brand {
    display: none;
  }

  .hero-mobile-brand-mark {
    display: none;
  }

  .hero-mobile-brand-image {
    display: none;
  }

  .hero-text {
    display: block;
    max-width: 30ch;
    width: min(100%, 30ch);
    margin-top: 0.55rem;
    padding-right: 0;
    font-size: 0.92rem;
    line-height: 1.56;
    text-align: left;
    align-self: start;
  }

  .hero h1,
  .hero-copy-landing h1 {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    font-size: clamp(1.84rem, 7.55vw, 2.3rem);
    line-height: 1.03;
    margin-inline: auto;
    text-align: left;
    text-align-last: left;
    text-wrap: pretty;
  }

  #sobre .section-heading h2,
  #servicos .section-heading h2,
  #galeria .section-heading h2,
  #como-funciona .section-heading h2,
  #contactos .section-heading h2 {
    font-size: clamp(1.84rem, 7.55vw, 2.3rem);
  }

  .hero-copy-landing .hero-title-base {
    display: block;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }

  .hero-copy-landing .hero-title-mobile-line {
    display: block;
    width: 100%;
  }

  .hero-copy-landing .hero-title-emphasis {
    display: inline;
    max-width: 100%;
    width: auto;
    margin-inline: 0;
    padding-top: 0;
  }

  .hero-copy-landing .hero-title-emphasis-tail {
    display: block;
    width: 100%;
    margin-top: 0.08em;
  }

  .hero-mobile-support {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 148px);
    gap: 0.55rem;
    align-items: end;
    width: 100%;
    max-width: 100%;
  }

  .hero-photo,
  .reference-visual {
    display: none;
  }

  .hero-mobile-visual {
    align-self: start;
    margin-top: -4.95rem;
    margin-left: 0;
    width: 100%;
    max-width: 210px;
    justify-items: center;
  }

  .hero-mobile-photo {
    height: clamp(189px, 29.4vh, 231px);
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-mobile-photo img {
    width: auto;
    max-width: 105%;
    margin-inline: auto;
    transform: translateX(-20%);
  }

  .hero-actions-mobile {
    margin-top: -1.45rem;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-actions-mobile .primary-button {
    width: 90%;
    padding: 1rem 1.35rem;
    font-size: 1rem;
  }

  .hero-actions-mobile .primary-button:hover,
  .hero-actions-mobile .primary-button:focus-visible {
    transform: none;
  }

  .hero-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid,
  .about-features,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-nested {
    grid-template-columns: 1fr;
  }

  .announcement {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 24px;
  }

  .announcement-item {
    min-height: 72px;
    padding: 0.62rem 0.5rem 0.68rem;
    justify-items: center;
    align-content: start;
    justify-content: center;
    text-align: center;
  }

  .announcement-item:nth-child(2n) {
    border-right: 0;
  }

  .announcement-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  }

  .announcement-item p {
    width: 100%;
    max-width: 15ch;
    font-size: 0.84rem;
    line-height: 1.22;
    text-align: center;
    margin-inline: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    grid-auto-rows: auto;
    overflow: visible;
    border-radius: 0;
  }

  .gallery-card {
    border-radius: 18px;
    aspect-ratio: 0.9 / 1;
  }

  .modal-panel {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .modal-header {
    padding-right: 2.2rem;
  }

  .site-footer {
    padding: 2.45rem 0 1.15rem;
  }

  .site-footer-heading h2 {
    max-width: 12ch;
  }

  .site-footer-grid {
    gap: 0.75rem;
  }

  .footer-card,
  .footer-map-card {
    border-radius: 24px;
  }

  .footer-card {
    padding: 1rem;
  }

  .footer-map-card {
    padding: 0.45rem;
  }

  .footer-nav a,
  .footer-cta-card .primary-button,
  .footer-inline-link {
    width: 100%;
    justify-content: center;
  }

  .footer-credit-links {
    gap: 0.65rem;
  }

  .site-footer-social {
    flex-wrap: wrap;
  }

  .footer-credit {
    font-size: 0.56rem;
  }

  .footer-map-card iframe {
    height: 190px;
    min-height: 190px;
    border-radius: 20px;
  }

  .scroll-top-button {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 420px) {
  .hero-copy-landing {
    padding-inline: 0;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 0;
    gap: 0.52rem;
  }

  .hero h1,
  .hero-copy-landing h1 {
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.64rem, 7vw, 2rem);
    text-align: left;
    text-align-last: left;
  }

  #sobre .section-heading h2,
  #servicos .section-heading h2,
  #galeria .section-heading h2,
  #como-funciona .section-heading h2,
  #contactos .section-heading h2 {
    font-size: clamp(1.64rem, 7vw, 2rem);
  }

  .hero-text {
    max-width: 100%;
    width: 100%;
    margin-top: 0.45rem;
    font-size: 0.8rem;
    line-height: 1.44;
    text-align: left;
  }

  .hero-reference {
    min-height: auto;
  }

  .hero-copy-landing .hero-title-base {
    line-height: 1.02;
  }

  .hero-mobile-support {
    grid-template-columns: minmax(0, 1.08fr) minmax(120px, 138px);
    gap: 0.08rem;
    align-items: start;
  }

  .hero-mobile-photo {
    height: clamp(170px, 25.2vh, 205px);
  }

  .hero-mobile-visual {
    margin-top: -4.1rem;
    margin-left: 0;
    max-width: 172px;
  }

  .hero-actions-mobile .primary-button {
    width: 90%;
    min-height: 3.25rem;
    padding-block: 1rem;
    padding-inline: 1rem;
    font-size: 0.95rem;
  }

  .announcement {
    grid-template-columns: 1fr;
  }

  .announcement-item p {
    font-size: 0.86rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .announcement-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  }

  .announcement-item {
    border-right: 0;
  }

  .gallery-grid {
    gap: 0.45rem;
  }
}
