/* Variáveis de cores e estilos */
:root {
  --primary-color: #000000; /* Preto */
  --accent-color: #d4af37; /* Dourado */
  --accent-color-light: #e5c760; /* Dourado mais claro para hover */
  --text-color: #ffffff; /* Branco para texto sobre fundo preto */
  --text-color-dark: #333333; /* Texto escuro para áreas claras */
  --background-color: #0a0a0a; /* Preto com leve tonalidade para o fundo */
  --card-background: #111111; /* Fundo dos cards um pouco mais claro */
  --font-primary: 'Cinzel', serif; /* Fonte elegante para títulos */
  --font-secondary: 'Cormorant Garamond', serif; /* Fonte elegante para corpo */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
      width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 400; /* Fonte fina para aspecto elegante */
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

a:hover {
  color: var(--accent-color-light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Header e Navegação */
header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 1rem;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(10,10,10,0.7) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Seções */
section {
  padding: 6rem 0;
}

section:nth-child(odd) {
  background-color: rgba(10, 10, 10, 0.8);
}

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

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: var(--card-background);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-content {
  flex-grow: 1;
}

.card-footer {
  margin-top: 1.5rem;
}

/* Música Cards */
.music-card .audio-player {
  width: 100%;
  margin-top: 1rem;
}

.music-card audio {
  width: 100%;
  height: 40px;
}

/* Livros Cards */
.book-card .btn {
  margin-top: 1rem;
}

/* Formulário de Contato */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-family: var(--font-primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsividade */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

.gray-box {
    width: 300px;
    background-color: black;
    padding: 20px;
    text-align: center;
    margin: 20px;
    border-radius: 10px;
}

.gbox-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}

.gbox-title {
    margin: 10px 0;
    font-size: 1.5em;
}

.gbox-text {
    margin: 10px 0;
    font-size: 1em;
    line-height: 1.5;
}

.gbox-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
}

.gbox-button:hover {
    background-color: #555;
}


