/*
Theme Name: Raquel Camocardi - Terapias Holísticas
Theme URI: https://raquelcamocardi.com.br
Author: Raquel Camocardi
Author URI: https://raquelcamocardi.com.br
Description: Tema premium e minimalista para terapeuta holística especializada em Mesa Reiki da Chama Violeta e Terapias Integrativas
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raquel-camocardi
Tags: wellness, holistic, therapy, minimal, modern, premium
*/

/* ==========================================================================
   Design System - Cores e Variáveis
   ========================================================================== */

:root {
  /* Cores principais */
  --color-beige: #F7F1E9;
  --color-teal: #2A6F6A;
  --color-teal-dark: #1f5450;
  --color-teal-light: #3d8580;
  --color-violet: #A88BFF;
  --color-violet-light: #c4afff;
  --color-gold: #C9A86A;
  
  /* Cores de fundo e texto */
  --color-background: #FFFFFF;
  --color-text-primary: #2C2C2C;
  --color-text-secondary: #6B6B6B;
  --color-border: #E5E5E5;
  
  /* Fontes */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset e Base
   ========================================================================== */

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

h1 { font-size: 3.5rem; }
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;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-teal-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-teal);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--color-violet);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--color-violet-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background-color: var(--color-teal);
  color: white;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.card-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.5rem;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.card-text {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

/* ==========================================================================
   Grid System
   ========================================================================== */

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 968px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section { padding: 60px 0; }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .card {
    padding: 20px;
  }
}
