/*
Theme Name: Detox Perfeito 21 Dias
Theme URI: https://detoxperfeito.com
Author: Detox Perfeito
Author URI: https://detoxperfeito.com
Description: Tema WordPress para landing page do Detox Perfeito 21 Dias - programa completo de detox e emagrecimento
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: detox-perfeito
Tags: landing-page, health, wellness, detox
*/

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis CSS - Design System */
:root {
  --primary: hsl(142, 76%, 36%);
  --primary-foreground: hsl(0, 0%, 98%);
  --primary-light: hsl(142, 76%, 45%);
  --primary-dark: hsl(142, 76%, 28%);
  
  --secondary: hsl(24, 100%, 50%);
  --secondary-foreground: hsl(0, 0%, 98%);
  
  --accent: hsl(47, 100%, 68%);
  --accent-foreground: hsl(222.2, 84%, 4.9%);
  
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222.2, 84%, 4.9%);
  
  --muted: hsl(210, 40%, 96.1%);
  --muted-foreground: hsl(215.4, 16.3%, 46.9%);
  
  --border: hsl(214.3, 31.8%, 91.4%);
  
  --radius: 0.75rem;
  
  --shadow-soft: 0 2px 4px hsla(142, 76%, 36%, 0.08);
  --shadow-medium: 0 4px 8px hsla(142, 76%, 36%, 0.1);
  --shadow-large: 0 8px 16px hsla(142, 76%, 36%, 0.15);
}

/* Tipografia */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), hsl(24, 100%, 60%));
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

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

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

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-muted { background-color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  section {
    padding: 3rem 0;
  }
  
  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

/* Hide Lovable badge */
a[href*="lovable.dev"], 
iframe[src*="lovable.dev"], 
div[style*="Edit with Lovable"], 
.lovable-badge {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: -9999 !important;
}
