/* RESET E CONFIGURAÇÕES GERAIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ruby-red: #e01111ff;
  --dark-red: #d40000ff;
  --light-red: #ff2b2bff;
  --pure-white: #ffffff;
  --off-white: #f8f9fa;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --gray-dark: #1a1a1a;
  --gray-medium: #2d2d2d;
  --gray-light: #404040;
  --blue-magic: #4a90e2;
  --green-hp: #2ecc71;
  --blue-mp: #3498db;
  --yellow-ap: #f1c40f;
  --shadow-dark: rgba(0, 0, 0, 0.8);
  --shadow-light: rgba(0, 0, 0, 0.3);
  --glass-bg: rgba(224, 17, 17, 0.33);
  --glass-border: rgba(225, 0, 0, 0.3);
  --mythical: #ff00e6;
  --legendary: #ffd300;
  --epic: #6700ac;
  --rare: #00d5ff;
  --uncommon: #1eff00;
  --common: #ffffff;
}

body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://wallpapercave.com/wp/wp10845004.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px) brightness(0.4);
  z-index: -2;
}

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

/* HEADER COM MENU DE VIDRO */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  backdrop-filter: blur(10px);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1002;
}

.logo i {
  color: var(--ruby-red);
  font-size: 1.8rem;
}

/* MENU PRINCIPAL (DESKTOP) */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover {
  background: var(--ruby-red);
  transform: translateY(-2px);
}

/* BOTÃO HAMBURGUER */
.menu-hamburguer {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--pure-white);
  background: rgba(224, 17, 17, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1002;
}

.menu-hamburguer:hover {
  background: var(--ruby-red);
  transform: scale(1.1);
}

/* MENU CORTINA (MOBILE) */
@media (max-width: 768px) {
  .menu-hamburguer {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    padding: 100px 20px;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 15px 30px;
    border-radius: 10px;
    width: 250px;
    justify-content: center;
    background: rgba(224, 17, 17, 0.1);
    border: 1px solid var(--glass-border);
  }

  .nav-links a:hover {
    background: var(--ruby-red);
    transform: scale(1.05);
  }

  /* Estilo do ícone X quando o menu está aberto */
  .menu-hamburguer.active i {
    transform: rotate(180deg);
  }

  .menu-hamburguer.active .fa-bars::before {
    content: '\f00d'; /* Código do ícone X */
  }

  /* Impede scroll quando menu está aberto */
  body.menu-open {
    overflow: hidden;
  }
}

/* Restante do CSS permanece igual... */
/* SEÇÃO DO HERÓI */
.hero-section {
  position: relative;
  height: 80vh;
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(37, 0, 0, 0.7), rgba(10, 10, 10, 0.9)),
    url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 60%, var(--ruby-red) 140%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--pure-white), var(--light-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(224, 17, 17, 0.5);
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--light-red);
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 3px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-badge {
  background: rgba(247, 0, 0, 0.55);
  border: 1px solid var(--glass-border);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.stat-badge:hover {
  background: var(--ruby-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 120, 120, 0.3);
}

/* TÍTULOS DAS SEÇÕES */
.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 60px 0 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--ruby-red);
}

.section-title i {
  color: var(--ruby-red);
  font-size: 1.8rem;
}

.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* SEÇÃO DE STATUS - ESTILO SOLO LEVELING */
.status-section {
  margin: 40px 0;
}

.status-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.status-card {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  border: 2px solid var(--ruby-red);
  border-radius: 15px;
  width: 100%;
  max-width: 700px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(224, 17, 95, 0.2);
}

.status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--ruby-red),
    var(--light-red),
    var(--ruby-red)
  );
}

.status-header {
  margin-bottom: 25px;
  text-align: center;
}

.status-title h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(224, 17, 95, 0.7);
}

