﻿:root {
  --rose-50: #f3d7db;
  --rose-100: #f8d7e6;
  --rose-200: #f4a6c8;
  --rose-400: #ef5b93;
  --rose-500: #e91e63;
  --rose-600: #c2185b;
  --rose-700: #8e1245;
  --gold-soft: #caa25d;
  --text-main: #3a1020;
  --text-soft: #5a2a3a;
  --card-bg: rgba(255, 252, 254, 0.84);
  --card-border: rgba(194, 24, 91, 0.22);
  --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.9), rgba(243, 215, 219, 0.9)),
    url("tw3d-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
}

.strategy-page .page {
  padding-top: 1rem;
}

.offer-page .page {
  padding-top: 0.6rem;
}

.top-urgency {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  background: linear-gradient(110deg, #fff8fb, #ffeef5, #fff8fb);
  border-bottom: 1px solid rgba(202, 162, 93, 0.35);
  box-shadow: 0 8px 20px rgba(142, 18, 69, 0.12);
}

.urgency-label {
  margin: 0;
  color: var(--rose-700);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.countdown {
  margin: 0.2rem 0 0;
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  font-family: "Playfair Display", serif;
  color: var(--gold-soft);
  font-weight: 800;
  line-height: 1;
}

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

.hero {
  text-align: center;
  padding: clamp(1.2rem, 2.2vw, 2rem) 0 0.8rem;
}

.headline {
  margin: 0.45rem auto 0.8rem;
  max-width: 940px;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  background: linear-gradient(110deg, var(--rose-700), var(--rose-600), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.description {
  margin: 0.4rem auto;
  max-width: 780px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.5;
}

.description.highlight {
  font-weight: 600;
  color: #611631;
}

.description.small {
  font-size: 0.95rem;
}

.description.urgency {
  font-weight: 700;
  color: #7b1c43;
}

.description.spots {
  font-weight: 700;
  color: #8e1245;
}

.audio-section {
  margin: 1.35rem auto 0;
  max-width: 780px;
  text-align: left;
}

.audio-section-title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  color: #7f1a47;
  font-size: clamp(1.18rem, 2.3vw, 1.6rem);
  line-height: 1.25;
}

.audio-section-text {
  margin: 0.6rem auto 0;
  max-width: 760px;
  text-align: center;
  color: #5a2a3a;
  line-height: 1.5;
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
}

.audio-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.audio-card {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 8px 20px rgba(142, 18, 69, 0.08);
  padding: 0.72rem 0.8rem;
}

.audio-card h3 {
  margin: 0 0 0.5rem;
  color: #6e1a40;
  font-size: 0.97rem;
  line-height: 1.35;
}

.audio-card audio {
  width: 100%;
  display: block;
}

.audio-cta-text {
  margin: 1rem auto 0;
  max-width: 760px;
  text-align: center;
  color: #4d1e31;
  font-weight: 600;
  line-height: 1.45;
}

.price-card {
  margin: 1.2rem auto 0;
  max-width: 620px;
  border-radius: 22px;
  border: 1px solid rgba(202, 162, 93, 0.4);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.15rem;
}

.price-old {
  margin: 0;
  color: #7f5666;
  text-decoration: line-through;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
}

.price-label {
  margin: 0.15rem 0 0;
  color: #7f5666;
  font-size: 1rem;
  font-weight: 600;
  text-transform: lowercase;
}

.price-new {
  margin: 0.25rem 0 0.65rem;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 800;
  color: #8e1245;
}

.cta-area {
  margin-top: 1.2rem;
}

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

.whatsapp-button.is-disabled,
.whatsapp-button[aria-disabled="true"] {
  background: linear-gradient(120deg, #b7aeb2, #9d9498);
  box-shadow: none;
  cursor: not-allowed;
  animation: none;
  pointer-events: none;
}

.whatsapp-button.is-disabled::before,
.whatsapp-button[aria-disabled="true"]::before {
  display: none;
}

.strategy,
.final-cta {
  margin-top: 1.2rem;
}

.only-strategy {
  margin-top: 0;
  padding-bottom: 1.6rem;
}

.section-title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  color: #7f1a47;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.25;
}

.section-subtitle {
  margin: 0.65rem auto 1rem;
  max-width: 780px;
  text-align: center;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.module-card {
  margin: 0 0 0.95rem;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0 10px 26px rgba(142, 18, 69, 0.08);
  padding: 1.1rem 1rem;
}

.module-card h3 {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  color: #8e1245;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.32;
}

.module-card p {
  margin: 0 0 0.55rem;
  color: #4d1e31;
  line-height: 1.55;
  font-size: 0.98rem;
}

.module-card ul,
.module-card ol {
  margin: 0 0 0.6rem 1.2rem;
  color: #4d1e31;
  line-height: 1.55;
  padding: 0;
}

.footer {
  width: min(980px, calc(100% - 2.25rem));
  margin: 1.5rem auto 0;
  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: 92px;
  right: 20px;
  z-index: 9999;
  max-width: 300px;
  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: 13px;
  font-weight: 800;
  color: #8e1245;
}

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

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

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

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.promo-modal.is-open {
  display: block;
}

.promo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 10, 19, 0.74);
  backdrop-filter: blur(2px);
}

.promo-modal-content {
  position: relative;
  width: min(92%, 560px);
  margin: 8vh auto 0;
  background: linear-gradient(160deg, #fff7fb, #ffeef7);
  border-radius: 22px;
  border: 1px solid rgba(194, 24, 91, 0.25);
  box-shadow: 0 28px 60px rgba(30, 5, 16, 0.35);
  padding: 1.45rem 1.15rem 1.3rem;
  text-align: center;
  animation: modalAttention 1s ease;
}

.promo-modal-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 4.8vw, 2rem);
  color: #8e1245;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.promo-modal-title .attention-line {
  display: block;
}

.promo-modal-content p {
  margin: 0 0 0.6rem;
  color: #4d1e31;
  line-height: 1.5;
}

.promo-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(142, 18, 69, 0.12);
  color: #7f1a47;
  font-size: 1.2rem;
  line-height: 1;
}

