@font-face {
  font-family: "Blauer Nue";
  src: url("assets/fonts/BlauerNue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Blauer Nue";
  src: url("assets/fonts/BlauerNue-SemiBold.woff2") format("woff2");
  font-weight: 650;
  font-display: swap;
}

@font-face {
  font-family: "Blauer Nue";
  src: url("assets/fonts/BlauerNue-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Brother";
  src: url("assets/fonts/BROTHER-Bold.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --deep: #03283a;
  --deep-2: #0b3448;
  --wave: #345862;
  --sand: #f3ece2;
  --paper: #fffaf0;
  --acid: #e5e58d;
  --sun: #ffd166;
  --mint: #9cb8ba;
  --green: #59d8a1;
  --white: #ffffff;
  --text: #082c3d;
  --muted: #6d7b80;
  --line: rgba(3, 40, 58, .11);
  --shadow: 0 18px 48px rgba(3, 40, 58, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Blauer Nue", Arial, sans-serif;
  background: var(--sand);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--sand);
  background: var(--deep);
  text-decoration: none;
  font-weight: 900;
}

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

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--sand);
  background: var(--deep);
  transition: opacity .62s ease, visibility .62s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  width: min(230px, 70vw);
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.preloader-card img {
  width: min(156px, 46vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .16));
  animation: preloaderLogo 1.8s ease-in-out infinite;
}

.preloader-card p {
  margin: 0;
  color: rgba(243, 236, 226, .78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preloader-bar {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(243, 236, 226, .18);
}

.preloader-bar span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sun), var(--acid), var(--green));
  animation: preloaderBar 1.35s ease-in-out infinite;
}

.intro-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 209, 102, .22), transparent 28%),
    radial-gradient(circle at 86% 5%, rgba(156, 184, 186, .24), transparent 30%),
    rgba(3, 40, 58, .56);
  backdrop-filter: blur(10px);
}

.intro-modal.is-hidden {
  display: none;
}

.intro-card {
  width: min(460px, 100%);
  padding: clamp(18px, 4vw, 26px);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 229, 141, .24), transparent 30%),
    var(--paper);
  box-shadow: 0 28px 90px rgba(3, 40, 58, .32);
}

.intro-card.shake {
  animation: shake .28s ease;
}

.intro-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-brand img {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  object-fit: cover;
}

.intro-card h2 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(27px, 5vw, 38px);
  line-height: .96;
  letter-spacing: -.045em;
}

.intro-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.intro-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.intro-card label small {
  min-height: 16px;
  color: #b94646;
  font-size: 12px;
  font-weight: 650;
}

.intro-card input,
.intro-card select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(3, 40, 58, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .74);
  color: var(--deep);
  font: inherit;
  font-size: 16px;
  font-weight: 650;
}

.intro-card input:focus,
.intro-card select:focus {
  outline: 4px solid rgba(156, 184, 186, .24);
  border-color: rgba(3, 40, 58, .24);
}

.intro-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.intro-actions button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  color: var(--sand);
  background: var(--deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.reveal-message,
.typing-indicator {
  opacity: 0;
  transform: translateY(10px) scale(.985);
}

.reveal-message.is-visible,
.typing-indicator.is-visible {
  animation: messageIn .36s ease both;
}

.reveal-message[data-after-typing="true"]:not(.is-visible) {
  display: none;
}

.typing-indicator.is-done {
  display: none;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderBar {
  0% {
    transform: translateX(-115%);
  }
  55%,
  100% {
    transform: translateX(255%);
  }
}

@keyframes preloaderLogo {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.025);
  }
}

.typing-indicator {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-self: start;
  margin-left: 52px;
  padding: 12px 14px;
  border-radius: 18px 18px 18px 7px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 12px rgba(3, 40, 58, .075);
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aa8ad;
  animation: typingDot 1.05s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: .14s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: .28s;
}

