/*
Theme Name: Manual da Mulher Plena
Theme URI: https://manualdamulherplena.com.br
Author: Manual da Mulher Plena
Author URI: https://manualdamulherplena.com.br
Description: Tema personalizado para Manual da Mulher Plena - Versão completa
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manual-mulher-plena
*/

:root {
  /* Core colors */
  --background: 36 39% 97%;
  --foreground: 25 35% 20%;
  --card: 0 0% 100%;
  --card-foreground: 25 35% 20%;
  --primary: 25 45% 27%;
  --primary-foreground: 36 39% 97%;
  --secondary: 30 25% 85%;
  --secondary-foreground: 25 35% 20%;
  --muted: 30 25% 90%;
  --muted-foreground: 25 20% 50%;
  --accent: 28 35% 75%;
  --accent-foreground: 25 35% 20%;
  --border: 30 20% 88%;
  
  /* Custom tokens */
  --cream: 36 39% 97%;
  --beige: 30 25% 85%;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -2px hsl(25 45% 27% / 0.08);
  --shadow-elevated: 0 10px 40px -10px hsl(25 45% 27% / 0.15);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

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

a {
  color: hsl(var(--accent-foreground));
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: hsl(var(--primary));
}

/* Buttons */
.btn, .button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-cta {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 10px 30px -10px hsl(25 45% 27% / 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px hsl(25 45% 27% / 0.4);
  color: hsl(var(--primary-foreground));
}

.btn-cta-secondary {
  background: white;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
}

.btn-cta-secondary:hover {
  background: hsl(var(--primary));
  color: white;
  transform: translateY(-2px);
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 32px;
}

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

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

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .btn, .button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
}
