:root {
  color-scheme: light;
  font-family: Inter, Arial, sans-serif;
  background: #3aafa9;
  color: #333;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { background: #3aafa9; }
body { margin: 0; min-width: 320px; background: #3aafa9; }
img { display: block; max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

.page {
  width: min(calc(100% - 28px), 568px);
  margin: 0 auto;
  padding: 8px 0 64px;
}

.brand-image {
  width: 32%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-image,
.content-image {
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  border-radius: 14px;
  object-fit: cover;
}

.content-image--tall { object-fit: contain; }

.action {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 16px 76px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.action:hover { filter: brightness(.96); transform: translateY(-1px); }
.action--company { background: #fff; color: #eb3b5a; }
.action--dark { background: #19242a; color: #fff; border-radius: 10px; }
.action--whatsapp { background: #04d248; color: #fff; }

.action__icon,
.wa-symbol {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 24px;
  font-size: 17px;
  line-height: 1;
}

.action--company .action__icon { color: #eb3b5a; font-size: 15px; }

.action--whatsapp .action__icon {
  width: 34px;
  flex-basis: 34px;
  margin-left: -34px;
  padding-right: 14px;
  border-right: 1px solid rgb(0 104 37 / 24%);
  border-radius: 0;
  font-size: 20px;
}

.intro {
  margin: 0 0 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.gallery {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.gallery img {
  width: 100%;
  height: auto;
  min-width: 0;
  border-radius: 0;
  object-fit: cover;
}

.gallery--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feedback-title {
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  border-radius: 14px;
}

.faq-section {
  width: 100%;
  margin: 0 0 16px;
  padding: 38px 34px 42px;
  border: 1px solid rgb(58 175 169 / 52%);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 12%, rgb(255 255 255 / 28%), transparent 32%),
    #bdf3f6;
  color: #031008;
}

.faq-section h2,
.faq-section h3 {
  margin: 0;
  color: #031008;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.faq-section h2 {
  margin-bottom: 48px;
  font-size: 2rem;
}

.faq-section__item {
  margin: 0 0 43px;
}

.faq-section__item:last-child { margin-bottom: 0; }

.faq-section h3 {
  margin-bottom: 21px;
  font-size: 1.78rem;
}

.faq-section p {
  margin: 0 0 15px;
  font-size: 1.02rem;
  line-height: 1.62;
}

.faq-section p:last-child { margin-bottom: 0; }
.faq-section strong { font-weight: 700; }

.closing-copy {
  padding: 26px 8px 4px;
  color: #fff;
  text-align: center;
}

.closing-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 27px;
  line-height: 1.25;
}

.closing-copy p {
  margin: 0 auto 17px;
  font-size: 16px;
  line-height: 1.75;
}

.floating-contact {
  position: fixed;
  right: max(20px, calc((100vw - 822px) / 2));
  bottom: 20px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 4px solid rgb(151 242 144 / 70%);
  border-radius: 50%;
  background: #04d248;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 5px 18px rgb(0 0 0 / 18%);
}

.action:focus-visible,
.floating-contact:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .page { width: min(calc(100% - 28px), 568px); }
  .gallery--three { gap: 5px; }
  .gallery--four { gap: 6px; }
  .action { padding-inline: 54px; }
  .faq-section { padding: 31px 24px 34px; }
  .faq-section h2 { margin-bottom: 37px; font-size: 1.65rem; }
  .faq-section h3 { margin-bottom: 17px; font-size: 1.42rem; }
  .faq-section p { font-size: .98rem; line-height: 1.6; }
  .faq-section__item { margin-bottom: 35px; }
  .floating-contact { right: 14px; bottom: 14px; width: 56px; height: 56px; }
}

@media (max-width: 380px) {
  .action { padding-inline: 26px; }
  .intro { font-size: 15px; }
  .faq-section { padding-inline: 19px; }
  .faq-section h2 { font-size: 1.5rem; }
  .faq-section h3 { font-size: 1.3rem; }
  .faq-section p { font-size: .93rem; }
}

@media (prefers-reduced-motion: reduce) {
  .action { transition: none; }
}
