/*
Theme Name: Landing Page Conversão
Theme URI: https://example.com/
Author: Seu Nome
Author URI: https://example.com/
Description: Tema WordPress moderno focado em conversão com cronômetro e múltiplos CTAs
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing-conversao
*/

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

:root {
  --primary: #0369a1;
  --primary-glow: #0891b2;
  --primary-foreground: #ffffff;
  --accent: #f97316;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #1e293b;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --shadow-primary: 0 10px 40px -10px rgba(3, 105, 161, 0.3);
  --shadow-accent: 0 10px 40px -10px rgba(249, 115, 22, 0.3);
  --shadow-card: 0 4px 20px -4px rgba(30, 41, 59, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: var(--primary-foreground);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-accent);
  font-weight: 700;
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
}

/* Countdown Timer */
.countdown-banner {
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  margin-bottom: 3rem;
}

.countdown-timer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 70px;
}

.time-value {
  background: var(--card);
  border: 2px solid rgba(3, 105, 161, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.time-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: rgba(3, 105, 161, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(3, 105, 161, 0.2);
  margin-bottom: 1.5rem;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Feature Cards */
.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: rgba(3, 105, 161, 0.5);
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-primary);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

/* Social Proof */
.social-proof {
  padding: 3rem 0;
  background: rgba(3, 105, 161, 0.05);
  border-top: 1px solid rgba(3, 105, 161, 0.1);
  border-bottom: 1px solid rgba(3, 105, 161, 0.1);
}

.stats-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Benefits Section */
.benefits-card {
  background: var(--card);
  border: 2px solid rgba(3, 105, 161, 0.2);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

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

.check-icon {
  background: rgba(3, 105, 161, 0.1);
  border-radius: 9999px;
  padding: 0.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Pricing Box */
.pricing-box {
  background: var(--card);
  border: 2px solid rgba(3, 105, 161, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-primary);
  text-align: center;
  position: relative;
}

.price-old {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 1.5rem;
}

.price-current {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.price-installments {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

.discount-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-accent);
  animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
