@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

/* Dynamic Reset & Variables */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --primary-color: #168a3b;
  --primary-hover: #106a2c;
  --bg-color: #f9fafc;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  --border-color: #f3f4f6;
  --max-width: 576px; /* 36rem (max-w-xl) */
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Base Wrapper for Desktop Center Focus */
#website-root {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Header Sticky Banner */
.sticky-banner {
  background-color: #dc2626; /* red-600 */
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.ping-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ffffff;
  border-radius: 9999px;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.timer-badge {
  font-family: var(--font-mono);
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  margin-left: 0.5rem;
  display: inline-block;
}

/* Main Landing Container */
main.landing-app {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-left: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Custom layout spacing classes */
.hero-container {
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badges and Buttons */
.badge-green {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(22, 138, 59, 0.3);
  border: 1px solid #10b981;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  text-decoration: none;
}

.badge-green:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.badge-green:active {
  transform: scale(0.95);
}

.badge-green-sm {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 900;
  font-size: 11px;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.badge-green-sm:hover {
  transform: scale(1.05);
}

.badge-green-sm:active {
  transform: scale(0.95);
}

/* Titles and Headings */
h1.hero-title {
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  color: var(--text-dark);
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
  padding: 0 0.5rem;
}

h3.section-header-title {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

h3.sobre-item-title {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

h4.whatsapp-cta-title {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--text-dark);
  max-width: 24rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: center;
}

/* Image Container Frame */
.product-shot-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #f9fafb;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.product-shot-container:hover .product-image {
  transform: scale(1.05);
}

/* Sub-Headline Text */
.hero-subhook {
  text-align: center;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  line-height: 1.625;
  max-width: 24rem;
}

/* Pricing Section */
.pricing-wrapper {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-old-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-old-crossed {
  text-decoration: line-through;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-current-container {
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-current-symbol {
  color: var(--text-dark);
  font-weight: 700;
}

.pricing-current-value {
  color: var(--primary-color);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.pricing-badge-parcele {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: #f9fafc;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border-color);
}

/* Call to Action Button styling */
.cta-wrapper {
  width: 100%;
  max-width: 24rem;
  margin-top: 1.25rem;
  padding: 0 0.5rem;
}

.primary-cta-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(22, 138, 59, 0.2), 0 10px 10px -5px rgba(22, 138, 59, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.primary-cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
}

.primary-cta-button:hover {
  background-color: var(--primary-hover);
}

.primary-cta-button:hover::after {
  animation: shimmer 1.5s infinite;
}

.primary-cta-button:active {
  transform: scale(0.98);
}

.secondary-cta-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 1.05rem 1.5rem;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(22, 138, 59, 0.2);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.secondary-cta-button:hover {
  background-color: var(--primary-hover);
}

.secondary-cta-button:active {
  transform: scale(0.98);
}

.delivery-subtext-badge {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  margin-top: 0.25rem;
  text-transform: uppercase;
  text-align: center;
}

/* Divider section */
.section-divider-row {
  width: 100%;
  background-color: #ffffff;
  margin-top: 2rem;
}

.divider-container {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.divider-line {
  height: 1px;
  background-color: #e5e7eb;
  flex: 1;
}

/* Benefits Section */
.benefits-outer-box {
  padding: 1rem;
}

.benefits-card-container {
  background-color: #f4f6f9;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-bullet-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.benefit-emoji-frame {
  flex-shrink: 0;
  background-color: #ffffff;
  padding: 0.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #d1fae5;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.benefit-content-paragraph {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.625;
}

.benefit-content-heading {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.125rem;
}

/* Video Containers */
.video-section-container {
  padding: 0.5rem 1rem;
}

.video-frame-aspect-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  background-color: #000000;
  user-select: none;
}

.video-frame-aspect-ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA buttons inside sections */
.section-cta-wrap {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

/* About item section container */
.about-item-container {
  padding: 1.5rem 1.25rem;
  background-color: rgba(249, 250, 252, 0.5);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.specs-grid-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.625;
}

.specs-title-lead {
  font-weight: 600;
  color: #1f2937;
}

.spec-list-item-container {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  padding-left: 0.25rem;
}

.spec-bullet-row {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.spec-bullet-icon {
  font-size: 1rem;
  line-height: 1.25;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.specs-divider-footer {
  font-size: 0.75rem;
  color: #4b5563;
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
}

/* Double bundle pack CTAs in section 2 */
.bundle-pack-ctas-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 0.5rem;
}

/* WhatsApp support wrapper */
.whatsapp-support-cta-area {
  padding: 2rem 1.25rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.whatsapp-large-button {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.whatsapp-large-button:hover {
  background-color: #1ebd5d;
  transform: translateY(-1px);
}

.whatsapp-large-button:active {
  transform: scale(0.95);
}

.whatsapp-large-button svg {
  fill: currentColor;
  width: 1.25rem;
  height: 1.25rem;
}

/* Static Footer styling */
footer.landing-footer {
  background-color: #f9fafc;
  padding: 2rem 1rem;
  text-align: center;
  border-t: 1px solid #f3f4f6;
  margin-top: auto;
}

.footer-support-wa-link {
  font-size: 0.625rem; /* text-[10px] */
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: text-decoration 0.2s;
}

.footer-support-wa-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* LIVE SOCIAL PROOF NOTIFICATION TICKER */
#live-conversion-ticker {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  background-color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #f3f4f6;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  animation: slideInFromLeft 0.3s ease-out forwards;
  pointer-events: none;
}

.ticker-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-pulse-green {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #10b981;
  border-radius: 9999px;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ticker-badge-mono {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.ticker-info-wrap {
  font-size: 0.75rem;
}

.ticker-buyer-name {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.ticker-buyer-city {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.ticker-purchase-kit {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 10px;
  margin-top: 0.25rem;
}

/* ANIMATIONS KEYFRAMES */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-1.25rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 480px) {
  #live-conversion-ticker {
    bottom: 1rem;
    left: 1rem;
    max-width: 170px;
  }
  
  h1.hero-title {
    font-size: 1.625rem;
  }
}
