/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo do corpo */
body {
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    background-color: #f3f4f6;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-image: url('./IMAGENS/HEADER.jpg');
    background-size: cover;         /* Faz com que a imagem cubra todo o header */
    background-position: center;    /* Centraliza a imagem dentro do header */
    background-repeat: no-repeat;   /* Impede que a imagem se repita */
    height: 350px;                  /* Definindo uma altura fixa para o header */
    display: flex;                  /* Flexbox para centralizar o conteúdo */
    justify-content: center;        /* Alinha o conteúdo horizontalmente */
    align-items: center;            /* Alinha o conteúdo verticalmente */
    text-align: center;             /* Alinha o texto dentro do header */

}

header h1 {
    font-size: 130px;
    color: white; /* Cor do texto */
    text-shadow: 
        2px 2px 0px black, /* sombra para a borda superior e direita */
        -2px -2px 0px black, /* sombra para a borda inferior e esquerda */
        2px -2px 0px black, /* sombra diagonal superior direita */
        -2px 2px 0px black; /* sombra diagonal inferior esquerda */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Menu de navegação */
nav {
    background: #2c3e50;
    color: white;
    padding: 0.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #b19cd9;
}

/* Conteúdo principal */
main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

article {
    background: white;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#separador {
    background: #BE2325;
    color: white;
    font-weight:bold;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 20px;
}

article h2 {
    color: #eb3022;
    margin-bottom: 0.5rem;
}

/* Seção de playlist */
#playlist ul {
    list-style: disc;
    padding-left: 1.5rem;
}

#playlist ul li {
    margin-bottom: 0.5rem;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 1rem 0;
    background: #2c3e50;
    color: white;
    margin-top: 2rem;
}



/* Container principal */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contenthome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilização do texto */
.text {
    flex: 1; /* Ocupa o espaço disponível */
    margin-right: 20px;
}

.text h2 {
    font-size: 24px;
    color: #c60;
    margin-bottom: 10px;
}

.text h3 {
    font-size: 24px;
    color: rgb(223, 133, 44);
    margin-bottom: 0px;
    text-decoration: underline;
}

.text p {
    margin-bottom: 10px;
}

/* Estilização da imagem */
.image {
    flex-shrink: 0; /* Impede que a imagem encolha */
}

.image img {
    width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




/* Menu horizontal */
.menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px; /* Espaçamento entre as imagens */
    padding: 0px;
    background-color:  #f3f4f6;
    border-bottom: 0px solid #ccc;

}

/* Cada item do menu */
.menu-item {
    text-align: center;
    max-width: 150px; /* Define o tamanho máximo de cada item */
}

/* Imagens */
.menu-item img {
    width: 150px;  /* Ajuste o tamanho da imagem */
    height: 150px;
    object-fit: cover; /* Garante proporções corretas */
    border-radius: 8px; /* Cantos arredondados */
    transition: transform 0.3s ease; /* Efeito ao passar o mouse */
    cursor: pointer;
}

/* Efeito ao passar o mouse */
.menu-item img:hover {
    transform: scale(1.1); /* Amplia ligeiramente a imagem */
}

/* Descrição abaixo das imagens */
.menu-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #4e4848;
    font-weight: bold;
}