@keyframes typingDot {
  0%, 80%, 100% {
    opacity: .35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}

.wa-shell {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  min-height: 100svh;
  background: #efe7da;
}

.wa-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 66px 1fr;
  height: 100svh;
  overflow: auto;
  border-right: 1px solid rgba(3, 40, 58, .12);
  background: #ffffff;
  backdrop-filter: blur(16px);
}

.icon-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 22px 10px;
  border-right: 1px solid rgba(3, 40, 58, .08);
  background: #f3f3f3;
}

.icon-rail a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #6c6c6c;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.icon-rail a:hover {
  color: var(--deep);
  background: #ffffff;
  transform: translateY(-1px);
}

.icon-rail img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.icon-rail span {
  font-size: 26px;
  line-height: 1;
}

.rail-gear {
  border: 1px solid rgba(3, 40, 58, .1);
}

.chat-panel-list {
  min-width: 0;
  overflow: auto;
  background: #ffffff;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(3, 40, 58, .07);
  background: #ffffff;
}

.sidebar-brand img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  object-fit: cover;
}

.sidebar-brand strong,
.sidebar-brand span {
  display: block;
}

.sidebar-brand strong {
  font-size: 19px;
  font-weight: 900;
}

.sidebar-brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.search-pill {
  margin: 14px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #879398;
  background: #f3f4f4;
  font-size: 14px;
  font-weight: 650;
}

.chat-list {
  display: grid;
  gap: 0;
  padding: 0;
}

.chat-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 0;
  border-bottom: 1px solid rgba(3, 40, 58, .07);
  text-decoration: none;
}

.chat-list a:hover,
.chat-list a.active {
  background: #f5f6f6;
}

.chat-list img,
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.chat-list a[href="#contacto"] img {
  object-fit: cover;
  object-position: 50% 53%;
}

.avatar {
  background: var(--deep);
}

.chat-preview {
  min-width: 0;
}

.chat-preview strong,
.chat-preview span {
  display: block;
}

.chat-preview strong {
  overflow: hidden;
  color: #161616;
  font-size: 17px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-preview span {
  overflow: hidden;
  color: #6b6b6b;
  font-size: 15px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-list time {
  align-self: start;
  padding-top: 3px;
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 650;
}

.wa-chat {
  min-width: 0;
}

.chat-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 10px clamp(12px, 3vw, 24px);
  border-bottom: 1px solid var(--deep);
  background: var(--deep);
  color: var(--sand);
}

.mobile-logo img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}

.chat-title {
  min-width: 0;
  flex: 1;
}

.chat-title strong,
.chat-title span {
  display: block;
}

.chat-title strong {
  font-size: 16px;
  font-weight: 900;
}

