/* Fonte e reset básico */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fdfdfd;
  color: #333;
}

/* Cabeçalho */
header {
  background: #004d66;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

header .logo {
  font-weight: bold;
  font-size: 1.2em;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav a {
  text-decoration: none;
  color: white;
}

header nav a:hover {
  text-decoration: underline;
}
.hero {
  background: url("img/fundo1.png") no-repeat center center;
  background-size: cover; /* Faz a imagem ocupar todo o espaço */
  color: #fff;            /* Texto branco para contraste */
  text-align: center;     /* Centraliza o título e parágrafos */
  padding: 100px 20px;    /* Dá espaço interno generoso */
  position: relative;     
}

/* Opcional: escurecer a imagem para dar contraste ao texto */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); /* Camada preta translúcida */
}

.hero h1, .hero p, .hero .cta {
  position: relative; /* Garante que o conteúdo fica por cima da camada escura */
}

/* Botão chamativo */
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background .3s;
}
.cta:hover {
  background: #e68900;
}
/* Destaques */
.destaques {
  padding: 50px 20px;
  text-align: center;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: 20px;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.card h3 {
  margin: 10px 0 5px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #004d66;
  color: white;
  margin-top: 40px;
}
/* Página de Artista */
.artista-page {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.perfil-artista {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.perfil-artista img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.perfil-artista .info {
  flex: 1;
}

.perfil-artista h1 {
  margin-top: 0;
  font-size: 2em;
  color: #004d66;
}

.video {
  margin-top: 40px;
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.curiosidades {
  margin-top: 40px;
}

.curiosidades ul {
  padding-left: 20px;
}

/* Página Sobre */
.sobre {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  line-height: 1.7;
}

.sobre h1, 
.sobre h2 {
  color: #004d66;
}

.sobre section {
  margin-bottom: 40px;
}

.sobre .convite a {
  color: #00b3b3;
  font-weight: bold;
  text-decoration: none;
}

.sobre .convite a:hover {
  text-decoration: underline;
}