* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

:root {
    --gold: #d4af37;
    --dark: #1a1a1a;
    --light: #f4f4f4;
}

body { background-color: var(--light); color: var(--dark); scroll-behavior: smooth; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0,0,0,0.9);
    color: white;
    position: fixed;
    width: 100%;   /* Posição doMenu*/
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Hero  home banner*/
.hero {
    height: 85vh;                                                      /* Navbar  home tamanho*/     
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('/img/sax-capa-2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

/* Responsividade Hamburger */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px; background: white; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px; left: 0; width: 100%;
        background: black; flex-direction: column;
        text-align: center; padding: 20px 0;
    }
    .nav-links.active { display: flex; }
}

/* Seção de Áudio */
.musica-section {
    padding: 60px 8%;
    text-align: center;
    background-color: #fff;
}

.audio-card {
    background: var(--dark);
    color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 30px auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--gold);
}

.audio-card strong {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    letter-spacing: 1px;
}

audio {
    width: 100%;
    filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%); /* Estiliza o player nativo */
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128c7e;
    color: white;
}

/* Esconde o texto no mobile para ficar só o ícone se preferir */
@media (max-width: 480px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
}

/* Agenda Section */
.agenda-section {
    background-color: #111; /* Fundo levemente mais escuro que o dark padrão */
    color: white;
    padding: 80px 8%;
    text-align: center;
}

.agenda-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agenda-item {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    transition: 0.3s;
}

.agenda-item:hover {
    transform: scale(1.02);
    background: #222;
}

.date-box {
    min-width: 70px;
    text-align: center;
    border-right: 1px solid #333;
    padding-right: 20px;
    margin-right: 20px;
}

.date-box .day {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
}

.date-box .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-details {
    flex-grow: 1;
    text-align: left;
}

