/*
Theme Name: Jornada do Equilíbrio
Theme URI: https://jornadadoequilibrio.com.br
Description: Tema customizado para a landing page da Black Friday Vitalícia da Jornada do Equilíbrio
Author: Profª Fernanda Amaral
Version: 1.0
Tags: landing-page, event, education
Text Domain: jornada-equilibrio
*/

:root {
  --color-background: hsl(0, 0%, 7%);
  --color-foreground: hsl(0, 0%, 98%);
  --color-primary: hsl(164, 100%, 38%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(28, 100%, 50%);
  --color-secondary-foreground: hsl(0, 0%, 100%);
  --color-accent: hsl(354, 70%, 45%);
  --color-accent-foreground: hsl(0, 0%, 100%);
  --color-muted: hsl(0, 0%, 20%);
  --color-muted-foreground: hsl(0, 0%, 65%);
  --color-border: hsl(0, 0%, 20%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 98%);
  line-height: 1.6;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(0, 0%, 5%), hsl(0, 0%, 12%));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.countdown-timer {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.countdown-item {
  text-align: center;
  background: linear-gradient(180deg, hsl(0, 0%, 10%), hsl(0, 0%, 8%));
  padding: 20px;
  border-radius: 12px;
  min-width: 100px;
  box-shadow: 0 10px 40px hsl(0, 0%, 0%, 0.5);
}

.countdown-number {
  font-size: 48px;
  font-weight: bold;
  color: hsl(164, 100%, 38%);
  text-shadow: 0 0 40px hsl(164, 100%, 38%, 0.3);
}

.countdown-label {
  font-size: 14px;
  color: hsl(0, 0%, 65%);
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-cta {
  background: linear-gradient(135deg, hsl(164, 100%, 38%), hsl(164, 100%, 45%));
  color: hsl(0, 0%, 100%);
  box-shadow: 0 0 40px hsl(164, 100%, 38%, 0.3);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px hsl(164, 100%, 38%, 0.5);
}

.btn-urgent {
  background: linear-gradient(135deg, hsl(354, 70%, 45%), hsl(354, 70%, 55%));
  color: hsl(0, 0%, 100%);
  animation: pulse 2s infinite;
}

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

.lead-form {
  max-width: 500px;
  margin: 40px auto;
  background: linear-gradient(180deg, hsl(0, 0%, 10%), hsl(0, 0%, 8%));
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px hsl(0, 0%, 0%, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid hsl(0, 0%, 20%);
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 98%);
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: hsl(164, 100%, 38%);
  box-shadow: 0 0 0 2px hsl(164, 100%, 38%, 0.2);
}

.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, hsl(164, 100%, 38%), hsl(164, 100%, 45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px hsl(0, 0%, 0%, 0.5);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: linear-gradient(180deg, hsl(0, 0%, 10%), hsl(0, 0%, 8%));
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px hsl(0, 0%, 0%, 0.5);
  border: 1px solid hsl(0, 0%, 20%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px hsl(164, 100%, 38%, 0.2);
  border-color: hsl(164, 100%, 38%);
}

.footer {
  background: hsl(0, 0%, 5%);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid hsl(0, 0%, 20%);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .countdown-timer {
    gap: 10px;
  }
  
  .countdown-item {
    min-width: 70px;
    padding: 15px;
  }
  
  .countdown-number {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 32px;
  }
}
