:root {
  --bg: #11100d;
  --bg-2: #1b1712;
  --surface: #fff8ee;
  --surface-2: #f3e4cf;
  --text: #fffaf2;
  --ink: #1d1711;
  --muted: #766653;
  --gold: #e4a72c;
  --gold-2: #ffd072;
  --red: #c9462f;
  --green: #22c55e;
  --green-dark: #128c45;
  --border: rgba(228, 167, 44, 0.34);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(228, 167, 44, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(201, 70, 47, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 248, 238, 0.96), rgba(255, 248, 238, 1));
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 8px max(18px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 16, 13, 0.88);
  color: var(--text);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  object-fit: cover;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
}

.main-nav a,
.main-nav button,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav button:hover,
.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.header-cta {
  background: var(--green-dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.07) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.78) 0%, rgba(10, 9, 7, 0.6) 40%, rgba(10, 9, 7, 0.08) 72%),
    linear-gradient(0deg, rgba(10, 9, 7, 0.68) 0%, rgba(10, 9, 7, 0) 34%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.38) 0%, rgba(10, 9, 7, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 660px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 88svh;
  margin: 0 auto;
  padding: 108px 0 68px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: clamp(2.35rem, 4.4vw, 4.05rem);
}

.hero-text {
  max-width: 540px;
  margin-bottom: 26px;
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(1.03rem, 1.7vw, 1.24rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #07130c;
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.24);
}

.btn-primary:hover {
  background: #35e675;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.feature-poster,
.gallery-item {
  position: relative;
}

.feature-poster figcaption,
.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.78);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  max-width: 880px;
  text-align: center;
}

.intro h2,
.section-heading h2,
.feature h2,
.steps h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.intro p,
.section-heading p,
.feature p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 390px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.visual-story figure {
  position: relative;
  min-width: 0;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 18px 60px rgba(70, 43, 18, 0.12);
}

.visual-story img,
.final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-story-main {
  grid-row: span 2;
  min-height: 480px;
}

.visual-story-copy {
  display: grid;
  align-content: center;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
}

.visual-story-copy .section-kicker {
  color: var(--gold-2);
}

.visual-story-copy h2 {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.visual-story-copy p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 1.05rem;
}

.visual-story-side {
  grid-column: 2;
}

.section-heading .section-kicker,
.intro .section-kicker,
.steps .section-kicker {
  color: var(--red);
}

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

.menu-card,
.step {
  border: 1px solid rgba(29, 23, 17, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 60px rgba(70, 43, 18, 0.1);
}

.menu-card {
  overflow: hidden;
}

.menu-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  background: var(--bg);
  color: var(--text);
}

.menu-card-head span {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card-head small {
  color: rgba(255, 250, 242, 0.72);
  font-weight: 700;
}

.sweet .menu-card-head span {
  color: #ffb1a1;
}

.border-special .menu-card-head span {
  color: #8ef0ad;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 22px 22px;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(201, 70, 47, 0.28);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list span {
  font-weight: 800;
}

.price-list strong {
  color: #b77b11;
  white-space: nowrap;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 88px max(20px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.96), rgba(34, 23, 14, 0.92)),
    url("Imagens/Novas/338570a2-69ab-42f3-9d65-e9b28583b607.jpeg") center / cover;
  color: var(--text);
}

.feature p {
  color: rgba(255, 250, 242, 0.78);
}

.feature-prices {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.feature-prices span {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-2);
  font-weight: 800;
}

.feature-poster {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-poster img {
  width: 100%;
  max-height: 720px;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 18px 60px rgba(70, 43, 18, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.steps {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}

.step {
  padding: 24px;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding: 34px 20px 92px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px) auto;
  gap: 24px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow);
}

.final-photo {
  align-self: stretch;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.final-cta h2 {
  margin-bottom: 8px;
  color: var(--gold-2);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.72);
}

body.menu-open {
  overflow: hidden;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: 24px;
  color: var(--ink);
}

.menu-modal.is-open {
  display: grid;
  place-items: center;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 7, 5, 0.76);
  backdrop-filter: blur(10px);
}

.menu-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  width: min(100%, 1120px);
  max-height: min(92svh, 880px);
  overflow: hidden;
  border: 1px solid rgba(255, 208, 114, 0.42);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.52);
}

