/*
Theme Name: CandiStop Protocol
Theme URI: https://protocolo-candistop.com
Author: Dra. Ingrid Luane
Author URI: https://protocolo-candistop.com
Description: Tema personalizado para o Protocolo CandiStop - Tratamento Natural da Candidíase
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: candistop
Tags: medical, health, feminine, clean, modern
*/

/* ==========================================
   VARIÁVEIS DE CORES - DESIGN SYSTEM
   ========================================== */
:root {
  /* Cores Principais */
  --primary: 340 82% 52%;
  --primary-foreground: 0 0% 100%;
  --secondary: 280 60% 70%;
  --secondary-foreground: 0 0% 100%;
  --accent: 340 100% 95%;
  --accent-foreground: 340 82% 52%;
  
  /* Backgrounds */
  --background: 0 0% 100%;
  --foreground: 340 10% 20%;
  --card: 0 0% 100%;
  --card-foreground: 340 10% 20%;
  
  /* Bordas e Sombras */
  --border: 340 20% 90%;
  --radius: 1rem;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, hsl(340, 82%, 52%), hsl(280, 60%, 70%));
  --gradient-soft: linear-gradient(180deg, hsl(340, 100%, 98%), hsl(0, 0%, 100%));
}

/* ==========================================
   RESET E BASE
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================
   TIPOGRAFIA
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ==========================================
   CONTAINER E LAYOUT
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  background: var(--gradient-soft);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ==========================================
   CARDS DE MÓDULOS
   ========================================== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.module-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(220, 38, 127, 0.15);
  border-color: hsl(var(--primary));
}

.module-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.module-title {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.module-description {
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 12px rgba(220, 38, 127, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 127, 0.4);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

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

/* ==========================================
   SUPORTE SECTION
   ========================================== */
.support-section {
  background: var(--gradient-soft);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.support-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

.footer-content {
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .modules-grid {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

/* ==========================================
   CHECKBOX E FORMULÁRIOS
   ========================================== */
.checkbox-list {
  list-style: none;
  padding: 0;
}

.checkbox-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background: hsl(var(--accent));
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.checkbox-item:hover {
  background: hsl(340, 100%, 92%);
}

.checkbox-item input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  accent-color: hsl(var(--primary));
  cursor: pointer;
}

.checkbox-item label {
  cursor: pointer;
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* ==========================================
   INTERACTIVE FIELDS
   ========================================== */
.interactive-field {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0.75rem 0;
}

.field-label {
  display: block;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.field-value {
  color: hsl(var(--foreground));
  font-size: 0.95rem;
}
