/*
Theme Name: Adeus Barriga Landing Page
Theme URI: https://example.com
Author: Seu Nome
Author URI: https://example.com
Description: Tema WordPress para landing page de eBook "Adeus Barriga Depois dos 30"
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adeus-barriga
*/

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

:root {
  --color-primary: hsl(150, 45%, 45%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(340, 60%, 92%);
  --color-cta: hsl(150, 55%, 40%);
  --color-cta-foreground: hsl(0, 0%, 100%);
  --color-background: hsl(0, 0%, 100%);
  --color-foreground: hsl(20, 10%, 20%);
  --color-beige: hsl(30, 25%, 88%);
  --color-soft-pink: hsl(340, 60%, 92%);
  --color-accent: hsl(150, 50%, 95%);
  --color-border: hsl(30, 20%, 90%);
  --gradient-hero: linear-gradient(135deg, hsl(150, 50%, 95%) 0%, hsl(0, 0%, 100%) 50%, hsl(340, 60%, 96%) 100%);
  --shadow-soft: 0 4px 20px -4px rgba(72, 169, 133, 0.15);
  --shadow-strong: 0 10px 40px -10px rgba(72, 169, 133, 0.25);
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-cta {
  background: linear-gradient(135deg, hsl(150, 55%, 40%) 0%, hsl(150, 60%, 50%) 100%);
  color: var(--color-cta-foreground);
  box-shadow: var(--shadow-strong);
  animation: pulse 2s infinite;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px -10px rgba(72, 169, 133, 0.4);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 40px -10px rgba(72, 169, 133, 0.25);
  }
  50% {
    box-shadow: 0 10px 40px -10px rgba(72, 169, 133, 0.5);
  }
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  padding: 80px 20px;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-primary);
  line-height: 1.2;
}

.hero-content h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--color-foreground);
  font-weight: 400;
}

.ebook-mockup {
  max-width: 400px;
  margin: 40px auto;
  filter: drop-shadow(var(--shadow-strong));
}

/* Section Styling */
.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-primary);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

/* Countdown Timer */
.countdown-timer {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 30px auto;
  max-width: 500px;
}

.timer-display {
  font-size: 48px;
  font-weight: 700;
  margin: 10px 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--color-accent);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Offer Section */
.offer-section {
  background: var(--color-accent);
  padding: 80px 20px;
  text-align: center;
}

.price-comparison {
  font-size: 24px;
  margin: 20px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.new-price {
  color: var(--color-cta);
  font-size: 48px;
  font-weight: 800;
}

/* FAQ Accordion */
.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

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

/* Footer */
.site-footer {
  background: var(--color-foreground);
  color: var(--color-background);
  padding: 40px 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content h2 {
    font-size: 18px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 50px 15px;
  }
}
