/*
Theme Name: Clube da Beatriz
Theme URI: https://clubedabeatriz.com
Author: Clube da Beatriz
Author URI: https://clubedabeatriz.com
Description: Tema personalizado para o Clube da Beatriz - Cursos de Confeitaria e Desenvolvimento Pessoal
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: clube-beatriz
Tags: custom-background, custom-logo, custom-menu, featured-images, e-commerce
*/

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

:root {
  --color-gold: hsl(43, 74%, 66%);
  --color-gold-dark: hsl(43, 80%, 58%);
  --color-dark: #0a0a0a;
  --color-dark-secondary: #1a1a1a;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: var(--color-dark);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Cores Douradas */
.gold-text {
  color: var(--color-gold);
  text-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.gold-gradient {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
}

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

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}

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

/* Botões */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--color-gold);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.5);
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(234, 179, 8, 0.5);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
