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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
}

/* Header Section */
.header {
  text-align: center;
  padding: 60px 24px 40px;
  background: #ffffff;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.urgent-banner {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.headline {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.headline-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.5;
}

/* Video Section */
.video-section {
  background: #ffffff;
  padding: 0 24px 40px;
}

.countdown {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.countdown-text {
  font-size: 15px;
  color: #92400e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.video-container iframe,
.video-container video,
.plyr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Disable right click on video */
.plyr__video-wrapper {
  pointer-events: none;
}
.plyr__controls {
  pointer-events: auto;
}

/* Custom video play button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-play-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.video-play-button:active {
  transform: translate(-50%, -50%) scale(0.95) !important;
}

.video-play-button svg {
  width: 40px !important;
  height: 40px !important;
  display: block !important;
}

:root {
  --plyr-color-main: #667eea;
}

.video-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6b7280;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}

.video-placeholder i {
  font-size: 48px;
  color: #d1d5db;
  display: block;
  margin-bottom: 16px;
}

/* Benefits Section */
.benefits {
  background: #f9fafb;
  padding: 60px 24px;
  border-radius: 24px;
  margin: 0 24px 40px;
}

.benefits-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background: white;
  padding: 60px 24px;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 40px;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: #1a1a1a;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 220px;
  letter-spacing: -0.2px;
}

.cta-button:hover {
  background: #2d2d2d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.android {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-button.android:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6a4190 100%);
}

.button-icon {
  font-size: 20px;
}

.trust-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  font-size: 14px;
  color: #6b7280;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.trust-item i {
  color: #10b981;
  font-size: 16px;
}

.special-offer {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.special-offer-text {
  font-size: 16px;
  color: #92400e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 48px 24px;
  color: #6b7280;
  font-size: 14px;
  background: #f9fafb;
}

.footer-logo {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .subheadline {
    font-size: 16px;
  }

  .benefits-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    min-width: auto;
  }

  .cta-button.whatsapp {
    width: 100% !important;
    min-width: auto !important;
    font-size: 16px !important;
    padding: 16px 24px !important;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item {
    padding: 20px;
  }

  .trust-badge {
    flex-direction: column;
    gap: 12px;
  }

  .header {
    padding: 32px 16px 24px;
  }

  .urgent-banner {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .benefits {
    margin: 0 12px 24px;
    padding: 32px 16px;
    border-radius: 16px;
  }

  .video-section {
    padding: 0 16px 32px;
  }

  .countdown {
    padding: 12px 16px;
  }

  .countdown-text {
    font-size: 13px;
  }

  .video-container {
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .special-offer {
    padding: 20px;
    margin-top: 32px;
  }

  .special-offer-text {
    font-size: 14px;
  }

  .footer {
    padding: 32px 16px;
  }

  .logo {
    margin-bottom: 24px;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  
  .urgent-banner {
    display: table;
    margin: 0 auto 32px;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .headline {
    font-size: 24px;
  }

  .cta-title {
    font-size: 22px;
  }

  .benefit-text {
    font-size: 14px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
/* Language Switcher */
.lang-switcher {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  flex-wrap: wrap;
}

/* RTL adjustments for switcher position */
html[dir='rtl'] .lang-switcher {
  left: 24px;
  right: auto;
}

html[dir='ltr'] .lang-switcher {
  right: 24px;
  left: auto;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lang-btn:hover {
  background: #f9fafb;
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn.active {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

@media (max-width: 768px) {
  .lang-switcher {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 24px;
    width: 100%;
  }

  html[dir='rtl'] .lang-switcher,
  html[dir='ltr'] .lang-switcher {
    left: auto;
    right: auto;
  }

  .header {
    padding-top: 32px;
  }
}
