:root {
  --primary-color: #8b4513;
  --secondary-color: #daa520;
  --accent-color: #cd853f;
  --dark-brown: #654321;
  --light-brown: #deb887;
  --text-dark: #2f1b14;
  --text-light: #8b7355;
  --white: #fdf5e6;
  --cream: #fff8dc;
  --gold: #ffd700;
  --red: #8b0000;
  --menu-bg: rgba(139, 69, 19, 0.95);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background: linear-gradient(135deg, #fdf5e6 0%, #deb887 50%, #d2b48c 100%);
  color: var(--text-dark);
  line-height: 1.6;
  background-attachment: fixed;
}

/* Menu Sidebar */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 80px;
  background-color: var(--menu-bg);
  backdrop-filter: blur(10px);
  overflow-x: hidden;
  transition: width 0.3s ease;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border-right: 2px solid var(--gold);
}

.conteudo {
  margin-left: 90px;
  padding: 20px;
  transition: margin-left 0.3s ease;
}

.menu:hover {
  width: 250px;
}

.menu ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.menu li {
  margin: 15px 0;
  text-align: left;
  padding: 0 15px;
}

.menu a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 10px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.menu a:hover {
  color: var(--gold);
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.menu a:hover::before {
  width: 100%;
}

.menu-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  display: inline-block;
  width: 30px;
  text-align: center;
}

.menu-text {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu:hover .menu-text {
  opacity: 1;
}

/* Typography */
h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  color: wheat;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: rgb(253, 204, 113);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

h3 {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

h4 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  font-family: "Cinzel", serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-brown));
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--dark-brown), var(--primary-color));
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold));
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--gold), var(--secondary-color));
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

/* Hero Sections */
.hero,
.story-hero,
.characters-hero,
.gallery-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-brown));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  text-align: center;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.hero-content,
.story-hero-content,
.characters-hero-content,
.gallery-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: "Cinzel", serif;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* About Section */
.about {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--light-brown);
}

.about-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--light-brown);
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Video Section */
.video-section {
  margin-bottom: 3rem;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Gallery Preview */
.gallery-preview {
  margin-bottom: 3rem;
}

.gallery-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--light-brown);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
  color: var(--white);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Characters Preview */
.characters-preview {
  margin-bottom: 3rem;
}

.characters-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.characters-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.character-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--light-brown);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

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

.character-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.character-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.character-card:hover .character-image img {
  transform: scale(1.1);
}

.character-info {
  padding: 1.5rem;
}

.character-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.character-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Story Content */
.story-content {
  margin-bottom: 3rem;
}

.story-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--light-brown);
}

.story-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.story-image {
  margin: 1.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Timeline */
.timeline {
  margin-bottom: 3rem;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--gold));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 2px solid var(--gold);
  font-family: "Cinzel", serif;
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 45%;
  margin-top: 2rem;
  border: 2px solid var(--light-brown);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Characters Grid */
.characters-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.character-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--light-brown);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

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

.character-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.character-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.character-card:hover .character-image img {
  transform: scale(1.1);
}

.character-info {
  padding: 2rem;
}

.character-role {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.character-traits {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trait {
  background: var(--light-brown);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Character Stats */
.character-stats {
  margin-bottom: 3rem;
}

.character-stats h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 2px solid var(--light-brown);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.stat-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.stat-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-bar span {
  min-width: 80px;
  font-weight: 500;
  color: var(--text-dark);
}

.bar {
  flex: 1;
  height: 8px;
  background: var(--light-brown);
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Gallery Categories */
.gallery-categories {
  margin-bottom: 2rem;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-btn {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--light-brown);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Cinzel", serif;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--gold);
}

/* Video Gallery */
.video-gallery {
  margin-bottom: 3rem;
}

.video-gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.video-item {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
}

.video-item iframe {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.video-item h3 {
  text-align: center;
  margin-top: 1rem;
  color: var(--primary-color);
}

/* Gallery Stats */
.gallery-stats {
  margin-bottom: 3rem;
}

.gallery-stats h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-brown));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 3rem;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.copyright {
  color: var(--gold);
  font-weight: 500;
  margin-top: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .menu {
    width: 60px;
  }

  .menu:hover {
    width: 200px;
  }

  .conteudo {
    margin-left: 70px;
    padding: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .features,
  .gallery-grid,
  .characters-grid,
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature,
  .gallery-item,
  .character-card,
  .stat-card {
    width: 100%;
    max-width: 400px;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-date {
    left: 20px;
    transform: none;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    margin-top: 0;
  }

  .video-item {
    min-width: auto;
  }

  .category-buttons {
    flex-direction: column;
    align-items: center;
  }

  .category-btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .menu {
    width: 50px;
  }

  .menu:hover {
    width: 180px;
  }

  .conteudo {
    margin-left: 60px;
  }

  .hero,
  .story-hero,
  .characters-hero,
  .gallery-hero {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .about,
  .story-section {
    padding: 1.5rem;
  }

  .character-info {
    padding: 1.5rem;
  }
}

<<<<<<< HEAD
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
}
.card-link:hover,
.card-link:focus {
  filter: brightness(0.97);
  outline: none;
=======
@media (max-width: 320px) {
  .menu {
    width: 45px;
  }

  .menu:hover {
    width: 160px;
  }

  .conteudo {
    margin-left: 55px;
    padding: 0.5rem;
  }

  .hero,
  .story-hero,
  .characters-hero,
  .gallery-hero {
    padding: 1rem 0.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .about,
  .story-section {
    padding: 1rem;
  }

  .character-info {
    padding: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .menu-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    width: 20px;
  }

  .menu a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .gallery-item,
  .character-card,
  .feature {
    margin-bottom: 1rem;
  }

  .video-container iframe {
    height: 200px;
  }

  .video-item iframe {
    height: 200px;
  }
>>>>>>> 719352b8a295389d278e7c018f3ec3cbc2fcef67
}