.event-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-details p {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-time {
    font-weight: bold;
    color: var(--gold);
    font-size: 1.1rem;
}

/* Estilo para eventos privados */
.agenda-item.privado {
    opacity: 0.7;
    border-left-color: #555;
}

/* Contato Section */
.contato-section {
    padding: 80px 8%;
    background-color: var(--light);
    text-align: center;
}

.contato-form {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contato-form input, 
.contato-form select, 
.contato-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.contato-form input:focus, 
.contato-form select:focus, 
.contato-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.btn-enviar {
    background: var(--dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: 0.3s;
}

.btn-enviar:hover {
    background: var(--gold);
    color: var(--dark);
}

@media (max-width: 600px) {
    .input-group { flex-direction: column; gap: 10px; margin-bottom: 10px; }
}

/* Contato Section */
.contato-section {
    padding: 80px 8%;
    background-color: var(--light);
    text-align: center;
}

.contato-form {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contato-form input, 
.contato-form select, 
.contato-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.contato-form input:focus, 
.contato-form select:focus, 
.contato-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.btn-enviar {
    background: var(--dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: 0.3s;
}

.btn-enviar:hover {
    background: var(--gold);
    color: var(--dark);
}

@media (max-width: 600px) {
    .input-group { flex-direction: column; gap: 10px; margin-bottom: 10px; }
}


/* Footer Style */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 8% 30px;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: white;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-5px);
}

.footer-info {
    border-top: 1px solid #222;
    padding-top: 20px;
    width: 100%;
}

.footer-info p {
    font-size: 0.8rem;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 5% 20px;
    }
}

.footer-social i {
    width: 24px;   /* Largura do ícone */
    height: 24px;  /* Altura do ícone */
    stroke-width: 2px; /* Espessura da linha */
    color: var(--gold); /* Cor dourada que definimos */
}

.footer-social i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: #333; /* ou a cor que desejar */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Configurações do Footer */
.footer-white-shark {
    background-color: #0a192f; /* Azul escuro tecnológico */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

/* Container dos Links Principais */
.links-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Estilo WhatsApp */
.link-whatsapp {
    color: #25d366;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.link-whatsapp:hover {
    transform: scale(1.1); /* Aumenta levemente */
    color: #128c7e;
}

/* Estilo Link do Site com Movimento */
.link-site-animado {
    color: #00d4ff;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.link-site-animado:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
    border: 1px solid #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Link de Início (Nav) */
.nav-link {
    color: #ccc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Texto de Copyright */
.footer-copy {
    font-size: 0.8rem;
    margin-top: 30px;
    opacity: 0.6;
    line-height: 1.6;
}

/* Animação de "Pulso" no ícone do Whats */
@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    00% { transform: scale(1); }
}

.link-whatsapp i {
    animation: pulse-green 2s infinite;
}

/* Layout Geral (Flexbox) */
.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Estilo da Lateral */
.sidebar-eventos {
  flex: 1;
  min-width: 250px; /* Largura mínima da lateral */
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 2px solid #d4af37; /* Um toque dourado combina com saxofone! */
}

.sidebar-eventos h2 {
  text-align: center;
  font-family: 'Georgia', serif;
  color: #333;
}

/* Estilo das Fotos */
.foto-evento {
  margin-bottom: 20px;
  text-align: center;
}

.foto-evento img {
  width: 100%; /* A foto ocupa toda a largura da lateral */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse */
.foto-evento img:hover {
  transform: scale(1.05);
}

.foto-evento p {
  font-size: 0.9rem;
  margin-top: 8px;
  color: #666;
}
/* 1. Alinha o conteúdo e a lateral lado a lado */
.container-geral {
  display: flex;
  align-items: flex-start; /* Alinha pelo topo */
  gap: 30px;               /* Espaço entre o texto e as fotos */
  padding: 20px;
}

/* 2. Define que o conteúdo principal ocupa a maior parte da tela */
.conteudo-principal {
  flex: 3; /* Ocupa 3 partes do espaço */
}

/* 3. Define a largura da lateral */
.sidebar-eventos {
  flex: 1;           /* Ocupa 1 parte do espaço */
  min-width: 200px;  /* Não deixa ficar pequeno demais */
  max-width: 300px;  /* Não deixa as fotos ficarem gigantes */
}

/* 4. AJUSTE DAS IMAGENS: Crucial para não estourarem o tamanho */
.sidebar-eventos img {
  width: 100%;       /* Obriga a foto a ter a largura da lateral */
  height: auto;      /* Mantém a proporção sem achatar */
  display: block;
  margin-bottom: 15px;
  border-radius: 5px;
}

/* Isso faz com que a página pare um pouco antes do topo, dando espaço para o menu fixo */
section {
    scroll-margin-top: 80px; 
}

/* Garante que o efeito de deslizar aconteça */
html {
    scroll-behavior: smooth;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #fff;

    /* Gradiente dourado */
    background: linear-gradient(135deg, #d4af37, #f6e27a, #c9a227);
    
    /* Efeito vidro leve */
    backdrop-filter: blur(10px);
    
    /* Sombra elegante */
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float i {
    width: 20px;
    height: 20px;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: 0.6s;
}

.whatsapp-float:hover::before {
    left: 100%;
}


.whatsapp-float {
    position: fixed;
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    /* Gradiente dourado */
    background: linear-gradient(135deg, #d4af37, #f6e27a, #c9a227);

    /* Sombra elegante */
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);

    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
    color: white;
}

/* Hover luxuoso */
.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 35px rgba(24, 230, 6, 0.6);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    /* Gradiente dourado elegante */
    background: linear-gradient(135deg, #d4af37, #f6e27a, #c9a227);

    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Ícone preto */
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    stroke: #000;   /* cor preta */
}

/* Hover elegante */
.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.65);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #000;

    background: linear-gradient(135deg, #d4af37, #f6e27a, #c9a227);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);

    animation: claveMove 6s ease-in-out infinite;
    z-index: 999;
}

/* Ícone preto */
.whatsapp-float svg {
    width: 22px;
    height: 22px;
    stroke: #000;
}

/* Movimento em curva estilo clave */
@keyframes claveMove {
    0%   { transform: translate(0, 0); }
    15%  { transform: translate(-10px, -15px); }
    30%  { transform: translate(8px, -30px); }
    45%  { transform: translate(-6px, -15px); }
    60%  { transform: translate(6px, 5px); }
    75%  { transform: translate(-4px, 10px); }
    100% { transform: translate(0, 0); }
}