.chat-title span {
  overflow: hidden;
  color: rgba(243, 236, 226, .72);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-cta {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.chat-wallpaper {
  position: relative;
  min-height: calc(100svh - 68px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 236, 226, .42), rgba(243, 236, 226, .36)),
    url("assets/img/wallpaper-playago.png") center top / 460px auto repeat,
    #efe7da;
}

.chat-wallpaper::before {
  content: none;
}

.message-day {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(1080px, calc(100% - 16px));
  margin-inline: auto;
  padding: clamp(22px, 4vw, 42px) 0;
  scroll-margin-top: 78px;
}

.hero-day {
  min-height: auto;
  align-content: start;
}

.date-chip {
  justify-self: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 30px rgba(3, 40, 58, .08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.date-chip.dark {
  color: var(--sand);
  background: rgba(243, 236, 226, .15);
}

.msg {
  position: relative;
  max-width: min(560px, 64%);
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(3, 40, 58, .075);
}

.msg p:last-child,
.msg ul:last-child {
  margin-bottom: 0;
}

.msg.partner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: start;
  justify-self: end;
  max-width: min(620px, 72%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.msg.playago {
  justify-self: start;
  margin-left: 52px;
  border-bottom-left-radius: 7px;
  background: rgba(255, 255, 255, .95);
}

.msg.playago::before {
  content: "";
  position: absolute;
  top: 0;
  left: -52px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  background:
    url("assets/logos/playago-avatar.png") center / cover no-repeat,
    var(--deep);
  box-shadow: 0 5px 16px rgba(3, 40, 58, .16);
}

.msg.playago.media-msg::before,
.msg.playago.gallery-msg::before,
.msg.playago.tag-msg::before {
  content: none;
}

.msg.playago.media-msg,
.msg.playago.gallery-msg,
.msg.playago.tag-msg {
  margin-left: 0;
}

.msg.short {
  max-width: 340px;
}

.msg.partner.short {
  max-width: min(480px, 68%);
}

.partner-avatar {
  order: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  color: var(--sun);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 209, 102, .85), transparent 30%),
    var(--deep);
  box-shadow: 0 5px 16px rgba(3, 40, 58, .16);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.partner-bubble {
  order: 1;
  padding: 12px 14px;
  border-radius: 18px 5px 18px 18px;
  background: #dff6d8;
  box-shadow: 0 4px 12px rgba(3, 40, 58, .075);
}

.partner-bubble strong {
  display: block;
  margin-bottom: 5px;
  color: #4aaee8;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.msg.strong {
  background: #dff6d8;
}

.msg.playago.strong {
  background: rgba(255, 255, 255, .95);
}

.intro-msg {
  padding: 18px 20px;
}

.msg-logo {
  width: 96px;
  height: 50px;
  object-fit: cover;
  object-position: 50% 53%;
  border-radius: 14px;
  margin-bottom: 12px;
}

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

h1 {
  max-width: 460px;
  margin-bottom: 12px;
  color: var(--deep);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.msg p,
.msg li {
  color: #50656c;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.45;
  font-weight: 650;
}

.partner p {
  color: var(--deep);
}

.media-msg,
.gallery-msg {
  overflow: hidden;
  padding: 0;
}

.media-msg img,
.gallery-msg img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.media-msg p {
  padding: 14px 16px;
}

.voucher-strip,
.flow-messages {
  display: grid;
  gap: 12px;
}

.voucher-strip {
  grid-template-columns: repeat(3, 1fr);
  width: min(900px, 100%);
  margin-inline: auto;
}

.voucher-strip article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 30px rgba(3, 40, 58, .08);
}

.voucher-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--deep);
  font-family: "Brother", "Blauer Nue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.voucher-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 19px;
  line-height: 1;
}

.voucher-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.dark-day {
  width: 100%;
  max-width: none;
  padding-inline: max(8px, calc((100vw - 430px - 1080px) / 2));
  background:
    linear-gradient(180deg, rgba(3, 40, 58, .82), rgba(3, 40, 58, .9)),
    url("assets/img/playago-blue-pattern.png") center center / cover no-repeat,
    var(--deep);
}

.dark-day::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background: radial-gradient(circle at 50% 18%, rgba(41, 199, 200, .16), transparent 34%);
  pointer-events: none;
}

.dark-day > * {
  position: relative;
  width: min(1080px, calc(100vw - 446px));
  margin-inline: auto;
}

.dark-bubble {
  background: rgba(243, 236, 226, .08) !important;
  border: 1px solid rgba(243, 236, 226, .14);
}

.dark-bubble h2 {
  color: var(--acid);
}

.dark-bubble p {
  color: rgba(243, 236, 226, .72);
}

.flow-messages div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 18px;
  color: var(--sand);
  background: rgba(243, 236, 226, .1);
  backdrop-filter: blur(10px);
}

.flow-messages span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  color: var(--deep);
  background: var(--sun);
  font-weight: 900;
}

