:root {
  --blue: #1D6FB8;
  --blue-dark: #0D2845;
  --sky: #6EC1F5;
  --orange: #FF8A00;
  --yellow: #FFD983;
  --ink: #0D2845;
  --muted: #64748B;
  --cream: #FBF3E0;
  --cream-light: #FFFDF7;
  --cloud: #F7FAFF;
  --soft: #FFF6EB;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}

body.bg-white {
  background-color: var(--cream-light);
}

.bg-marmota-blue {
  background-color: var(--blue);
}

.bg-marmota-sky {
  background-color: var(--sky);
}

.bg-marmota-orange {
  background-color: var(--orange);
}

.bg-marmota-ink {
  background-color: var(--ink);
}

.bg-marmota-soft {
  background-color: var(--soft);
}

.bg-marmota-cloud {
  background-color: var(--cloud);
}

.text-marmota-blue {
  color: var(--blue);
}

.text-marmota-orange {
  color: var(--orange);
}

.text-marmota-ink {
  color: var(--ink);
}

.text-marmota-muted {
  color: var(--muted);
}

.border-marmota-blue {
  border-color: var(--blue);
}

.border-marmota-orange {
  border-color: var(--orange);
}

.shadow-soft {
  box-shadow: 0 18px 50px rgba(7, 19, 56, 0.10);
}

.shadow-lift {
  box-shadow: 0 22px 60px rgba(0, 82, 232, 0.18);
}

.hover\:text-marmota-blue:hover {
  color: var(--blue);
}

.hover\:shadow-lift:hover {
  box-shadow: 0 22px 60px rgba(0, 82, 232, 0.18);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(13, 40, 69, 0.08);
}

.brand-logo img {
  width: 56px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 14px rgba(13, 40, 69, 0.14));
}

.brand-logo span {
  display: inline-block;
}

.site-header {
  background-color: rgba(255, 253, 247, 0.92);
}

