

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Cinzel:wght@400;600&family=Cinzel+Decorative:wght@400;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ── VARIÁVEIS ── */
:root {
  --gold:        #c9933a;
  --gold-light:  #e8c472;
  --gold-pale:   #f5e6c0;
  --navy:        #0a0e1a;
  --navy-card:   rgba(15, 22, 48, 0.75);
  --text-light:  #f0e8d0;
  --text-muted:  #9ca3af;
  --ease:        .28s ease;
  --px:          clamp(1.4rem, 7vw, 8rem);
  --max-w:       1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }

/* ── FUNDO ESTRELADO ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px   1px   at  7% 11%, rgba(255,255,200,.65) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 18% 54%, rgba(255,255,200,.40) 0%, transparent 100%),
    radial-gradient(1px   1px   at 32% 27%, rgba(255,255,200,.55) 0%, transparent 100%),
    radial-gradient(1px   1px   at 46% 77%, rgba(255,255,200,.30) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 61% 17%, rgba(255,255,200,.60) 0%, transparent 100%),
    radial-gradient(1px   1px   at 73% 64%, rgba(255,255,200,.45) 0%, transparent 100%),
    radial-gradient(1px   1px   at 84% 39%, rgba(255,255,200,.50) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 81%, rgba(255,255,200,.35) 0%, transparent 100%),
    radial-gradient(1px   1px   at 13% 89%, rgba(255,255,200,.30) 0%, transparent 100%),
    radial-gradient(1px   1px   at 54%  3%, rgba(255,255,200,.55) 0%, transparent 100%),
    radial-gradient(1px   1px   at 37% 94%, rgba(255,255,200,.40) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 27%  7%, rgba(255,255,200,.50) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* 
   NAVBAR
    */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: linear-gradient(180deg, rgba(10,14,26,.97) 0%, rgba(10,14,26,.80) 100%);
  border-bottom: 1px solid rgba(201,147,58,.18);
  
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}

a.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: .05em;
  text-shadow: 0 0 18px rgba(232,196,114,.4);
}
.logo-sub {
  font-family: 'Cinzel', serif;
  font-size: .5rem;
  letter-spacing: .26em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 5px;
}

/* botão hamburger (visível só em mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,232,208,.68);
  text-decoration: none;
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active               { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after        { width: 100%; }

/* links desactivados (Galeria e Bilhetes), aparecem mas não navegam */
.nav-links a.nav-disabled {
  cursor: default;
  opacity: .4;
  pointer-events: none;
}

/* 
   HERO (homepage)
   */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 6rem;
  overflow: hidden;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,147,58,.11) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* imagem do hero (ilustração do pergaminho) */
.hero-image {
  position: relative;
  z-index: 2;
  width: min(1790px, 94vw);
  height: auto;
  animation: fadeUp .9s ease both;
}

/* texto sobreposto ao hero */
.hero-text {
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 3;

  width: 700px;   
  max-width: 90vw;

  text-align: center;
  pointer-events: none;
}

.hero-title1 {
  font-family: 'Cinzel Decorative', cursive;
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 54%;
  text-align: center;
  pointer-events: none; 
  color: #c9933a;
  animation: fadeUp .8s .15s ease both;
}

.hero-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.1rem, 4vw, 2.5rem);
  color: #c9933a;
  letter-spacing: .06em;
  margin-bottom: .8rem;
  animation: fadeUp .8s .15s ease both;

  position: relative;
  top: -3px;   
  left: 5px;   
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(.52rem, 1.4vw, .84rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #0a0e1a;
  line-height: 2.1;
  animation: fadeUp .8s .3s ease both;
}

/*
   DIVIDER
    */
.divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.4rem, 5vw, 5rem);
}
.divider-line {
  flex: 1;
  max-width: 360px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,147,58,.4), transparent);
}
.divider-tri {
  font-size: .8rem;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
}

/* 
   TÍTULOS DE SECÇÃO
    */
.section-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gold-light);
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 28px rgba(232,196,114,.18);
}
.section-sub {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: .04em;
}

/* 
   SOBRE — secção da homepage
    */
