ve/* Reset e fontes */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Trebuchet MS', Arial, sans-serif; scroll-behavior: smooth; }
body { overflow-x:hidden; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; }

/* Fundo Mario-Themed */
.background {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #ffeaa7 100%);
  background-image: url('https://i.pinimg.com/736x/84/f7/68/84f768cce97a523754b86c6babebce22.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) blur(1px);
  z-index:-1;
  animation: backgroundShift 20s ease-in-out infinite;
}
@keyframes backgroundShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Top Bar */
.top-bar {
  display:flex; justify-content:space-between; align-items:center;
  padding:15px 30px; background:linear-gradient(135deg, rgba(253,7,7,0.9), rgba(255,0,0,0.9)); color:white;
  backdrop-filter: blur(10px); border-bottom: 2px solid rgba(255,255,255,0.2);
}
.top-bar .logo { height:60px; transition: transform 0.3s ease; }
.top-bar .logo:hover { transform: scale(1.1); }
.top-bar a.btn-cadastro, #music-btn {
  background: linear-gradient(135deg, #ffcc00, #ffb300); color:#000; padding:10px 20px; border-radius:25px; font-weight:bold; border:none; margin-left:10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s ease;
}
.top-bar a.btn-cadastro:hover, #music-btn:hover {
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Header / Menu */
header { background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(20,20,20,0.8)); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.menu { display:flex; justify-content:center; list-style:none; padding:15px 0; }
.menu li { margin:0 30px; }
.menu li a { color:white; text-decoration:none; font-weight:bold; font-size:18px; transition:0.3s; padding:10px 15px; border-radius:20px; }
.menu li a:hover { color:#ffcc00; transform:scale(1.1); background: rgba(255,255,255,0.1); }


/*Cursor*/
body {
}
.character:hover {
}



/* Sections */
.section { padding:100px 20px; text-align:center; color:white; text-shadow:2px 2px #000; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border-radius:20px; margin:20px auto; box-shadow: 0 8px 32px rgba(0,0,0,0.3); animation: fadeInUp 1s ease-out; display: flex; flex-direction: column; align-items: center; max-width: 1200px; }
/* Sections */
.section { padding:100px 20px; text-align:center; color:white; text-shadow:2px 2px #000; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border-radius:20px; margin:20px auto; box-shadow: 0 8px 32px rgba(0,0,0,0.3); animation: fadeInUp 1s ease-out; display: flex; flex-direction: column; align-items: center; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.section h1 { font-family:'Press Start 2P', cursive; font-size:60px; color:#ffcc00; margin-bottom:30px; text-shadow:3px 3px #000; animation: textGlow 2s ease-in-out infinite alternate; }
@keyframes textGlow { from { text-shadow: 3px 3px #000; } to { text-shadow: 3px 3px #000, 0 0 10px #ffcc00; } }
.section h2 { font-size:42px; color:#ffcc00; margin-bottom:30px; text-shadow:2px 2px #000; }
.section p { font-size:20px; line-height:1.6; max-width:900px; margin:20px auto; }

/* About Page Specific Styles - Mario Themed */
.bloco { display: flex; flex-direction: column; align-items: center; background: linear-gradient(135deg, rgba(255,0,0,0.2), rgba(0,0,255,0.2), rgba(255,204,0,0.3), rgba(0,255,0,0.2)); border-radius: 30px; margin: 60px auto; max-width: 1000px; padding: 50px; box-shadow: 0 20px 60px rgba(255,0,0,0.3), 0 0 30px rgba(255,204,0,0.5); border: 4px solid rgba(255,204,0,0.5); transition: all 0.6s ease; backdrop-filter: blur(20px); position: relative; overflow: hidden; animation: blocoFadeIn 1.2s ease-out; }
.bloco::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent, rgba(255,204,0,0.2), rgba(0,255,0,0.2), transparent); transform: translateX(-100%); transition: transform 0.8s ease; }
.bloco::after { content: '⭐'; position: absolute; top: 10px; right: 10px; font-size: 30px; color: #ffcc00; animation: starTwinkle 2s infinite; }
.bloco:hover::before { transform: translateX(100%); }
.bloco:hover { transform: translateY(-20px) scale(1.05) rotate(1deg); box-shadow: 0 30px 80px rgba(255,0,0,0.5), 0 0 40px rgba(255,204,0,0.7); border-color: rgba(255,204,0,0.8); animation: marioJump 0.5s ease; }
@keyframes blocoFadeIn { from { opacity: 0; transform: translateY(60px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes marioJump { 0% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.02); } 100% { transform: translateY(-20px) scale(1.05) rotate(1deg); } }
@keyframes starTwinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.bloco .imagem { margin-bottom: 25px; text-align: center; position: relative; }
.bloco .imagem img { width: 100%; max-width: 550px; height: auto; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: transform 0.4s ease, box-shadow 0.4s ease; border: 4px solid rgba(255,255,255,0.2); }
.bloco:hover .imagem img { transform: scale(1.08) rotate(1deg); box-shadow: 0 15px 40px rgba(255,204,0,0.3); }
.bloco .texto { text-align: center; color: white; text-shadow: 2px 2px #000; position: relative; z-index: 1; }
.bloco .texto h2, .bloco .texto h3 { color: #ffcc00; font-family: 'Press Start 2P', cursive; margin-bottom: 20px; text-shadow: 3px 3px #000, 0 0 10px #ffcc00; animation: textGlow 3s ease-in-out infinite alternate; }
.bloco .texto p { font-size: 20px; line-height: 1.8; max-width: 600px; margin: 0 auto; }

/* Home */
.home-content { display:flex; flex-direction:column; align-items:center; gap:30px; }

/* Carousel */
.carousel { position:relative; width:100%; max-width:800px; overflow:hidden; margin-top:20px; border-radius:20px; box-shadow:0 10px 40px rgba(0,0,0,0.4); background:linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08)); backdrop-filter:blur(15px); border:2px solid rgba(255,255,255,0.3); animation: glow 3s ease-in-out infinite alternate; }
@keyframes glow { from { box-shadow:0 10px 40px rgba(0,0,0,0.4); } to { box-shadow:0 10px 40px rgba(255,204,0,0.3); } }
.carousel-inner { display:flex; transition:transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-img { width:800px; height:450px; object-fit:contain; flex-shrink:0; border-radius:18px; transition:transform 0.4s ease, opacity 0.4s ease; opacity:0.7; }
.carousel-img.active { opacity:1; transform:scale(1.05); }
.carousel-img:hover { transform:scale(1.08); opacity:1; }
.carousel-prev, .carousel-next { position:absolute; top:50%; transform:translateY(-50%); background:linear-gradient(135deg, rgba(255,204,0,0.9), rgba(255,165,0,0.9)); color:#000; border:none; padding:18px 24px; cursor:pointer; font-size:24px; font-weight:bold; border-radius:50%; box-shadow:0 6px 20px rgba(0,0,0,0.4); transition:all 0.4s ease; z-index:10; }
.carousel-prev { left:30px; }
.carousel-next { right:30px; }
.carousel-prev:hover, .carousel-next:hover { background:linear-gradient(135deg, rgba(255,165,0,1), rgba(255,140,0,1)); transform:translateY(-50%) scale(1.15); box-shadow:0 8px 25px rgba(0,0,0,0.5); }
.carousel-indicators { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.carousel-indicator { width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,0.5); cursor:pointer; transition:all 0.3s ease; }
.carousel-indicator.active { background:#ffcc00; transform:scale(1.3); }
.carousel-indicator:hover { background:rgba(255,255,255,0.8); }

/* Characters */
.characters-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap:25px; margin-top:40px; }
.character { background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7)); border-radius:20px; padding:15px; text-align:center; transition:0.4s; cursor:pointer; box-shadow:0 6px 20px rgba(0,0,0,0.3); border: 2px solid rgba(255,255,255,0.2); }
.character:hover { transform:translateY(-15px) scale(1.15); box-shadow:0 15px 35px rgba(0,0,0,0.5); border-color: rgba(255,204,0,0.5); animation: characterGlow 0.5s ease-in-out; }
.character[data-name="Mario"]:hover { background: linear-gradient(135deg, rgba(255,0,0,0.5), rgba(255,100,100,0.5)); }
.character[data-name="Luigi"]:hover { background: linear-gradient(135deg, rgba(0,255,0,0.5), rgba(100,255,100,0.5)); }
.character[data-name="Peach"]:hover { background: linear-gradient(135deg, rgba(255,192,203,0.5), rgba(255,20,147,0.5)); }
.character[data-name="Daisy"]:hover { background: linear-gradient(135deg, rgba(255,165,0,0.5), rgba(255,140,0,0.5)); }
.character[data-name="Bowser"]:hover { background: linear-gradient(135deg, rgba(139,0,0,0.5), rgba(178,34,34,0.5)); }
.character[data-name="Yoshi"]:hover { background: linear-gradient(135deg, rgba(0,128,0,0.5), rgba(50,205,50,0.5)); }
.character[data-name="Toad"]:hover { background: linear-gradient(135deg, rgba(0,0,139,0.5), rgba(0,0,205,0.5)); }
.character[data-name="Rosalina"]:hover { background: linear-gradient(135deg, rgba(135,206,235,0.5), rgba(173,216,230,0.5)); }
.character[data-name="Wario"]:hover { background: linear-gradient(135deg, rgba(255,255,0,0.5), rgba(255,215,0,0.5)); }
.character[data-name="Donkey Kong"]:hover { background: linear-gradient(135deg, rgba(165,42,42,0.5), rgba(210,105,30,0.5)); }
.character[data-name="Waluigi"]:hover { background: linear-gradient(135deg, rgba(75,0,130,0.5), rgba(138,43,226,0.5)); }
@keyframes characterGlow { 0% { box-shadow: 0 6px 20px rgba(0,0,0,0.3); } 50% { box-shadow: 0 15px 35px rgba(255,204,0,0.4); } 100% { box-shadow: 0 15px 35px rgba(0,0,0,0.5); } }
.character img { width:100%; height:180px; object-fit:contain; border-radius:15px; transition: transform 0.3s ease; }
.character:hover img { transform: scale(1.05); }
.character p { margin-top:10px; font-size:16px; color:#000; font-family: 'Press Start 2P' , cursive; text-shadow: 1px 1px rgba(0,0,0,0.3); }

/* Modal */
.modal { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); justify-content:center; align-items:center; animation: modalFadeIn 0.3s ease-out; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9)); padding:30px; border-radius:25px; max-width:650px; text-align:center; position:relative; color: #000000; box-shadow: 0 20px 60px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.3); animation: modalSlideIn 0.4s ease-out; }
@keyframes modalSlideIn { from { transform: scale(0.8) translateY(-20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.close-btn { position:absolute; top:15px; right:20px; font-size:28px; cursor:pointer; font-weight:bold; color: #333; transition: color 0.3s ease; }
.close-btn:hover { color: #ff0000; transform: scale(1.2); }
#modalIcon { width:120px; height:120px; border-radius:50%; margin-bottom:20px; border: 3px solid rgba(255,204,0,0.5); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
#modalDescription { font-size:18px; line-height:1.6; margin:20px 0; }
#modalVideo { width:100%; height:250px; border:none; margin-top:20px; border-radius:15px; box-shadow: 0 8px 25px rgba(0,0,0,0.3); }


 .background {
  position: fixed;
  inset: 0;
  background-image:  url('https://i.pinimg.com/736x/84/f7/68/84f768cce97a523754b86c6babebce22.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: none;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .container { max-width: 100%; padding: 0 20px; }
  .top-bar { padding: 10px 20px; }
  .top-bar .logo { height: 50px; }
  .top-bar a.btn-cadastro, #music-btn { padding: 8px 16px; font-size: 14px; margin-left: 5px; }
  .menu li { margin: 0 15px; }
  .menu li a { font-size: 16px; padding: 8px 12px; }
  .section { padding: 80px 20px; }
  .section h1 { font-size: 48px; }
  .section h2 { font-size: 36px; }
  .section p { font-size: 18px; }
  .carousel { max-width: 100%; }
  .carousel-img { width: 100%; height: 300px; }
  .characters-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .bloco { max-width: 100%; padding: 30px; }
  .bloco .imagem img { max-width: 100%; }
  .bloco .texto p { font-size: 18px; }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .top-bar { flex-direction: column; padding: 10px; }
  .top-bar .logo { height: 40px; margin-bottom: 10px; }
  .top-bar div { display: flex; flex-wrap: wrap; justify-content: center; }
  .top-bar a.btn-cadastro, #music-btn { padding: 6px 12px; font-size: 12px; margin: 5px; }
  .menu { flex-direction: column; padding: 10px 0; }
  .menu li { margin: 5px 0; }
  .menu li a { font-size: 14px; padding: 8px 16px; }
  .section { padding: 60px 15px; margin: 10px; }
  .section h1 { font-size: 32px; }
  .section h2 { font-size: 28px; }
  .section p { font-size: 16px; }
  .carousel { max-width: 100%; }
  .carousel-img { width: 100%; height: 200px; }
  .carousel-prev, .carousel-next { padding: 12px 18px; font-size: 18px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .characters-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .character { padding: 10px; }
  .character img { height: 120px; }
  .character p { font-size: 12px; }
  .bloco { padding: 20px; margin: 20px 0; }
  .bloco .imagem img { max-width: 100%; height: auto; }
  .bloco .texto h2, .bloco .texto h3 { font-size: 20px; }
  .bloco .texto p { font-size: 16px; }
  .modal-content { max-width: 90%; padding: 20px; }
  #modalIcon { width: 80px; height: 80px; }
  #modalDescription { font-size: 16px; }
  #modalVideo { height: 200px; }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .top-bar { padding: 5px; }
  .top-bar .logo { height: 30px; }
  .top-bar a.btn-cadastro, #music-btn { padding: 5px 10px; font-size: 10px; }
  .menu li a { font-size: 12px; padding: 6px 12px; }
  .section { padding: 40px 10px; }
  .section h1 { font-size: 24px; }
  .section h2 { font-size: 20px; }
  .section p { font-size: 14px; }
  .carousel-img { height: 150px; }
  .characters-grid { grid-template-columns: 1fr; gap: 10px; }
  .character img { height: 100px; }
  .bloco { padding: 15px; }
  .bloco .texto h2, .bloco .texto h3 { font-size: 16px; }
  .bloco .texto p { font-size: 14px; }
  .modal-content { padding: 15px; }
  #modalVideo { height: 150px; }
}
