﻿:root {
  --rose-50: #f3d7db;
  --rose-100: #f8d7e6;
  --rose-200: #f4a6c8;
  --rose-400: #ef5b93;
  --rose-500: #e91e63;
  --rose-600: #c2185b;
  --rose-700: #8e1245;
  --text-main: #3a1020;
  --text-soft: #5a2a3a;
  --card-bg: rgba(255, 252, 254, 0.78);
  --card-border: rgba(194, 24, 91, 0.24);
  --shadow-soft: 0 20px 45px rgba(142, 18, 69, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  background-color: var(--rose-50);
  background-image:
    linear-gradient(
      rgba(243, 215, 219, 0.88),
      rgba(243, 215, 219, 0.88)
    ),
    url("tw3d-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
}

.page {
  width: min(980px, calc(100% - 2.25rem));
  margin: 0 auto;
  flex: 1;
}

.hero {
  text-align: center;
  padding: clamp(1.25rem, 2vw, 1.9rem) 0 1.25rem;
}

.eyebrow {
  margin: 0;
  color: var(--rose-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
}

.headline {
  margin: 0.55rem auto 0.55rem;
  max-width: 100%;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.25rem, 2.95vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  background: linear-gradient(110deg, var(--rose-700), var(--rose-600), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.schedule-badge {
  margin: 10px auto 20px;
  width: fit-content;
  padding: 0.34rem 0.9rem;
  border-radius: 14px;
  background: #faedef;
  background: #faedef;
  color: transparent;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(142, 18, 69, 0.24);
  background-image: linear-gradient(110deg, var(--rose-700), var(--rose-600), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.description {
  margin: 0.35rem auto;
  max-width: 760px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.32;
}

.description.highlight {
  font-weight: 700;
  color: #611631;
  font-size: clamp(1rem, 1.22vw, 1.08rem);
  line-height: 1.22;
  letter-spacing: 0.005em;
}

.video-notice {
  margin-top: 0.75rem;
}

.video-card {
  margin: clamp(0.75rem, 1.5vw, 1rem) auto 0.75rem;
  width: min(100%, 400px);
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid rgba(255, 220, 232, 0.95);
  background: rgba(255, 245, 248, 0.45);
  box-shadow: 0 18px 45px rgba(142, 18, 69, 0.18);
  backdrop-filter: blur(2px);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 20px;
  line-height: 0;
  background: #f8d7e6;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #f8d7e6;
}

.cta-area {
  margin-top: 1.1rem;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  animation: ctaReveal 0.5s ease forwards;
}

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

.whatsapp-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.025em;
  color: #ffffff;
  background: linear-gradient(130deg, var(--rose-600), var(--rose-500));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 30px rgba(194, 24, 91, 0.3);
  padding: 0.92rem 1.6rem;
  margin-left: 0;
  margin-right: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: rotate(18deg);
  animation: whatsappShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.whatsapp-button span {
  position: relative;
  z-index: 1;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(194, 24, 91, 0.38);
  filter: brightness(1.02);
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 32px rgba(194, 24, 91, 0.24);
  }

  50% {
    transform: scale(1.025);
    box-shadow: 0 18px 42px rgba(194, 24, 91, 0.34);
  }
}

@keyframes whatsappShine {
  0% {
    left: -80%;
  }

  45% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.support-text {
  margin: 1rem auto 0;
  max-width: 740px;
  font-size: 0.95rem;
  color: #6c2e44;
  line-height: 1.58;
}

.footer {
  width: min(980px, calc(100% - 2.25rem));
  margin: 0 auto;
  border-top: 1px solid rgba(142, 18, 69, 0.2);
  padding: 1.2rem 0 2rem;
  text-align: center;
  color: #6d2f46;
  font-size: 0.92rem;
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-links a,
.back-link {
  color: var(--rose-700);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
}

.policy-card {
  margin: clamp(2rem, 5vw, 4rem) auto;
  max-width: 860px;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3.5vw, 2.3rem);
}

.policy-card h1 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.85rem, 4.5vw, 2.8rem);
  color: #7f1a47;
}

.policy-card p {
  margin: 0.8rem 0;
  color: #4d1e31;
  line-height: 1.68;
}

.back-link {
  display: inline-block;
  margin-top: 1rem;
}

.social-proof-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 15px;
  border: 1px solid rgba(244, 166, 200, 0.75);
  background: rgba(255, 248, 251, 0.94);
  box-shadow: 0 12px 28px rgba(142, 18, 69, 0.14);
  color: #5a1832;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.social-proof-toast strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #8e1245;
}

.social-proof-toast span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #5a1832;
}

.social-proof-toast.is-visible {
  animation: toastFadeIn 1s ease forwards;
}

.social-proof-toast.is-hiding {
  animation: toastFadeOut 2s ease forwards;
}

@keyframes toastFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (min-width: 900px) {
  .headline {
    max-width: 980px;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.05;
    white-space: normal;
  }

  .headline .desktop-line {
    display: block;
    white-space: nowrap;
  }

  .description.highlight {
    max-width: 980px;
    white-space: nowrap;
  }

  .video-card {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 1.5rem;
  }

  .description {
    line-height: 1.45;
  }

  .video-card {
    border-radius: 18px;
    width: min(100%, 360px);
  }

  .whatsapp-button {
    display: block;
    width: 100%;
    max-width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 800;
    padding: 17px 22px;
    text-align: center;
    border-radius: 16px;
  }

  .social-proof-toast {
    top: 14px;
    right: 12px;
    left: auto;
    max-width: 220px;
    text-align: left;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .page,
  .footer {
    width: min(980px, calc(100% - 1.1rem));
  }

  .hero {
    padding-top: 1rem;
  }

  .headline {
    max-width: 100%;
    font-size: clamp(1.72rem, 11vw, 2.25rem);
    line-height: 1.12;
  }

  .headline .desktop-line {
    display: inline;
    white-space: normal;
  }

  .headline .desktop-line + .desktop-line::before {
    content: " ";
  }

  .schedule-badge {
    padding: 0.42rem 0.8rem;
    font-size: clamp(1.08rem, 6.5vw, 1.35rem);
    border-radius: 12px;
  }

  .eyebrow {
    font-size: 0.73rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .whatsapp-button {
    width: 100%;
    font-size: 19px;
    line-height: 1.18;
  }
}
