/* Premium Editorial CSS Variables */
:root {
  --primary: #AF7E83;
  /* Dusty Rose */
  --secondary: #2D2323;
  /* Deep Espresso / Off-black */
  --accent: #C28387;
  /* Light Rose */
  --text-main: #4A3A3B;
  /* Warm dark grey/brown for readability */
  --bg-warm: #FAF7F5;
  /* Warm plaster / eggshell off-white */
  --white: #FFFFFF;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  line-height: 1.7;
  background-color: var(--bg-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  /* Removed unwanted side drawings */
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Editorial Touches */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.15;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.section-title.center {
  text-align: center;
}

.section-title.text-light {
  color: var(--white);
}

.clean-list {
  list-style: none;
}

/* Utilities */
.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-30 {
  margin-top: 30px;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.z-10 {
  position: relative;
  z-index: 10;
}

.cta-wrapper-center {
  display: flex;
  justify-content: center;
}

.cta-wrapper-left {
  display: flex;
  justify-content: flex-start;
}

.hide-desktop {
  display: none;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 45px;
  font-size: 1.05rem;
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: 60px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(175, 126, 131, 0.2);
}

.btn-primary:hover {
  background-color: #9C6B70; /* Slightly darker rose */
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(175, 126, 131, 0.3);
}

.btn-light {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.btn-light:hover {
  background-color: var(--white);
  color: var(--secondary);
  transform: translateY(-4px);
}

.pulse-btn {
  animation: elegantPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes elegantPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(175, 126, 131, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(175, 126, 131, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(175, 126, 131, 0);
  }
}

/* Header */
.header {
  padding: 15px 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition);
}

.logo {
  max-width: 220px;
  margin: 0 auto;
  display: block;
}

/* Hero Section (Bespoke Editorial) */
.hero {
  padding: 80px 0 0;
  background-color: var(--bg-warm);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-decor,
.global-decor {
  position: absolute;
  z-index: 1;
  mix-blend-mode: normal;
  pointer-events: none;
  filter: saturate(1.2) contrast(1.1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  /* Added shadow for depth */
}

.decor-1 {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  opacity: 0.08;
  /* Subtle like the bg animation */
  z-index: 1;
  mix-blend-mode: multiply;
  filter: saturate(1.1) contrast(1.1);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1.2;
  max-width: 800px;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--primary);
  line-height: 0.9;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 35px;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.hero-highlight {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 25px;
  color: var(--text-main);
  line-height: 1.4;
  font-weight: 400;
}

.hero-highlight strong {
  font-weight: 700;
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 40px;
  color: var(--text-main);
  opacity: 0.8;
}

.cta-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
.hero-image {
  flex: 0.8;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image img {
  border-radius: 220px 220px 30px 30px;
  /* Arch Shape */
  box-shadow: 0 30px 60px rgba(74, 58, 59, 0.15);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  /* Thinner more elegant border */
  outline: 1px solid rgba(175, 126, 131, 0.2);
  /* Subtle outer line */
  outline-offset: 10px;
  width: 100%;
  max-width: 450px;
  height: auto;
}

.hero-img-backdrop {
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: 0px;
  left: 15px;
  background: var(--primary);
  border-radius: 220px 220px 30px 30px;
  opacity: 0.08;
  z-index: 1;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: translateY(-8px);
}

.hero-image:hover .hero-img-backdrop {
  transform: translate(5px, 5px);
}

/* Video Section */
.video-section {
  padding: 300px 0;
  background-color: transparent;
  /* was var(--white) */
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--bg-warm);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.slim-video {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  /* Back to 16:9 for a bigger presence */
}

/* Pain Points & Benefits - Editorial Overlap Layout */
.pain-points {
  padding: 120px 0 160px;
  background-color: var(--bg-warm);
  position: relative;
}

.decor-3 {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  opacity: 0.6;
  z-index: 1;
}

.pain-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.pain-content {
  flex: 1;
  position: relative;
  padding: 60px 0;
}

/* Giant background quote */
.pain-content::before {
  content: '“';
  position: absolute;
  top: -80px;
  left: -40px;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: var(--primary);
  opacity: 0.05;
  line-height: 1;
  z-index: -1;
}

.pain-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 25px;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-main);
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.5;
}

.benefits-card {
  flex: 1;
  background: var(--primary);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  color: var(--white);
  position: relative;
  z-index: 3;
}

.benefits-list li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 25px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.benefits-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--white); /* Changed to white for contrast over pink bg */
  font-size: 1.2rem;
}

.benefits-bg-img {
  position: absolute;
  bottom: -60px;
  right: 10%;
  max-width: 350px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
  filter: grayscale(100%);
}

/* What you get - Elegant minimal display */
.what-you-get {
  padding: 100px 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card {
  padding: 50px 30px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

/* Vertical dividers */
.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  object-fit: contain;
  opacity: 0.8;
}

.feature-card p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--secondary);
}

/* Horizontal Glass Slider - Enhanced */
.content-details {
  padding: 100px 0;
  background-color: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.title-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  margin-bottom: 20px;
}

.content-details .section-title {
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 0;
  /* Margin moved to title-wrapper */
  position: relative;
  z-index: 2;
  text-align: center;
}

.content-details .subtitle {
  color: var(--text-main);
  opacity: 0.8;
}

.decor-flower {
  position: absolute;
  mix-blend-mode: normal;
  opacity: 0.8;
}

.flower-top {
  top: -80px;
  left: -100px;
  width: 480px;
  transform: rotate(-90deg);
  animation: none;
  opacity: 0.6;
  z-index: 1;
}

.section-flower-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 100%;
  max-width: 320px;
  opacity: 0.15;
  filter: saturate(1.1) contrast(1.1);
  z-index: 1;
  pointer-events: none;
}

.horizontal-slider {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  position: relative;
  z-index: 3;
  padding: 30px 20px 40px;
  cursor: grab;
  user-select: none;
}

.horizontal-slider:active {
  cursor: grabbing;
}

.horizontal-slider.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.horizontal-slider.dragging .slider-item {
  pointer-events: none;
  /* Prevents clicking links/items accidentally while dragging */
}

/* Custom Styled Scrollbar */
.horizontal-slider::-webkit-scrollbar {
  height: 6px;
}

.horizontal-slider::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin: 0 20px;
}

