/*
Theme Name: Presence Mental Booster
Description: Tema WordPress para landing page da Presence Mental Booster
Version: 1.0
Author: Presence Team
*/

/* Design System - Presence Brand */
:root {
  /* Presence Brand Colors */
  --brand-navy: 217, 86%, 8%;        /* Deep navy blue #0B1426 */
  --brand-gold: 44, 88%, 62%;        /* Golden yellow #F4B942 */
  --brand-gold-light: 44, 100%, 85%; /* Light gold variant */
  --brand-navy-light: 217, 60%, 15%; /* Lighter navy for variations */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--brand-navy)), hsl(var(--brand-navy-light)));
  --gradient-gold: linear-gradient(135deg, hsl(var(--brand-gold)), hsl(var(--brand-gold-light)));
  --gradient-hero: linear-gradient(120deg, hsl(var(--brand-navy)) 0%, hsl(var(--brand-navy-light)) 50%, hsl(var(--brand-gold), 0.1) 100%);
  
  /* Shadows */
  --shadow-brand: 0 10px 40px hsl(var(--brand-navy), 0.15);
  --shadow-gold: 0 8px 32px hsl(var(--brand-gold), 0.25);
  --shadow-elegant: 0 4px 20px hsl(var(--brand-navy), 0.08);
  
  --radius: 1rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(var(--brand-navy));
  background: white;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: white; }
.text-navy { color: hsl(var(--brand-navy)); }
.text-gold { color: hsl(var(--brand-gold)); }

.bg-navy { background: hsl(var(--brand-navy)); }
.bg-gold { background: hsl(var(--brand-gold)); }
.bg-gradient-hero { background: var(--gradient-hero); }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: hsl(var(--brand-gold));
  color: hsl(var(--brand-navy));
}

.btn-primary:hover {
  background: hsl(var(--brand-gold-light));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: hsl(var(--brand-navy));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: hsl(var(--brand-navy));
}

/* Target Audience */
.target-questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.question-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  text-align: center;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: hsl(var(--brand-gold));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--brand-navy));
  font-size: 1.5rem;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-content {
  padding: 2rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.price-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--brand-gold));
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.faq-question {
  background: hsl(var(--brand-navy));
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Footer */
.footer {
  background: hsl(var(--brand-navy));
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: hsl(var(--brand-gold));
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: hsl(var(--brand-gold));
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}