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

html {
  background-color: #ffffff;
}

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

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

.main {
  flex: 1;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 20px 0;
}

.title {
  margin: 0 auto 20px;
  max-width: 760px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  color: #111111;
}

.highlight {
  background-color: #e6483c;
  color: #ffffff;
  padding: 2px 10px 4px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.subtitle {
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: #7a7a7a;
}

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

.video-inner {
  width: 100%;
}

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

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

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.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));
}

.caption {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  color: #555555;
}

.cta {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-icon {
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  transform: translateY(-1px);
}

.spacer {
  min-height: 41px;
}

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

.footer-text {
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: #9a9a9a;
}

.redirect-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.redirect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  width: 100%;
  margin: 40px auto;
  padding: 40px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.redirect-icon {
  margin-bottom: 16px;
}

.redirect-title {
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111111;
}

.redirect-text {
  margin-bottom: 20px;
  font-size: 15px;
  color: #7a7a7a;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.redirect-fallback {
  font-size: 13px;
  color: #9a9a9a;
}

.redirect-fallback a {
  color: #25d366;
  font-weight: 700;
  text-decoration: underline;
}
