body {
    background: linear-gradient(to bottom, red, white) ;
   
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    background-position: center center; 
    display: flex;                 
    justify-content: center;
    align-items: center;
    height: 100vh;                
}

main {
    display: flex;
    flex-direction: column;        
    align-items: center;           
    gap: 20px;                     
    padding: 20px;
    background: rgba(255,255,255,0.2); 
    border-radius: 10px;
}

/* Pokémon */
.pokemon__image {
    max-width: 200px;
    height: auto;
}

/* Dados do Pokémon */
.pokemon__data {
    font-weight: 600;
    font-style: italic;
    color: black;
    font-size: clamp(12px, 4vw, 20px);
    text-align: center;
}

/* Input */
.form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.input_search {
    width: 250px;
    padding: 10px;
    outline: none;
    border: 2px solid #333;
    border-radius: 5px;
    font-weight: 600;
    color: #3a444d;
    font-size: clamp(10px, 4vw, 1rem);
    box-shadow: -3px 4px 0 #888, -5px 7px 0 #333;
}

/* Botões */
.buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.button {
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: clamp(10px, 4vw, 1rem);
    font-weight: 600;
    color: white;
    background-color: #444;
    box-shadow: -2px 3px 0 #222, -4px 6px 0 #000;
}

.button:active {
    box-shadow: inset -4px 4px 0 #222;
    transform: scale(0.95);
}
 
.pokemon-extra-details {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  justify-content: center;
  gap: 8px; 
  padding: 12px 16px;
  margin-top: 20px; 
  background-color: #f8f8f8; 
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 300px; 
}

/* Títulos das seções */
.pokemon-extra-details h3 {
  margin: 4px 0;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Texto das informações */
.pokemon-extra-details p {
  margin: 0;
  font-size: 16px;
  color: #555;
}


.pokemon-extra-details-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.body-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;  
  padding: 20px;
}
.gif_pikachu {
    height: auto;
    display: flex;
    left: 5%;
    position: absolute;
}
/* Barra superior */
.top-bar {
  width: 100%;
  background-color: #ff0000;  
  color: white;
  text-align: center;
  padding: -10px 0;
  font-weight: bold;
  position: fixed;  
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}



.main-content {
  padding-top: 60px;    
  padding-bottom: 60px; 
}
