:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #121212;
    --background-color: #0A0A0A;
    --text-color: #f0f0f0;
    --text-muted-color: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-speed: 0.5s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    transition: background-color var(--transition-speed) ease;
}

#main-header.scrolled {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}




/* Ícone do menu (hambúrguer) */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }
}







/* === EFEITO DE FEIXE DE LUZ NO TEXTO === */
.light-effect {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.light-text {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #ffffff 20%,
    #ffd700 50%,
    #ffffff 80%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sweepLight 5s linear infinite;
}

@keyframes sweepLight {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}






.btn-vermais {
    background-color: #e60000; /* vermelho vivo */
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-vermais:hover {
    background-color: #cc0000; /* tom mais escuro no hover */
}






.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-icon {
    height: 30px;
    width: 30px;
}




.logo-text {
    color: var(--primary-color);
    text-decoration: none; /* remove sublinhado */
    cursor: pointer;
}
.logo-text:hover {
    text-decoration: underline; /* opcional: sublinhado ao passar o mouse */
}






.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color var(--transition-speed) ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}


/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity: 1.0; /* aumentada para destacar mais o trompete */
    z-index: 0;
    pointer-events: none;
    filter: blur(0.5px); /* opcional, pode até remover se quiser nítida */
}



.hero-content {
    position: relative;
    z-index: 1;
}


#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--background-color) 5%, rgba(10,10,10,0.7) 50%, var(--background-color) 100%);
}



.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* General Content Section Styling */
.content-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #222;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    flex-shrink: 0;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 300px;
}
.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted-color);
}

/* Media Section */
.media-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.media-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}


.video-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* mantém proporção de 560x315 */
    max-width: 560px;
    display: block;
    margin: 0 auto;
}



.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.audio-wrapper iframe {
    border-radius: 8px;
    border: 0;
}


/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    text-align: center;
}
#contact p {
    margin-bottom: 2rem;
    color: var(--text-muted-color);
}

.contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.contact-button:hover {
    background-color: #eec56a;
    transform: translateY(-3px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: bold;
}

.social-links a i {
  font-size: 1.3rem;
}

/* Cores específicas */
.social-links .instagram {
  background: #e1306c;
}

.social-links .instagram:hover {
  box-shadow: 0 0 10px #e1306c;
  transform: scale(1.05);
}

.social-links .youtube {
  background: #ff0000;
}

.social-links .youtube:hover {
  box-shadow: 0 0 10px #ff0000;
  transform: scale(1.05);
}

.social-links .facebook {
  background: #1877f2;
}

.social-links .facebook:hover {
  box-shadow: 0 0 10px #1877f2;
  transform: scale(1.05);
}



/* Footer */
footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: var(--secondary-color);
    color: var(--text-muted-color);
    font-size: 0.9rem;
}

/* Reveal on Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for this example. A burger menu would be ideal. */
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

