/*
Theme Name: Multicanais Futebol
Description: Tema WordPress inspirado no multicanais.productions - versão moderna
Version: 2.0
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  text-align: center;
  flex: 1;
}

.logo a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo::before {
  content: "▶";
  font-size: 2rem;
  margin-right: 0.5rem;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-right: 2rem;
}

.main-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.main-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.search-form {
  position: relative;
}

.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  color: white;
  font-size: 0.9rem;
  width: 250px;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Seção Assistir Ao Vivo */
.live-section {
  padding: 4rem 0;
  background: #0a0a0a;
}

.section-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.category-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
  border: 2px solid #8b5cf6;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.5s;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: #a855f7;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.category-icon.football {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.category-icon.basketball {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.category-icon.tv {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.category-icon.fights {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.category-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-subtitle {
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* Seção Jogos de Hoje */
.games-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
  border: 2px solid #333;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #8b5cf6;
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.game-thumbnail {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #2d1b69 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teams-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  color: white;
}

.team-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.vs-text {
  font-size: 2rem;
  font-weight: 900;
  color: #8b5cf6;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
}

.game-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.live-indicator {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(139, 92, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  pointer-events: none;
}

.game-info {
  padding: 1.5rem;
}

.game-time {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.game-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.game-championship {
  color: #a0a0a0;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-views {
  color: #8b5cf6;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.watch-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.watch-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.widget {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a1a2a 100%);
  border: 2px solid #333;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.3s ease;
}

.widget:hover {
  border-color: #8b5cf6;
}

.widget h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-item:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.team-logo-sidebar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  border: 2px solid #333;
  transition: border-color 0.3s;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.team-item:hover .team-logo-sidebar {
  border-color: #8b5cf6;
}

.team-name {
  font-size: 0.7rem;
  color: #ccc;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a0033 0%, #4a0080 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Animações */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Layout Principal */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .live-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .teams-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;
  }

  .header-content {
    justify-content: space-between;
  }

  .logo {
    flex: none;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .live-categories {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .teams-display {
    gap: 1rem;
    padding: 1.5rem;
  }

  .team-logo {
    width: 50px;
    height: 50px;
  }

  .vs-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .category-card {
    padding: 1.5rem;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .search-input {
    width: 200px;
  }
}
