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

a {
  text-decoration: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header */
header {
  background-color: #1a120b;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: white;
  font-weight: 500;
  transition: all 0.3s;
}

.main-nav a:hover {
  color: #ff6b6b;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1506197603052-3cc9c3a201bd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #ff6b6b;
  color: white;
  margin-right: 15px;
}

.btn-primary:hover {
  background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* Seção Legendários */
.legendarios-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.legendarios-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.legendarios-image {
  flex: 0 0 45%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.legendarios-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.legendarios-image:hover img {
  transform: scale(1.05);
}

.legendarios-content {
  flex: 1;
  padding: 20px 0;
}

.legendarios-title {
  font-size: 2.2rem;
  color: #1a120b;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.legendarios-text {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

.legendarios-highlight {
  font-weight: 600;
  color: #ff6b6b;
}

.legendarios-details {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid #ff6b6b;
}

.legendarios-details p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.legendarios-details i {
  margin-right: 12px;
  color: #ff6b6b;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.legendarios-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #1a120b, #2a1a0a);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 8px 15px rgba(26,18,11,0.15);
  font-size: 0.9rem;
}

.legendarios-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(26,18,11,0.2);
}

/* Seção de Vídeos */
.videos-section {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  color: #1a120b;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #777;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.video-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-thumbnail {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-content {
  padding: 15px;
}

.video-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1a120b;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 0.85rem;
}

.no-videos {
  text-align: center;
  grid-column: 1 / -1;
  padding: 40px;
  color: #666;
  font-size: 1.2rem;
}

.view-all-btn {
  display: block;
  text-align: center;
  margin-top: 40px;
}

/* Footer */
.main-footer {
  background-color: #1a120b;
  color: white;
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-about {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: #ff6b6b;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #ff6b6b;
}

.footer-links li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-links a {
  color: #ddd;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #ff6b6b;
  width: 18px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

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

/* Responsividade */
@media (max-width: 1200px) {
  .legendarios-container {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .legendarios-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .legendarios-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .legendarios-image img {
    height: 280px;
  }
  
  .main-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #1a120b;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn {
    padding: 12px 25px;
  }
  
  .legendarios-title {
    font-size: 2rem;
  }
  
  .legendarios-image img {
    height: 250px;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  
  .legendarios-section {
    padding: 60px 0;
  }
  
  .legendarios-title {
    font-size: 1.8rem;
  }
  
  .legendarios-btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}