*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #1d1c1b;
}

body {
  background-color: #1d1c1b;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
}

.main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 8px 0;
}

.title {
  margin: 10.8px 0 21.6px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
}

.title strong {
  font-weight: 700;
}

.title-accent {
  color: #e0c590;
}

.title-accent strong {
  font-weight: 700;
}

.highlight {
  background-color: #e0c590;
  color: #262321;
  padding: 0 6.4px 0.8px;
  font-weight: 700;
}

.caption {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.caption strong {
  font-weight: 700;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.video-inner {
  width: 100%;
}

@media (min-width: 768px) {
  .video-inner {
    width: 75%;
  }
}

.video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 10px;
  outline: 0;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.video-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
}

.video-poster:hover .video-play {
  background: rgba(0, 0, 0, 0.3);
}

.video-play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.cta {
  display: flex;
  justify-content: center;
  margin: 1.7rem 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 25px;
  border-radius: 10px;
  background: linear-gradient(10deg, #d7b884, #e7d19c);
  color: #262321;
  font-size: 14.4px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
}

.btn-whatsapp:hover {
  opacity: 0.9;
}

.spacer {
  min-height: 41px;
}

.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 24px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 16px;
}

.footer-text,
.footer-link {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}