.promo-modal-button {
  margin-top: 0.4rem;
}

.promo-modal-content.is-vibrating {
  animation: modalVibrate 0.42s linear;
}

@keyframes modalAttention {
  0% {
    opacity: 0;
    transform: translateY(-32px) scale(0.88);
  }
  25% {
    transform: translateY(4px) scale(1.03);
  }
  45% {
    transform: translateY(-5px) scale(0.99);
  }
  65% {
    transform: translateY(2px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalVibrate {
  0% { transform: translateX(0); }
  15% { transform: translateX(-4px) rotate(-0.8deg); }
  30% { transform: translateX(4px) rotate(0.8deg); }
  45% { transform: translateX(-3px) rotate(-0.6deg); }
  60% { transform: translateX(3px) rotate(0.6deg); }
  75% { transform: translateX(-2px) rotate(-0.4deg); }
  100% { transform: translateX(0) rotate(0); }
}

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

@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%;
  }
}

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

  .top-urgency {
    padding: 0.7rem 0.65rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .whatsapp-button {
    display: block;
    width: 100%;
    font-size: 17px;
    line-height: 1.22;
    font-weight: 800;
    padding: 16px 20px;
    text-align: center;
    border-radius: 16px;
  }

  .social-proof-toast {
    top: auto;
    bottom: 12px;
    right: 8px;
    max-width: 220px;
    font-size: 12px;
  }

  .promo-modal-content {
    margin-top: 10vh;
    padding: 1.35rem 0.95rem 1.15rem;
    border-radius: 16px;
  }

  .promo-modal-title {
    font-size: 2.35rem;
    line-height: 0.98;
  }

  .promo-modal-button {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .offer-page .headline {
    font-size: clamp(1.28rem, 7.2vw, 1.72rem);
    line-height: 1.06;
  }

  .offer-page .description {
    line-height: 1.3;
  }

  .offer-page .price-old {
    font-size: 1.25rem;
  }

  .offer-page .price-label {
    font-size: 1.08rem;
  }

  .offer-page .price-new {
    font-size: 2.45rem;
    line-height: 1.05;
  }

  .offer-page .audio-section-title {
    font-size: 1.22rem;
  }

  .offer-page .audio-card h3 {
    font-size: 0.92rem;
  }

  .offer-page .audio-cta-text {
    font-size: 0.98rem;
  }

  .offer-page .purchase-button {
    font-size: 1.3rem;
    line-height: 1.14;
    padding: 18px 16px;
  }

  .strategy-page .headline {
    font-size: clamp(1.46rem, 9vw, 2.1rem);
  }

  .price-card {
    padding: 1rem 0.85rem;
    border-radius: 16px;
  }

  .module-card {
    padding: 0.9rem 0.82rem;
    border-radius: 15px;
  }

  .section-title {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .promo-modal-title {
    font-size: 2.2rem;
    line-height: 1;
  }

  .promo-modal-title .attention-line + .attention-line {
    margin-top: -10px;
  }
}
