
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 0.6rem 1rem 1.2rem 1rem;
    position: relative;
}

.logo {
    max-width: 320px;
    margin-bottom: 0.8rem;
}

.golden-line {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #b8860b, #ffd700, #b8860b);
    box-shadow: 0 0 10px #ffd700;
    position: absolute;
    bottom: 0;
    left: 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0 1.5rem 0;
    margin-top: 0.3rem;
}

.button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(145deg, #000000, #2c2c2c);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.button:hover {
    background: linear-gradient(145deg, #b8860b, #ffd700);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
}

footer .golden-line-footer {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #b8860b, #ffd700, #b8860b);
    box-shadow: 0 0 5px #ffd700;
    position: absolute;
    top: 0;
    left: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-float:hover {
    background: linear-gradient(145deg, #128C7E, #075E54);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.social {
    margin-top: 0.8rem;
}

.social .icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.social a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.creditos {
    margin-top: 1rem;
}

.creditos a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: none;
}

.creditos p {
    color: white;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 80px; /* levantado pra não colidir com o rodapé */
    right: 20px;
}

.social a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
}

.social a:hover {
    color: #ffd700;
}

.social .icon {
    width: 20px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin-right: 8px;
}

.creditos a {
    color: white;
    font-weight: normal;
    text-decoration: none;
}

.creditos a:hover {
    color: #ffd700;
}

.creditos p {
    color: white;
    font-size: 1rem;
}

.icon-gps {
    width: 18px;
    vertical-align: middle;
    margin-right: 6px;
    filter: brightness(0) invert(1);
}

.creditos a {
    font-size: 0.9rem;
}

.creditos p {
    color: white;
    font-size: 0.8rem;
    margin: 0.2rem 0;
}

.social {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.social .icon {
    width: 18px;
    filter: brightness(0) invert(1);
}

.social a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.social a:hover {
    color: #ffd700;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.whatsapp-float:hover {
    background: linear-gradient(145deg, #128C7E, #075E54);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0.5rem 0 0.5rem;
}

.footer-left {
    flex: 1;
}

.footer-right {
    text-align: right;
    flex: 1;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-right a:hover {
    color: #ffd700;
}

.footer-right p {
    color: white;
    font-size: 0.8rem;
    margin: 0.2rem 0;
}

/* Responsividade geral */
body, html {
    max-width: 100%;
    overflow-x: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-right {
    flex: 1;
    min-width: 250px;
    text-align: right;
}

.footer-right a,
.footer-right p,
.footer-left a,
.footer-left p {
    font-size: 0.9rem;
}

.icon-gps,
.footer-left .icon {
    width: 18px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin-right: 6px;
}

.social {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.social a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.social a:hover {
    color: #ffd700;
}

.address {
    color: white;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 120px; /* mais afastado do rodapé */
    right: 20px;
}

.footer-center {
    text-align: center;
    margin-top: 1rem;
}

.social-combo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-combo .icon {
    width: 18px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin-right: 5px;
}

.social-combo a {
    color: white;
    text-decoration: none;
}

.social-combo a:hover {
    color: #ffd700;
}

.separator {
    color: white;
    margin: 0 8px;
}

.footer-center .address {
    font-size: 0.8rem;
    color: white;
    margin-top: 0.3rem;
}

.footer-center .icon-gps {
    width: 16px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin-right: 6px;
}

.whatsapp-float {
    bottom: 40px; /* flutuando mais para cima */
}

.social-combo span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-center .credit-final {
    font-size: 0.8rem;
    color: white;
    margin-top: 0.5rem;
}

.footer-center .credit-final a {
    color: white;
    text-decoration: none;
}

.footer-center .credit-final a:hover {
    color: #ffd700;
}



.institucional {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    padding: 2rem 0;
}



.institucional h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1rem;
}

.institucional p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.institucional strong {
    color: #000000;
}


/* === Início: Adições GALERIA === */
#bv-gallery-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#bv-gallery-backdrop .bv-gal-modal {
  width: min(1100px, 95vw);
  height: min(720px, 90vh);
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bv-gal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.bv-gal-header h2 { margin: 0; font-size: 1.25rem; letter-spacing: 1px; }
.bv-gal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.bv-gal-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  height: 100%;
}
.bv-gal-sidebar {
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bv-gal-tab {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}
.bv-gal-tab.is-active {
  background: #1c1c1c;
  border-color: #fff;
}
.bv-gal-content {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
/* Refeições carousel */
.bv-gal-panel[data-panel="refeicoes"] {
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.bv-gal-image {
  max-width: calc(100% - 120px);
  max-height: calc(100% - 60px);
  width: auto;
  height: auto;
  object-fit: contain; /* sem cortar */
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.bv-gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  width: 48px;
  height: 72px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}
.bv-gal-nav:hover { background: rgba(255,255,255,0.18); }
.bv-gal-nav.prev { left: 18px; }
.bv-gal-nav.next { right: 18px; }
.bv-gal-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* Eventos grid */
.bv-gal-panel[data-panel="eventos"] {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px;
  align-items: stretch;
  justify-content: stretch;
}
.bv-gal-vgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 6px;
}
.bv-vid-wrap {
  background: #111;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 6px;
}
.bv-vid-wrap video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 6px;
  background: #000;
}
.bv-gal-scroll-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  opacity: 0.75;
}

/* Responsividade */
@media (max-width: 820px) {
  .bv-gal-body { grid-template-columns: 1fr; }
  .bv-gal-sidebar { flex-direction: row; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .bv-gal-tab { flex: 1; text-align: center; }
  .bv-gal-image { max-width: calc(100% - 88px); max-height: calc(100% - 100px); }
}
/* === Fim: Adições GALERIA === */


/* Título das sessões dentro da galeria */
.bv-gal-panel-title {
  position: absolute;
  top: 8px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-size: 1rem;
  letter-spacing: .5px;
  opacity: .9;
  pointer-events: none;
}
