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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f7f8fa;
  color: #111827;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding-bottom: 90px; /* Space for sticky bottom CTA */
}

/* Container */
.container {
  width: 100%;
  max-width: 480px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Font weight utility classes */
.fw-light {
  font-weight: 300;
}
.fw-regular {
  font-weight: 400;
}
.fw-bold {
  font-weight: 700;
}
.fw-extrabold {
  font-weight: 800;
}
.text-red {
  color: #9A0129;
}

/* Block Section general styling */
.block-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BLOCK 1: Hero / Headline */
.block-1 {
  min-height: 85vh;
  justify-content: center;
  padding-top: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ebf3ff;
  border: 1.5px solid #b2d3ff;
  color: #2b7fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.badge .lightning {
  color: #f59e0b;
}

.main-headline {
  font-size: 27px;
  line-height: 1.22;
  letter-spacing: -0.3px;
  color: #111827;
}

.sub-headline {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.35;
  color: #1f2937;
}

.down-arrow-emoji {
  margin-top: 32px;
  font-size: 28px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

/* Section Headlines for Blocks 2, 3, 4 */
.section-headline {
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
}

.content-text {
  font-size: 15px;
  line-height: 1.55;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

/* BLOCK 2: Image styling */
.image-wrapper {
  margin-top: 28px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.rounded-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

/* BLOCK 3: Cross Bullet List */
.intro-list-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #1f2937;
}

.cross-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-align: left;
}

.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #1f2937;
}

.cross-icon {
  color: #9A0129;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2px;
  flex-shrink: 0;
}

/* BLOCK 4: Wistia Video Embed Container */
.video-container {
  width: 100%;
  border: 2px solid #9A0129;
  border-radius: 22px;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 16px;
  margin-bottom: 24px;
  background-color: #000;
}

.video-placeholder {
  background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/uaaiv4hn6n/swatch');
  display: block;
  filter: blur(5px);
  padding-top: 176.67%;
  width: 100%;
}

.video-container wistia-player[media-id='uaaiv4hn6n'] {
  display: block;
  width: 100%;
}

.footer-text {
  margin-top: 8px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.6);
}

/* Fixed Bottom CTA Wrapper & Button */
.fixed-cta-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px 16px 16px;
  background: rgba(247, 248, 250, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  display: flex;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fixed-cta-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  padding: 16px 20px;
  background-color: #9A0129;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(154, 1, 41, 0.45);
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-cta:active {
  transform: scale(0.98);
  background-color: #800020;
}

/* BLOCK 5: Highlight Box & Carousel */
.highlight-box {
  background-color: #ecd6db;
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.highlight-box p {
  color: #9A0129;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.45;
}

/* Carousel General Styles */
.ti-carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  display: flex;
  width: 100%;
  padding: 12px 0px 24px 0px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin-top: 16px;
}

.ti-carousel::-webkit-scrollbar {
  display: none;
}

.ti-card {
  flex: 0 0 260px;
  width: 260px;
  max-width: 75vw;
  border-radius: 22px;
  background: transparent;
  overflow: hidden;
  scroll-snap-align: start;
  box-sizing: border-box;
  margin-right: 20px;
}

.ti-card:last-child {
  margin-right: 0;
}

.ti-media {
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.ti-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
}

.ti-media wistia-player {
  width: 100%;
  height: 100%;
  display: block;
}

.ti-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Initial Carousel red border */
#ti-carousel-inicial .ti-card {
  border: 2.5px solid #9A0129;
}

/* Wistia & Images Carousels blue border */
#ti-carousel-wistia .ti-card,
#ti-carousel-imagens .ti-card {
  border: 2.5px solid #1977F2;
}

@media (max-width: 767px) {
  .ti-card {
    flex: 0 0 220px;
    width: 220px;
    max-width: 78vw;
    margin-right: 12px;
  }
}

.drag-side-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-top: -8px;
  margin-bottom: 24px;
}

.text-blue-section {
  color: #0e1726;
  margin-top: 16px;
}

/* BLOCK 9 & 10: Stats, Blue Strategy Button, Pricing checkout */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 24px 0 36px 0;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: #0e1726;
  line-height: 1.1;
}

.stat-number.text-blue {
  color: #1977F2;
}

.stat-label {
  font-size: 16px;
  color: #1f2937;
  margin-top: 4px;
  font-weight: 500;
}

.btn-blue-strategy {
  display: block;
  width: 100%;
  max-width: 440px;
  padding: 18px 20px;
  background-color: #1977F2;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(25, 119, 242, 0.4);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-blue-strategy:active {
  transform: scale(0.98);
  background-color: #115ec4;
}

.footer-pre-headline {
  margin-top: 48px;
  font-size: 24px;
  line-height: 1.25;
}

.description-text {
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;
  text-align: center;
  margin-bottom: 24px;
}

.text-blue {
  color: #1977F2;
}

/* Pricing Card Styles */
.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  border: 1.5px solid #eaeaea;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 12px;
  text-align: center;
}

.pricing-title {
  font-size: 15px;
  color: #4b5563;
  display: block;
  margin-bottom: 10px;
}

.price-value {
  font-size: 44px;
  color: #0e1726;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.price-payment {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.4;
  margin-bottom: 16px;
}

.pricing-divider {
  height: 1px;
  background: #eaeaea;
  margin: 24px 0;
  width: 100%;
}

.pricing-included {
  text-align: left;
}

.pricing-included h3 {
  font-size: 15px;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 700;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #4b5563;
}

.check-icon {
  color: #1977F2;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* BLOCK 11: Blue Urgency Block */
.block-11 {
  width: 100%;
}

.blue-urgency-wrapper {
  background-color: #1977F2;
  border-radius: 28px;
  padding: 36px 24px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  box-shadow: 0 10px 30px rgba(25, 119, 242, 0.25);
}

.urgency-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 24px;
  color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.btn-white-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #1977F2;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-white-card:active {
  transform: scale(0.98);
}

.urgency-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* BLOCK 12: Footer Brand & Copyright */
.block-12 {
  width: 100%;
  margin-bottom: 24px;
}

.brand-footer-info {
  margin-top: 24px;
  margin-bottom: 24px;
}

.brand-title {
  font-size: 20px;
  color: #0e1726;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.brand-subtitle {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.45;
  margin-bottom: 12px;
}

.copyright-text {
  font-size: 12px;
  color: #9ca3af;
}

.btn-cta-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  padding: 18px 20px;
  background-color: #9A0129;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(154, 1, 41, 0.45);
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
}

.btn-cta-footer:active {
  transform: scale(0.98);
  background-color: #800020;
}

/* FOOTER LINKS AREA */
.footer-links-wrapper {
  background-color: #dedede;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 32px 20px 48px 20px;
  margin-top: auto;
}

.footer-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  max-width: 480px;
  width: 100%;
}

.footer-link-btn {
  background: none;
  border: none;
  color: #4b5563;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
  font-family: inherit;
}

.footer-link-btn:hover {
  color: #111827;
}

/* MODAL STYLING */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px 28px 24px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #eaeaea;
}

.modal-overlay:not(.hidden) .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}

.modal-close-btn:hover {
  color: #111827;
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #0e1726;
  margin-bottom: 16px;
  text-align: left;
}

.modal-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
  overflow-y: auto;
  max-height: 60vh;
  text-align: left;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}