.home-sobre {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4rem clamp(1.4rem, 10vw, 10rem) 7rem;
  max-width: 1280px;
  margin: 0 auto;
}
.home-sobre-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  color: var(--gold-light);
  letter-spacing: .04em;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  text-shadow: 0 0 24px rgba(232,196,114,.18);
}
.home-sobre-body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: clamp(.92rem, 1.2vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.9;
  opacity: .82;
}
.home-sobre-images {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.img-wrap {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201,147,58,.16);
  box-shadow: 0 8px 36px rgba(0,0,0,.5);
}
.img-wrap img {
  width: 100%;
  height: clamp(160px, 18vw, 210px);
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.78) saturate(.85);
}
.img-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(.94) saturate(1);
}

/* 
   GALERIA
    */
.galeria {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.4rem, 8vw, 8rem) 5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(201,147,58,.13);
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}
.galeria-item img {
  width: 100%;
  height: clamp(150px, 20vw, 240px);
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.76) saturate(.85);
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,14,26,.44);
  opacity: 0;
  transition: opacity .3s;
}
.galeria-overlay span {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(232,196,114,.42);
  padding: .5rem 1.3rem;
  border-radius: 2px;
}
.galeria-item:hover img             { transform: scale(1.06); filter: brightness(.92) saturate(1); }
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* 
   LIGHTBOX
    */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3,6,14,.95);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(8px);
  padding: 1rem;
}
.lightbox.ativo { display: flex; }
.lb-img-wrap {
  max-width: min(820px, 88vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 100px rgba(0,0,0,.85);
  transition: opacity .16s ease;
}
.lb-close {
  position: absolute;
  top: 1.6rem; right: 2rem;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: .6;
  transition: opacity var(--ease);
  line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  background: none;
  border: 1px solid rgba(201,147,58,.28);
  color: var(--gold-light);
  font-size: 1.3rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
  flex-shrink: 0;
}
.lb-prev:hover, .lb-next:hover {
  background: rgba(201,147,58,.12);
  border-color: rgba(201,147,58,.55);
}
.lb-dots {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
}
.lb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(201,147,58,.28);
  cursor: pointer;
  transition: background var(--ease);
  padding: 0;
}
.lb-dot.ativo { background: var(--gold-light); }

/* 
   CONCERTOS
   */
.concertos {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.4rem, 8vw, 8rem) 7rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.concertos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}
.concerto-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 1.6rem;
  background: var(--navy-card);
  border: 1px solid rgba(201,147,58,.16);
  border-radius: 6px;
  box-shadow: 0 4px 28px rgba(0,0,0,.4);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.concerto-card:hover {
  border-color: rgba(201,147,58,.46);
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,.5);
}
.concerto-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  border-right: 1px solid rgba(201,147,58,.22);
  padding-right: 1.2rem;
}
.concerto-dia  { font-family: 'Cinzel Decorative', cursive; font-size: 2rem; color: var(--gold-light); line-height: 1; }
.concerto-mes  { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; margin-top: .28rem; }
.concerto-ano  { font-family: 'Cinzel', serif; font-size: .56rem; letter-spacing: .15em; color: var(--text-muted); margin-top: .12rem; }
.concerto-info { display: flex; flex-direction: column; flex: 1; text-align: left; gap: .25rem; }
.concerto-cidade { font-family: 'Cinzel', serif; font-size: .88rem; letter-spacing: .14em; color: var(--text-light); text-transform: uppercase; }
.concerto-sala   { font-family: 'Roboto', sans-serif; font-weight: 300; font-size: .92rem; color: var(--text-muted); }
.concerto-btn {
  font-family: 'Cinzel', serif;
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: .55rem 1.1rem; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0;
  transition: filter var(--ease), transform var(--ease);
}
.concerto-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.ver-mais-btn {
  display: inline-block; margin-top: 2.8rem;
  font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light); text-decoration: none;
  border: 1px solid rgba(201,147,58,.36); padding: .8rem 2.6rem; border-radius: 3px;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.ver-mais-btn:hover { background: rgba(201,147,58,.09); border-color: rgba(201,147,58,.62); color: var(--gold-pale); }

/* 
   FOOTER
    */
.footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;

  background-image: url("imgs/Untitled9_20260611202847.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-cta-wrap {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem clamp(4rem, 8vw, 7rem);
} 

.footer-cta-box {
  background: rgba(8,12,26,.94);
  border: 1px solid rgba(201,147,58,.26);
  border-radius: 10px;
  box-shadow: 0 14px 64px rgba(0,0,0,.72);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.6rem, 5vw, 4.5rem);
  max-width: 580px; width: 100%; text-align: center;
}
.footer-cta-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold-light); letter-spacing: .05em; line-height: 1.4;
  margin-bottom: 1.2rem; text-shadow: 0 0 30px rgba(232,196,114,.22);
}
.footer-cta-body {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 1rem;
  color: var(--text-light); opacity: .68; line-height: 1.85; margin-bottom: 2.2rem;
}
.footer-cta-btn {
  display: inline-block; font-family: 'Cinzel', serif; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: .88rem 2.8rem; border-radius: 3px;
  transition: filter var(--ease), transform var(--ease);
}
.footer-cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.footer-grass { position: relative; background: var(--navy); line-height: 0; margin-bottom: -2px; }
.footer-grass svg { width: 100%; height: clamp(80px, 12vw, 160px); display: block; }

.footer-bottom {
  background: transparent;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.4rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-main { font-family: 'Cinzel Decorative', cursive; font-size: clamp(.85rem, 2vw, 1.1rem); color: var(--gold-light); letter-spacing: .05em; text-shadow: 0 0 14px rgba(232,196,114,.3); }
.footer-logo-sub  { font-family: 'Cinzel', serif; font-size: clamp(.36rem, .8vw, .46rem); letter-spacing: .24em; color: rgba(232,196,114,.58); text-transform: uppercase; margin-top: 5px; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a { font-family: 'Cinzel', serif; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(240,232,208,.52); text-decoration: none; transition: color var(--ease); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-family: 'Roboto', sans-serif; font-weight: 300; font-size: .82rem; color: rgba(54, 54, 54, 0.36); letter-spacing: .04em; }

/* 
   ANIMAÇÕES
    */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 
   RESPONSIVO
  */
@media (max-width: 1024px) {
  .concertos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .home-sobre     { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6vw 5rem; }
  .galeria-grid   { grid-template-columns: 1fr; }
  .galeria-item img { height: 220px; }
  .concertos-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 640px) {

  .nav-toggle { display: flex; }
  nav { padding: 0 1.4rem; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
   
    background: linear-gradient(160deg, #0d1220 0%, #0a0e1a 100%);
    border-top: 1px solid rgba(201,147,58,.18);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 9999;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }

 
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(201,147,58,.1);
  }
  .nav-links li:first-child {
    border-top: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: .85rem;
    letter-spacing: .2em;
    text-align: left;
  }
  
  .nav-links a::after { display: none; }

  
  .nav-links a.active {
    color: var(--gold-light);
    border-left: 3px solid var(--gold-light);
    padding-left: calc(2rem - 3px);
  }

  
  .nav-links a.nav-disabled {
    opacity: .28;
  }

  .divider        { padding: 2rem 1.4rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-box { padding: 2.5rem 1.8rem; }
  .concerto-card  { flex-wrap: wrap; gap: .8rem; }

  }

@media (max-width: 640px) {

  .hero {
    min-height: auto;
    padding: 110px 0 3rem;
  }

  .hero-image {
    width: 125vw;
    max-width: none;
    margin-left: -12.5vw;
    transform: translateY(-20px);
  }

  .hero-text {
    width: 70%;
    left: 50%;
    top: 38%;
  }

.hero-text {
  width: 70%;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%) translateY(20px);
}
}

/* 
   BOTÃO VOLTAR AO TOPO
    */
.btn-topo {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,14,26,.85);
  border: 1px solid rgba(201,147,58,.4);
  color: var(--gold-light);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  /* começa invisível */
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, border-color .2s ease;
}
.btn-topo.visivel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.btn-topo:hover {
  background: rgba(201,147,58,.15);
  border-color: rgba(201,147,58,.75);
}
.btn-topo svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .btn-topo { bottom: 1.4rem; right: 1.4rem; width: 40px; height: 40px; }
}

