*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
}
html, body{
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body{
  background-color: #141414;
}

:root{
  --primary-color: #931F1F;
  --secondary-color: rgb(172, 172, 172);
  --background-escuro: #0c0c0c;
  --background-claro: #1c1c1c;
  --font-family: 'Arial', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.container h2 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  text-shadow: 
    0 4px 10px rgba(147, 31, 31, 0.8),
    0 0 20px rgba(147, 31, 31, 0.4);
  position: relative;
}

.container > p{
  color: var(--secondary-color);
  font-size: 22px;
  text-align: center;
  margin: 10px auto;
  padding-top: 20px;
  color: var(--secondary-color);
  font-size: 20px;
  text-align: center;
  margin: 40px auto 60px;
  max-width: 800px;
  line-height: 1.7;
  padding: 0 20px;
}


/* HEADER */
header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(147, 31, 31, 0.2);
}


nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative;
}

nav h2{
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


/* Menu Desktop */
nav ul{
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav ul li{
  list-style: none;
}

nav ul li a{
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



nav ul li a:hover::before {
  left: 100%;
}

nav ul li a:hover{
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(147, 31, 31, 0.6);
  transform: translateY(-2px);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
}

.hamburger:hover {
  background-color: rgba(147, 31, 31, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: var(--primary-color);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: var(--primary-color);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(147, 31, 31, 0.3);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}


.menu-toggle:checked ~ .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
}

.mobile-menu ul li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(147, 31, 31, 0.1);
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul li a {
  display: block;
  width: 100%;
  padding: 20px 30px;
  font-size: 20px;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  background: linear-gradient(90deg, transparent, rgba(147, 31, 31, 0.2), transparent);
  transform: translateY(0);
  color: var(--primary-color);
}

.mobile-menu a {
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

nav ul li a.active {
  color: var(--primary-color);
  background-color: rgba(147, 31, 31, 0.15);
  box-shadow: 0 0 15px rgba(147, 31, 31, 0.3);
}

/* HERO */
.hero-content {
  background: 
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.8)),
    url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 100px 30px 50px;
  text-align: center;
}

#hero h1{
  color: white;
  font-size: clamp(48px, 8vw, 90px); /* Responsivo */
  font-weight: bold;
  text-shadow: 
    0 4px 10px rgba(147, 31, 31, 0.9),
    0 0 15px rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out;
}

#hero h2{
  color: var(--primary-color);
  font-size: clamp(24px, 5vw, 45px); /* Responsivo */
  font-weight: 600;
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(147, 31, 31, 0.5);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

#hero p{
  color: var(--secondary-color);
  font-size: clamp(16px, 2.5vw, 20px); /* Responsivo */
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Animações */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SOBRE */
#sobre {
  background: linear-gradient(135deg, var(--background-claro) 0%, var(--background-escuro) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding: 0 20px;
}

.card {
  background: rgba(28, 28, 28, 0.7);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(147, 31, 31, 0.2);
 
  position: relative;
  overflow: hidden;
 
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(147, 31, 31, 0.1);
}

.card:hover {
  border-color: rgba(147, 31, 31, 0.5);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(147, 31, 31, 0.3);
}

.bola {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #B02A2A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(147, 31, 31, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card:hover .bola {
  box-shadow: 
    0 12px 35px rgba(147, 31, 31, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.jogod i {
  color: white;
  font-size: 28px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card h3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.card p {
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* SINOPSE */
#sinopse {
  background: linear-gradient(135deg, var(--background-escuro) 0%, var(--background-claro) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#sinopse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(147, 31, 31, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(147, 31, 31, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(147, 31, 31, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.sinopse-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
  width: 80%;;
  margin: 40px auto;
}

.sinopse-text {
  padding: 40px;
  background: rgba(28, 28, 28, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(147, 31, 31, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin: auto;
}

.sinopse-text p {
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.sinopse-text p:last-child {
  margin-bottom: 0;
}

.sinopse-text p:first-child::first-letter {
  font-size: 3.5em;
  font-weight: bold;
  color: var(--primary-color);
  float: left;
  line-height: 1;
  margin: 8px 8px 0 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sinopse-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(147, 31, 31, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sinopse-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(147, 31, 31, 0.5);
}

.sinopse-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.sinopse-image:hover img {
  filter: brightness(1.1) contrast(1.1);
}

.sinopse-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(147, 31, 31, 0.2) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

/* GALERIA */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(147, 31, 31, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover{
  transform: translateY(-5px) scale(1.01);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(147, 31, 31, 0.5);
    filter: brightness(1.1) contrast(1.1);
}



/* JOGOS */
.jogo-card > .card-icon{
  background-color:  rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.jogo-card > .card-icon{
  font-size: 32px;
  cursor: default;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--background-escuro) 0%, #000000 100%);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(147, 31, 31, 0.3);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(147, 31, 31, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 31, 31, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-section p {
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(147, 31, 31, 0.6);
  transform: translateX(5px);
}

.footer-nav a::before {
  content: '▶';
  position: absolute;
  left: -20px;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 12px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(28, 28, 28, 0.7);
  border: 1px solid rgba(147, 31, 31, 0.3);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: rgba(147, 31, 31, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(147, 31, 31, 0.4);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--secondary-color);
  font-size: 16px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(147, 31, 31, 0.2);
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.heart {
  color: var(--primary-color);
  font-size: 16px;
  animation: heartbeat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(147, 31, 31, 0.5));
}

@keyframes heartbeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.1);
  }
}

.footer-logo {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(147, 31, 31, 0.3);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  /*Hero*/
  .hero-content {
    padding: 80px 20px 40px;
    gap: 15px;
  }
  
  #hero h1 {
    font-size: clamp(40px, 7vw, 70px);
  }
  
  #hero h2 {
    font-size: clamp(20px, 4vw, 35px);
  }
  
  #hero p {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 600px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  /*Header Responsivo*/
  header{
      background: rgba(12, 12, 12, 0.98);
  }
  nav {
    padding: 15px 20px;
  }
  
  nav h2 {
    font-size: 20px;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  .sinopse-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sinopse-image {
    order: -1;
  }
  
  #sinopse h2 {
    font-size: 36px;
  }
  
  .sinopse-text {
    padding: 30px 20px;
  }
  
  .sinopse-text p {
    font-size: 16px;
    text-align: left;
  }

  /* sobre */
  #sobre {
    padding: 60px 0;
  }
  
  #sobre h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  #sobre .container > p {
    font-size: 18px;
    margin: 30px auto 40px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .card {
    padding: 30px 25px;
  }
  
  .bola {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .bola i {
    font-size: 24px;
  }
  
  .card h3 {
    font-size: 20px;
  }

  /* Footer Responsivo */
  footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .footer-section p {
    font-size: 14px;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 25px;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .contact-item {
    font-size: 14px;
  }
  
  .footer-credits {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-logo {
    font-size: 24px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 15px;
  }
  
  nav h2 {
    font-size: 18px;
  }
  
  .mobile-menu ul li a {
    padding: 18px 20px;
    font-size: 18px;
  }
  .footer-content {
    padding: 0 10px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .footer-bottom {
    padding-top: 20px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero-content {
    height: 100vh;
    padding: 70px 15px 30px;
    gap: 12px;
    background-attachment: scroll; /* Remove parallax em mobile */
  }
  
  #hero h1 {
    font-size: clamp(32px, 6vw, 50px);
    margin-bottom: 8px;
  }
  
  #hero h2 {
    font-size: clamp(18px, 3.5vw, 28px);
    margin-bottom: 15px;
  }
  
  #hero p {
    font-size: clamp(14px, 2vw, 16px);
    max-width: 500px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
}

@media (max-width: 480px) {
  .hero-content {
    padding: 60px 10px 20px;
    gap: 10px;
    min-height: 100vh;
  }
  
  #hero h1 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  #hero h2 {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 12px;
  }
  
  #hero p {
    font-size: clamp(12px, 1.8vw, 14px);
    max-width: 320px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
}

@media (max-width: 320px) {
  .hero-content {
    padding: 50px 8px 15px;
  }
  
  #hero h1 {
    font-size: 28px;
  }
  
  #hero h2 {
    font-size: 18px;
  }
  
  #hero p {
    font-size: 12px;
    max-width: 280px;
  }
}


/* Landscape móveis (tablets virados) */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    height: auto;
    min-height: 100vh;
    padding: 60px 20px 20px;
    gap: 8px;
  }
  
  #hero h1 {
    font-size: clamp(20px, 4vw, 32px);
    margin-bottom: 5px;
  }
  
  #hero h2 {
    font-size: clamp(14px, 2.5vw, 20px);
    margin-bottom: 8px;
  }
  
  #hero p {
    font-size: clamp(10px, 1.5vw, 12px);
    margin-bottom: 15px;
    max-width: 400px;
  }
}