.hero-shell {
  background:
    radial-gradient(circle at 75% 52%, rgba(29, 111, 184, 0.18), transparent 31%),
    radial-gradient(circle at 7% 88%, rgba(255, 138, 0, 0.10), transparent 24%),
    linear-gradient(180deg, #FFFDF7 0%, #FFF6EB 100%);
}

.hero-wave {
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  background:
    radial-gradient(70% 55% at 7% 8%, rgba(29, 111, 184, 0.10) 0 42%, transparent 43%),
    radial-gradient(76% 55% at 38% 30%, rgba(255, 255, 255, 0.72) 0 48%, transparent 49%),
    radial-gradient(90% 56% at 64% 78%, rgba(29, 111, 184, 0.08) 0 45%, transparent 46%);
  pointer-events: none;
}

.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.decor-star {
  color: var(--blue);
  font-size: 1.4rem;
  opacity: 0.65;
}

.decor-loop {
  width: 64px;
  height: 64px;
  border: 4px solid var(--orange);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: rotate(-18deg);
}

.decor-lines,
.decor-lines::before,
.decor-lines::after {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.decor-lines {
  transform: rotate(58deg);
}

.decor-lines::before,
.decor-lines::after {
  content: "";
  position: absolute;
  left: -2px;
}

.decor-lines::before {
  top: -18px;
  transform: rotate(18deg);
}

.decor-lines::after {
  bottom: -18px;
  transform: rotate(-18deg);
}

.hero-visual {
  display: grid;
  min-height: 480px;
  overflow: visible;
  place-items: center;
}

.hero-backdrop {
  opacity: 0.74;
}

.hero-secondary-cta {
  background-color: #FFFDF7;
}

.hero-products-picture {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  place-items: center;
}

.hero-products-image {
  position: relative;
  display: block;
  width: min(100%, 760px);
  max-width: none;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 26px 36px rgba(13, 40, 69, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-products-image:hover {
  filter: drop-shadow(0 30px 42px rgba(13, 40, 69, 0.22));
  transform: translateY(-5px) scale(1.01);
}

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

.section-heading h2 {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
}

#section-product-grid {
  background: linear-gradient(180deg, #FFFDF7 0%, #FFFFFF 100%);
}

#section-benefits,
#section-faq {
  background: #FFFFFF;
}

.product-card {
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(13, 40, 69, 0.10);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(7, 19, 56, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover {
  border-color: rgba(255, 138, 0, 0.35);
  box-shadow: 0 20px 45px rgba(7, 19, 56, 0.12);
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  object-position: center;
}

.product-card h3 {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 900;
}

.product-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  margin-top: 14px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--blue-dark);
  padding: 0.7rem 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 200ms ease, background-color 200ms ease;
}

.product-card button:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.benefit-card > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px;
  font-size: 1.8rem;
}

.benefit-card h3 {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.benefit-card p {
  margin-top: 5px;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.55;
}

.about-panel {
  position: relative;
  background:
    radial-gradient(circle at 91% 30%, rgba(255, 255, 255, 0.72) 0 16%, transparent 17%),
    linear-gradient(110deg, #FFF6EB 0%, #FBF3E0 100%);
}

.about-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  border: 26px solid rgba(255, 255, 255, 0.35);
}

.about-mascot-wrap {
  margin-top: -10px;
}

.steps-wrap {
  position: relative;
}

.steps-wrap::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 54px;
  display: none;
  border-top: 1px dashed #AAB7C9;
}

.step-card {
  position: relative;
  text-align: center;
}

.step-card > span {
  position: absolute;
  left: 50%;
  top: -7px;
  z-index: 2;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.step-icon {
  display: grid;
  width: 106px;
  height: 106px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #F8FBFF;
  color: var(--ink);
  font-size: 2.3rem;
  box-shadow: 0 10px 24px rgba(7, 19, 56, 0.05);
}

.step-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.step-card p {
  max-width: 220px;
  margin: 8px auto 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20px 20px, #fff 3px, transparent 4px),
    radial-gradient(circle at 70px 60px, #fff 2px, transparent 3px);
  background-size: 92px 92px;
}

.cta-mascot-image {
  width: min(210px, 85%);
  max-height: 210px;
  align-self: end;
  object-fit: contain;
  transform: translateY(10px);
}

.kv-image {
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(13, 40, 69, 0.16));
}

.about-mascot-image {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: min(74%, 330px);
  max-height: 360px;
  transform: translateX(-50%);
}

@media (min-width: 1024px) {
  .about-mascot-wrap {
    margin-top: 0;
  }

  .about-mascot-image {
    left: 16px;
    bottom: -22px;
    width: min(78%, 360px);
    max-height: 390px;
    transform: none;
  }
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(7, 19, 56, 0.03);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 48px;
  cursor: pointer;
  align-items: center;
  padding: 0 54px 0 22px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  content: "›";
  position: absolute;
  right: 22px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 220ms ease, opacity 220ms ease;
}

.faq-item[open] .faq-panel {
  max-height: 160px;
  opacity: 1;
}

.faq-panel p {
  padding: 0 22px 18px;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFDF7 0%, #FBF3E0 100%);
}

.footer-shell h3 {
  margin-bottom: 15px;
  color: var(--ink);
  font-weight: 900;
}

.footer-shell a,
.footer-shell p,
.footer-help-button {
  display: block;
  margin-top: 9px;
  color: #334155;
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.footer-help-button {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.break-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-shell a:hover,
.footer-help-button:hover,
.footer-help-button:focus-visible {
  color: var(--blue);
}

.footer-help-button:focus-visible {
  outline: 2px solid rgba(29, 111, 184, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #20C45A;
  padding: 10px 18px 10px 11px;
  color: #fff;
  box-shadow: 0 16px 36px rgba(10, 100, 47, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.instagram-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 52%, #FCAF45 100%);
  padding: 10px 18px 10px 11px;
  color: #fff;
  box-shadow: 0 16px 36px rgba(131, 58, 180, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 20px 44px rgba(10, 100, 47, 0.36);
  transform: translateY(-3px);
}

.instagram-float:hover {
  box-shadow: 0 20px 44px rgba(131, 58, 180, 0.36);
  transform: translateY(-3px);
}

.instagram-float span,
.whatsapp-float span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.instagram-float svg,
.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.instagram-float strong,
.whatsapp-float strong {
  font-size: 0.78rem;
  line-height: 1.15;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 28px;
}

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

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 69, 0.58);
  backdrop-filter: blur(8px);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(13, 40, 69, 0.30);
  animation: modalIn 180ms ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.gallery-modal__close:hover {
  border-color: var(--blue);
  background: #EFF6FF;
  transform: rotate(6deg) scale(1.04);
}

.gallery-modal__header {
  padding-right: 52px;
  text-align: center;
}

.gallery-modal__header p {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-modal__header h2 {
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 10px 24px rgba(13, 40, 69, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  box-shadow: 0 18px 40px rgba(13, 40, 69, 0.14);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #E5EAF3;
  border-radius: 18px;
  background: #F8FAFC;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.gallery-item.is-active img {
  filter: blur(5px) brightness(0.58);
  transform: scale(1.04);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(13, 40, 69, 0.18);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity 200ms ease;
}

.gallery-item.is-active .gallery-item__overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery-item__overlay h3 {
  max-width: 100%;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.gallery-item__overlay p {
  border-radius: 999px;
  background: var(--orange);
  padding: 0.35rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
}

.gallery-item__actions {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.gallery-item__actions a,
.gallery-item__actions button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.gallery-item__actions a:hover,
.gallery-item__actions button:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.gallery-item__actions svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(13, 40, 69, 0.76);
  backdrop-filter: blur(10px);
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(92vw, 980px);
  max-height: 82vh;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox__close {
  position: absolute;
  right: 26px;
  top: 26px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 200ms ease, background-color 200ms ease;
}

.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.04);
}

.help-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: 24px;
}

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

.help-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 69, 0.58);
  backdrop-filter: blur(8px);
}

.help-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: #FFFDF7;
  padding: 30px;
  box-shadow: 0 28px 80px rgba(13, 40, 69, 0.30);
  animation: modalIn 180ms ease-out;
}

.help-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.help-modal__close:hover {
  border-color: var(--blue);
  background: #EFF6FF;
  transform: rotate(6deg) scale(1.04);
}

.help-modal__eyebrow {
  padding-right: 52px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-modal h2 {
  margin-top: 8px;
  padding-right: 52px;
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.help-modal__content {
  margin-top: 18px;
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.75;
}

.help-modal__content p + p {
  margin-top: 12px;
}

.help-modal__content ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 1.1rem;
}

.help-modal__content li::marker {
  color: var(--orange);
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .steps-wrap::before {
    display: block;
  }
}

@media (max-width: 1023px) {
  .hero-visual {
    min-height: 360px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-backdrop {
    inset: 24% 5% 13%;
    opacity: 0.34;
  }

  .hero-products-image {
    width: min(104vw, 680px);
    max-height: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 72px;
    justify-content: center;
    padding-inline: 18px;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    font-size: 1.45rem;
    gap: 8px;
  }

  .brand-logo img {
    width: 46px;
    height: 40px;
  }

  .hero-container {
    gap: 18px;
    padding: 30px 18px 34px;
    justify-items: stretch;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    max-width: 21rem;
    margin-inline: auto;
    font-size: clamp(2rem, 9.5vw, 2.55rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: 22rem;
    margin: 16px auto 0;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    width: 100%;
    max-width: 22rem;
    margin: 22px auto 0;
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
    min-height: 48px;
    padding: 0.82rem 1.1rem !important;
    border-radius: 16px;
    font-size: 0.88rem;
    white-space: normal;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
    max-width: 21rem;
    margin: 20px auto 0;
    gap: 9px 12px;
  }

  .hero-badges > span {
    line-height: 1.25;
  }

  .hero-visual {
    width: 100%;
    min-height: 220px;
    margin-top: 2px;
    margin-inline: auto;
  }

  .hero-products-image {
    width: min(100%, 390px);
    max-height: 245px;
  }

  .hero-products-image:hover {
    transform: none;
  }

  .benefit-card {
    align-items: flex-start;
  }

  .benefit-card > span {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }

  .whatsapp-float {
    padding-right: 11px;
  }

  .instagram-float {
    bottom: 84px;
    padding-right: 11px;
  }

  .instagram-float strong,
  .whatsapp-float strong {
    display: none;
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal__dialog {
    max-height: 92vh;
    border-radius: 22px;
    padding: 20px 16px;
  }

  .gallery-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .help-modal {
    padding: 14px;
  }

  .help-modal__dialog {
    max-height: 90vh;
    border-radius: 22px;
    padding: 24px 20px;
  }

  .help-modal__content {
    font-size: 0.92rem;
  }

  .gallery-item__overlay {
    gap: 8px;
    padding: 10px;
    background: rgba(13, 40, 69, 0.20);
  }

  .gallery-item__overlay h3 {
    display: none;
  }

  .gallery-item__overlay p {
    padding: 0.28rem 0.68rem;
    font-size: 0.86rem;
  }

  .gallery-item__actions {
    gap: 7px;
  }

  .gallery-item__actions a,
  .gallery-item__actions button {
    width: 38px;
    height: 38px;
  }

  .gallery-item__actions svg {
    width: 20px;
    height: 20px;
  }

  .about-panel {
    gap: 10px;
    padding-bottom: 0;
  }

  .about-mascot-wrap {
    min-height: 250px !important;
  }

  .about-mascot-image {
    bottom: -10px;
    width: min(82%, 290px);
    max-height: 290px;
  }
}