.horizontal-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  opacity: 0.5;
}

.slider-item {
  scroll-snap-align: center;
  min-width: 300px;
  max-width: 340px;
  flex: 0 0 auto;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.slider-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(175, 126, 131, 0.1);
}

.slider-item p {
  color: var(--text-main);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}

.check-icon {
  color: var(--bg-warm);
  font-size: 1rem;
  font-weight: normal;
  flex-shrink: 0;
  background: var(--primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Classes Video Section */
.classes-section {
  padding: 120px 0;
  background-color: var(--white);
}

.decor-4-left {
  bottom: -30px;
  left: -50px;
  width: 480px;
  transform: scaleX(-1) rotate(-25deg);
  opacity: 0.7;
  mix-blend-mode: normal;
}

.decor-4-right {
  bottom: -30px;
  right: -50px;
  width: 480px;
  transform: rotate(-25deg);
  opacity: 0.7;
  mix-blend-mode: normal;
}

/* Bio Section - Editorial Magazine Layout */
.bio-section {
  padding: 120px 0;
  background-color: var(--bg-warm);
}

.bio-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

.bio-content {
  flex: 1.2;
}

.bio-title {
  font-style: italic;
  font-size: 4rem;
}

.bio-content p {
  margin-bottom: 25px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.bio-images {
  flex: 0.8;
  position: relative;
}

.bio-img-main {
  border-radius: 4px;
  /* Crisp elegant edges */
  box-shadow: 20px 20px 0 var(--primary);
  /* Offset solid shadow */
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bio-img-decor {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 3;
  width: 170px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.decor-6-left {
  bottom: -50px;
  left: -80px;
  width: 450px;
  transform: scaleX(-1);
  /* Mirrored */
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.decor-6-right {
  bottom: -50px;
  right: -80px;
  width: 450px;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

.decor-7 {
  top: -3px;
  left: 50%;
  width: 320px;
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: 1;
}

.decor-8 {
  bottom: -50px;
  left: -50px;
  width: 550px;
  transform: rotate(10deg);
  opacity: 0.6;
  /* Significantly more visible */
  filter: brightness(1.2) saturate(1.1);
  mix-blend-mode: normal;
}

.floating {
  animation: floatFloral 8s ease-in-out infinite;
}

@keyframes floatFloral {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(2deg);
  }

  66% {
    transform: translateY(5px) rotate(-2deg);
  }
}

/* Bonus Section */
.bonus-section {
  padding: 100px 0;
  background-color: var(--white);
}

.decor-5 {
  top: 50%;
  left: 50%;
  width: 700px;
  transform: translate(-50%, -50%) rotate(10deg);
  opacity: 0.6;
  mix-blend-mode: normal;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  margin-top: 70px;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: transparent;
  padding: 0;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.bonus-icon {
  width: 50px; /* Reduced slightly for side alignment */
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
}

.bonus-title {
  margin-bottom: 0;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  display: inline-block;
}

/* Pricing Section - Exclusive Ticket Layout */
.pricing-section {
  padding: 120px 0;
  background-color: var(--bg-warm);
  /* Lightest background for a clean finish */
  color: var(--text-main);
}

.pricing-box {
  background: var(--white);
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 50px;
  border-radius: 20px;
  border: 1px solid var(--accent);
  box-shadow: 0 30px 60px rgba(175, 126, 131, 0.1);
  text-align: center;
  position: relative;
}

/* Receipt Zag-zag edges removed */

.pricing-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.pricing-seal {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 140px;
  animation: elegantPulse 4s infinite alternate;
}

.pricing-titles .subtitle {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.pricing-titles .title {
  font-size: 2.2rem;
  color: var(--primary); /* Changed from secondary to primary */
  font-style: italic;
}

.pricing-features {
  text-align: left;
  margin: 30px 0 40px;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pricing-features .check-icon {
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.apenas {
  font-size: 0.9rem;
  color: var(--text-main);
  letter-spacing: 2px;
}

.price {
  font-size: 4.5rem;
  color: var(--primary); /* Softer price color */
  line-height: 1;
  margin: 10px 0;
  font-family: var(--font-heading);
}

.installments {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
}

.large-btn {
  font-size: 1.1rem;
  padding: 22px 50px;
  width: 100%;
}


.guarantee-box {
  max-width: 800px;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: transparent;
  border: 1px dashed rgba(175, 126, 131, 0.3);
  border-radius: 12px;
}

.guarantee-box img {
  width: 120px;
}

.guarantee-box p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
}

.footer {
  text-align: center;
  margin-top: 80px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
/* Premium Reveal Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered Delays for Children */
.container>*:nth-child(1) {
  transition-delay: 0.1s;
}

.container>*:nth-child(2) {
  transition-delay: 0.2s;
}

.container>*:nth-child(3) {
  transition-delay: 0.3s;
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* Scroll reveal for lists */
.reveal-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.visible .reveal-list li {
  opacity: 1;
  transform: translateX(0);
}

.reveal-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-list li:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-list li:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-list li:nth-child(6) {
  transition-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .logo {
    max-width: 140px;
  }

  .header {
    padding: 10px 0;
  }

  .hero {
    padding: 80px 0 0;
    height: auto;
    min-height: 100vh;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .cta-wrapper {
    justify-content: center;
  }

  .decor-1 {
    width: 300px;
    top: -50px;
    right: -100px;
  }

  .decor-2 {
    width: 250px;
    bottom: -40px;
    left: -80px;
  }

  .decor-4-left, .decor-4-right {
    width: 250px;
    opacity: 0.4;
  }
  
  .decor-6-left, .decor-6-right {
    display: none;
  }
  
  .decor-7 {
    width: 220px;
    top: 10px;
  }

  .hero-image img {
    max-width: 100%;
    width: 280px;
  }


  .pain-container {
    flex-direction: column;
    gap: 40px;
  }

  .pain-content {
    padding-right: 0;
  }

  .benefits-card {
    margin-left: 0;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-card::after {
    display: none;
  }

  .feature-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .bio-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .hide-desktop {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .hide-mobile {
    display: none;
  }

  .hero-title {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bonus-card {
    align-items: center;
    text-align: center;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .pricing-box {
    padding: 40px 25px;
  }

  .price {
    font-size: 3.5rem;
  }
}