/* Reset básico */
.header .logo img {
    height: 100px; /* Ajuste a altura conforme necessário para o topo */
    width: auto;
    vertical-align: middle;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

/* Header e Navegação */
.header {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    border-bottom: 3px solid #ff4500; /* Destaque Laranja Musical */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    margin: 0;
    font-size: 1.8em;
    color: #fff;
}

.header ul {
    list-style: none;
    display: flex;
}

.header ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    transition: color 0.3s;
}

.header ul li a:hover {
    color: #ff4500;
}

/* Hero Section (Destaque Principal) */
.hero {
  /*  background: url('https://picsum.photos/1600/900?random=1') no-repeat center center/cover; /* Imagem de fundo aleatória, substitua por uma imagem temática */
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

/* Overlay escuro para melhorar a leitura do texto */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
}

.hero .container > * {
    position: relative; /* Coloca o conteúdo acima do overlay */
    z-index: 10;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #ff4500;
    color: #fff;
    border: 2px solid #ff4500;
}

.btn-primary:hover {
    background-color: #e63900;
    border-color: #e63900;
}

.btn-secondary {
    background-color: #fff;
    color: #1a1a1a;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
}

.small-text {
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Seção de Chamada para Ação */
.call-to-action {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.call-to-action h3 {
    margin-bottom: 15px;
    font-size: 2em;
}

.call-to-action p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}