.flow-messages p {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.tag-msg {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-msg span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-day {
  padding-bottom: 76px;
}

.msg ul {
  margin: 0;
  padding-left: 22px;
}

.composer-card {
  justify-self: stretch;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.composer-input {
  display: grid;
  grid-template-columns: 30px 1fr 34px;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(3, 40, 58, .08);
  border-radius: 999px;
  background: var(--paper);
}

.composer-input span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.composer-input span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--sand);
}

.composer-input p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.composer-actions a {
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 13px 16px;
  border-radius: 16px;
  background: var(--deep);
  color: var(--sand);
  font-weight: 900;
  text-decoration: none;
}

.composer-actions a + a {
  background: var(--acid);
  color: var(--deep);
}

.composer-card small {
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 960px) {
  .wa-shell {
    grid-template-columns: 1fr;
  }

  .wa-sidebar {
    display: none;
  }

  .chat-wallpaper::before {
    inset: 68px 0 0;
  }

  .dark-day {
    padding-inline: 16px;
  }

  .dark-day > * {
    width: min(780px, calc(100vw - 32px));
  }
}

@media (max-width: 700px) {
  html,
  body {
    min-height: 100%;
  }

  .intro-modal {
    min-height: 100dvh;
    min-height: 100svh;
    place-items: start center;
    align-items: start;
    padding: max(14px, env(safe-area-inset-top)) 14px max(14px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .intro-card {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .intro-card h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .intro-card p {
    font-size: 14px;
  }

  .intro-card input,
  .intro-card select {
    height: 52px;
    font-size: 16px;
    border-radius: 16px;
  }

  .intro-actions button {
    min-height: 54px;
  }

  .chat-top {
    min-height: 76px;
    gap: 10px;
    padding: 9px 12px;
  }

  .mobile-logo img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .chat-title strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .chat-title span {
    font-size: 14px;
    line-height: 1.15;
    white-space: normal;
  }

  .top-cta {
    display: none;
  }

  .message-day {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
    padding-block: 22px;
  }

  .hero-day {
    min-height: auto;
    padding-top: 26px;
  }

  .msg {
    max-width: 82%;
    padding: 12px 13px;
    border-radius: 17px;
  }

  .msg.partner {
    grid-template-columns: minmax(0, 1fr) 31px;
    gap: 7px;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .partner-avatar,
  .msg.playago::before {
    width: 31px;
    height: 31px;
    border-width: 1px;
    font-size: 10px;
  }

  .partner-bubble {
    justify-self: end;
    max-width: min(82vw, calc(100vw - 88px));
    padding: 11px 12px;
    border-radius: 16px 5px 16px 16px;
  }

  .partner-bubble strong {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .msg.playago {
    margin-left: 39px;
    max-width: min(82%, calc(100% - 48px));
  }

  .msg.playago::before {
    left: -39px;
  }

  .typing-indicator {
    margin-left: 39px;
    padding: 10px 12px;
  }

  .intro-msg {
    padding: 18px;
  }

  h1 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(22px, 6.6vw, 30px);
  }

  .msg p,
  .msg li {
    font-size: 16px;
    line-height: 1.36;
  }

  .voucher-strip {
    grid-template-columns: 1fr;
  }

  .media-msg img,
  .gallery-msg img {
    max-height: none;
  }

  .composer-actions a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .chat-wallpaper {
    background-size: 360px auto;
  }

  .message-day {
    width: calc(100% - 28px);
    gap: 11px;
    padding-block: 18px;
  }

  .date-chip {
    padding: 6px 11px;
    font-size: 10px;
  }

  .msg {
    max-width: 84%;
  }

  .msg.partner {
    grid-template-columns: minmax(0, 1fr) 29px;
    gap: 6px;
  }

  .partner-avatar,
  .msg.playago::before {
    width: 29px;
    height: 29px;
    font-size: 9px;
  }

  .partner-bubble {
    max-width: min(84vw, calc(100vw - 76px));
    padding: 10px 11px;
  }

  .msg.playago {
    margin-left: 36px;
    max-width: min(84%, calc(100% - 44px));
  }

  .msg.playago::before {
    left: -36px;
  }

  .typing-indicator {
    margin-left: 36px;
  }

  .msg p,
  .msg li {
    font-size: 15px;
  }
}