.character-info {
  background: var(--gray-dark);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  border-left: 4px solid var(--ruby-red);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #aaa;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.info-value {
  color: var(--pure-white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.highlight {
  color: var(--light-red);
  font-weight: 800;
}

.title-count {
  color: #aaa;
  font-size: 0.9rem;
  margin-left: 10px;
}

/* BARRAS DE STATUS */
.status-bars {
  margin-bottom: 30px;
}

.bar-container {
  margin-bottom: 20px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bar-label span:first-child {
  color: #aaa;
  font-weight: 600;
  font-size: 1.1rem;
}

.bar-label span:last-child {
  color: var(--pure-white);
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
}

.bar-bg {
  width: 100%;
  height: 25px;
  background: var(--gray-medium);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gray-light);
}

.bar-fill {
  height: 100%;
  border-radius: 12px;
  position: relative;
  transition: width 1.5s ease-in-out;
}

.hp-bar {
  width: 100%;
  background: linear-gradient(90deg, #ff0000, #ffe600, #00ff6a);
}

.mp-bar {
  width: 100%;
  background: linear-gradient(90deg, #9b59b6, #3498db);
}

.fatigue-bar {
  width: 0%;
  background: linear-gradient(90deg, #00938c, #f1c40f);
}

/* ATRIBUTOS PRIMÁRIOS */
.primary-attributes {
  background: var(--gray-dark);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.attribute-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.attribute {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: var(--gray-medium);
  border-radius: 8px;
  border-left: 3px solid var(--ruby-red);
}

.attr-label {
  color: #aaa;
  font-weight: 600;
  font-size: 1rem;
}

.attr-value {
  color: var(--pure-white);
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(224, 17, 95, 0.5);
}

/* SEÇÃO DE PODERES NO STATUS */
.powers-section {
  background: var(--gray-dark);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.powers-title {
  text-align: center;
  margin-bottom: 20px;
}

.powers-title h4 {
  color: var(--pure-white);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ruby-red);
  padding-bottom: 10px;
  display: inline-block;
}

.powers-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.power-item {
  background: var(--gray-medium);
  border-radius: 8px;
  padding: 15px;
  border-left: 4px solid;
}

.power-item.legendary {
  border-left-color: var(--legendary);
}

.power-item.mythical {
  border-left-color: var(--mythical);
}

.power-item.epic {
  border-left-color: var(--epic);
}

.power-item.rare {
  border-left-color: var(--rare);
}

.power-item.uncommon {
  border-left-color: var(--uncommon);
}

.power-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.power-name {
  color: var(--pure-white);
  font-weight: 700;
  font-size: 1.1rem;
}

.power-rarity {
  font-weight: 800;
  font-size: 0.9rem;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.power-item.legendary .power-rarity {
  background: var(--legendary);
  color: #000;
}

.power-item.epic .power-rarity {
  background: var(--epic);
  color: var(--pure-white);
}

.power-item.rare .power-rarity {
  background: var(--rare);
  color: var(--pure-white);
}

.power-item.uncommon .power-rarity {
  background: var(--uncommon);
  color: #000;
}

.power-item.mythical .power-rarity {
  background: var(--mythical);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.power-description {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* BOTÃO DE FECHAR */
.status-footer {
  text-align: center;
  margin-top: 20px;
}

.close-btn {
  background: linear-gradient(135deg, var(--ruby-red), var(--dark-red));
  color: var(--pure-white);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.close-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 17, 95, 0.4);
}

.close-btn:active {
  transform: translateY(-1px);
}

/* SEÇÃO DA HISTÓRIA */
.story-section {
  margin: 60px 0;
}

.story-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 30px;
}

.story-card h3 {
  color: var(--pure-white);
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--ruby-red);
  padding-left: 15px;
}

.story-card p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.highlight-text {
  color: var(--light-red);
  font-weight: 700;
}

/* CONQUISTAS */
.achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-dark);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-top: 3px solid var(--ruby-red);
}

.achievement:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(224, 17, 95, 0.2);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: var(--ruby-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.achievement-content h4 {
  color: var(--pure-white);
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 5px;
}

.achievement-content p {
  color: #aaa;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* SEÇÃO DE PODERES DETALHADOS */
.powers-details-section {
  margin: 60px 0;
}

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

.power-detail-card {
  background: var(--gray-dark);
  border-radius: 15px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  border: 2px solid;
  transition: all 0.3s ease;
}

.power-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.power-detail-card.legendary {
  border-color: var(--legendary);
}

.power-detail-card.mythical {
  border-color: var(--mythical);
}

.power-detail-card.epic {
  border-color: var(--epic);
}

.power-detail-card.rare {
  border-color: var(--rare);
}

.power-detail-card.uncommon {
  border-color: var(--uncommon);
}

.power-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, currentColor, transparent);
}

.power-detail-card.legendary::before {
  background: linear-gradient(90deg, var(--legendary), transparent);
}

.power-detail-card.mythical::before {
  background: linear-gradient(90deg, var(--mythical), transparent);
}

.power-detail-card.epic::before {
  background: linear-gradient(90deg, var(--epic), transparent);
}

.power-detail-card.rare::before {
  background: linear-gradient(90deg, var(--rare), transparent);
}

.power-detail-card.uncommon::before {
  background: linear-gradient(90deg, var(--uncommon), transparent);
}

.power-detail-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.power-detail-icon {
  width: 50px;
  height: 50px;
  background: currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.power-detail-card.legendary .power-detail-icon {
  color: var(--legendary);
}

.power-detail-card.epic .power-detail-icon {
  color: var(--epic);
}

.power-detail-card.mythical .power-detail-rarity {
  background: var(--mythical);
  color: #fff;
}

.power-detail-card.rare .power-detail-icon {
  color: var(--rare);
}

.power-detail-card.uncommon .power-detail-icon {
  color: var(--uncommon);
}

.power-detail-icon i {
  color: var(--dark-bg);
}

.power-detail-title {
  flex: 1;
}

.power-detail-title h3 {
  color: var(--pure-white);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.power-detail-rarity {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.power-detail-card.legendary .power-detail-rarity {
  background: var(--legendary);
  color: #000;
}

.power-detail-card.epic .power-detail-rarity {
  background: var(--epic);
  color: var(--pure-white);
}

.power-detail-card.rare .power-detail-rarity {
  background: var(--rare);
  color: var(--pure-white);
}

.power-detail-card.uncommon .power-detail-rarity {
  background: var(--uncommon);
  color: #000;
}

.power-detail-content p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.power-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
}

.stat {
  text-align: center;
}

.stat-label {
  display: block;
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.stat-value {
  display: block;
  color: var(--pure-white);
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  margin-top: 80px;
  background: linear-gradient(to top, #0a0a0a, #1a0a0a);
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-logo i {
  color: var(--ruby-red);
  font-size: 2rem;
}

.footer-info {
  text-align: center;
  color: #aaa;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-info p:last-child {
  margin-bottom: 0;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--gray-dark);
  color: var(--pure-white);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--ruby-red);
  transform: translateY(-5px);
}

/* SEÇÃO DE PERSONAGENS */
.characters-section {
  margin: 60px 0;
}

.characters-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.profile-card {
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  animation: fadeIn 0.8s ease-out;
}

.profile-card:hover {
  transform: translateY(-10px);
  border-color: var(--ruby-red);
  box-shadow: 0 15px 30px rgba(224, 17, 17, 0.2);
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--ruby-red),
    var(--light-red),
    var(--ruby-red)
  );
  z-index: 1;
}

.profile-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

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

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

.profile-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.profile-name {
  color: var(--pure-white);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-role {
  color: var(--light-red);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.profile-level {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding: 8px 15px;
  background: rgba(224, 17, 17, 0.1);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.profile-level i {
  color: var(--light-red);
  font-size: 1.2rem;
}

.level-value {
  color: var(--pure-white);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.profile-description {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--gray-medium);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .status-card {
    padding: 20px;
  }

  .attribute-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .powers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements {
    grid-template-columns: repeat(2, 1fr);
  }
}

.characters-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

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

  .section-title h2 {
    font-size: 1.8rem;
  }

  .status-card {
    padding: 15px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .power-stats {
    grid-template-columns: 1fr;
  }

  .powers-grid {
    grid-template-columns: 1fr;
  }

  .achievements {
    grid-template-columns: 1fr;
  }

  .characters-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-image {
    aspect-ratio: 1/1;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

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

  .stat-badge {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .status-title h3 {
    font-size: 2rem;
  }

  .power-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.4rem;
    flex-direction: column;
    text-align: center;
  }

  .profile-image {
    aspect-ratio: 1/1;
  }

  .profile-name {
    font-size: 1.3rem;
  }

  .profile-content {
    padding: 20px;
  }

  .characters-container {
    gap: 15px;
  }
}

/* ANIMAÇÕES */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-card,
.story-card,
.power-detail-card,
.achievement {
  animation: fadeIn 0.8s ease-out;
}

/* BARRA DE ROLAGEM PERSONALIZADA */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--ruby-red);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-red);
}