.menu-showcase {
  position: relative;
  min-height: 100%;
  background: var(--bg);
}

.menu-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 13, 0), rgba(17, 16, 13, 0.82)),
    linear-gradient(90deg, rgba(17, 16, 13, 0.22), rgba(17, 16, 13, 0));
}

.menu-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-content {
  max-height: min(92svh, 880px);
  overflow-y: auto;
  padding: 34px;
}

.menu-title-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 22px;
}

.menu-title-block .section-kicker {
  color: var(--red);
}

.menu-title-block h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.menu-title-block p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-modal-grid .menu-card {
  background: rgba(255, 255, 255, 0.86);
}

.menu-modal-grid .menu-card-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.menu-modal-grid .border-special {
  grid-column: 1 / -1;
}

.menu-modal-grid .border-special .price-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.menu-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.96), rgba(34, 23, 14, 0.92)),
    url("Imagens/pizza-preparo-gerada.png") center / cover;
  color: var(--text);
}

.menu-modal-actions span {
  color: var(--gold-2);
  font-size: 1.2rem;
  font-weight: 900;
}

.menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 16, 13, 0.86);
  color: var(--text);
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.menu-close:hover {
  background: var(--red);
}

.site-footer {
  background: var(--bg);
  color: rgba(255, 250, 242, 0.72);
  padding: 0 20px 96px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(160px, 0.6fr) minmax(220px, 0.8fr);
  gap: 32px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo-lockup img {
  width: 62px;
  height: 62px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.footer-brand p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav a,
.footer-nav button,
.footer-contact a {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 242, 0.86);
  cursor: pointer;
  font-weight: 800;
}

.footer-nav a:hover,
.footer-nav button:hover,
.footer-contact a:hover {
  color: var(--gold-2);
}

.footer-contact span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact small {
  max-width: 240px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 999px;
  background: var(--green);
  color: #07130c;
  box-shadow: 0 18px 42px rgba(18, 140, 69, 0.34);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(18, 140, 69, 0.42);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-content,
  .feature,
  .section-heading,
  .final-cta-inner,
  .visual-story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .hero-media img {
    object-position: 58% center;
    filter: saturate(1.22) contrast(1.04) brightness(1.08);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 9, 7, 0.78), rgba(10, 9, 7, 0.24)),
      linear-gradient(0deg, rgba(10, 9, 7, 0.72), rgba(10, 9, 7, 0.06) 58%),
      linear-gradient(180deg, rgba(10, 9, 7, 0.36), rgba(10, 9, 7, 0) 32%);
  }

  .menu-grid,
  .menu-modal-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .menu-dialog {
    grid-template-columns: 1fr;
  }

  .menu-showcase {
    min-height: 230px;
  }

  .menu-content {
    padding: 26px;
  }

  .menu-modal-grid .border-special .price-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .gallery-item {
    min-height: 260px;
  }

  .gallery-item.tall {
    max-height: none;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .visual-story-main,
  .visual-story-side {
    grid-row: auto;
    min-height: 340px;
  }

  .visual-story-side {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 8px 14px;
  }

  .brand {
    padding: 0 8px;
    font-size: 0.94rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero-content,
  .section {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-content {
    padding-top: 98px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(1.92rem, 8vw, 2.52rem);
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 1.02rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .intro {
    padding-top: 56px;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .menu-card-head,
  .price-list li {
    grid-template-columns: 1fr;
  }

  .menu-modal {
    padding: 12px;
  }

  .menu-dialog {
    max-height: 94svh;
  }

  .menu-showcase {
    min-height: 170px;
  }

  .menu-content {
    padding: 22px 16px 18px;
  }

  .menu-title-block h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .menu-modal-actions .btn {
    width: 100%;
  }

  .menu-card-head {
    align-items: flex-start;
  }

  .price-list li {
    gap: 2px;
  }

  .final-cta-inner {
    padding: 20px;
  }

  .final-photo {
    min-height: 180px;
  }

  .visual-story {
    width: min(calc(100% - 28px), var(--max));
    padding-bottom: 50px;
  }

  .visual-story-main,
  .visual-story-side {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .visual-story figure {
    min-height: 0;
  }

  .visual-story-copy {
    padding: 22px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .gallery-item.wide {
    aspect-ratio: 16 / 10;
  }

  .feature-poster img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }
}
