@import url('https://fonts.googleapis.com/css2?family=Bellefair&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  box-sizing: border-box;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
}

:root {
	--cor-fundo: white;
	--cor-texto: black;
}
.bTheme {
	--cor-fundo: black;
	--cor-texto: white;
	transition: 0.5s ease-in-out;
}
	
body, header, head {
	background-color: var(--cor-fundo);
	color: var(--cor-texto);
	transition: 0.5s ease-in-out;

}
h1, h2 {
	color: var(--cor-texto);
	font-size: 4rem;
	transition: 0.5s ease-in-out;

}
button {
	background-color: var(--cor-texto);
	color: var(--cor-fundo);
	transition: 0.5s ease-in-out;

}
	
.container{
	display: flex;
	flex-direction: row;
	max-width: 1200px;
	justify-content: center;
	gap: 20px;
	margin: 20px auto;
}


.containerForm{
	max-width: 600px;
	margin: 40px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.formCard{
	width: 100%;
	padding: 30px;
	border: 1px solid #ddd;
	border-radius: 8px;
}
.formDupla {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}
.formDupla label{
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 14px;
}
.formDupla input {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}
.formDupla input:focus {
    outline: none;
}

.btSubmit {
    width: 100%; /* Botão ocupando a largura toda facilita o clique */
    padding: 12px;
    margin-top: 10px;
    background-color: #333; /* Cor neutra para admin */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
	transition: 0.5s ease-in-out;
}
.btSubmit:hover{
	background-color: #555;
}

.superior {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}
.cardPrincipal{
	display: flex;
	gap: 5px;
	flex-direction: column;
}

#capaAlbum{
    width: 300px;
	margin-top: 40px;
	margin-right: 20px;
	height: auto;
	flex-wrap: wrap;
	
}

#albumSpotify {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	background-color: black;
	border: none;
	cursor: pointer;
	text-decoration: none;
	padding: 0px;
	height: 48px;
	width: 48px;
}

#tituloAlbum{
	font-size: 64px;
	margin: 0;
	margin-top: 40px;	
}

#artistaAlbum{
	display: block;
	font-size: 48px;
	margin: 0;
	text-decoration: none;
	color: var(--cor-texto);
}	
#s{
	transition: 0.5s ease-in-out;
}
#s:hover {
	color: #73B6F2;
	text-decoration: underline #73B6F2;
}


.button-inner {
	display: flex;
	gap: 52px;
	margin: auto;
}

.logo {
	max-width: 32px;
}

/*cabecalho*/
.header {
    padding: 15px 0;
	border-radius: 4px;
	max-height: 10vh;
}

nav {
	display: flex;
    align-items: center;
}

.nav-links {
    list-style: none; /* remove as bolinhas da lista */
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links li a {
	color: var(--cor-texto);	
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 16px;
}

.tituloForm, #tituloAlbum {
	font-size: 6vw;
	font-style: normal;
}

.cardDescricao {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	font-size: 24px;
	max-width: 900px;
	margin: 40px auto;
}
#mostrarDesc {
	background: transparent;
	border: none;
	color: var(--cor-texto);
	font-size: 32px;
	font-weight: 200;
	cursor: pointer;
	padding: 10px 20px;
	outline: none;
}

#descAlbum {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--cor-texto);
	transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
#descAlbum.visivel {
	max-height: 800px;
	opacity: 1;
	margin-top: 20px;
}


.btnTheme {
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.5s ease-in-out;
}

.iconeTema {
  width: 28px;
  height: 28px;
  display: inline-block;
  
  color: var(--cor-texto);
  transition: background-color 0.3s ease-in-out;
}

.opop {
	opacity: 0.4;
}

/*p celular*/
@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }
    .superior {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza a imagem e os textos */
        gap: 10px; /* Reduz o espaço entre a capa e o título */
    }
    #capaAlbum {
        margin-right: 0; /* Remove a margem lateral que quebrava o layout */
        margin-top: 20px;
        max-width: 100%; /* Garante que não vaze da tela */
        width: 300px; /* Mantém um tamanho legal, mas sem forçar */
        height: auto;
    }

    #tituloAlbum {
        font-size: 40px; /* Diminui o título principal */
        margin-top: 10px;
    }

    #artistaAlbum {
        font-size: 32px; /* Diminui o nome do artista */
    }
}