/*  */
/* CUSTOM */
  .modal .modal-body{
    color: #000 !important;
  }
/*  */
/* CUSTOM */




:root {
  --dark: #080808;
  --darker: #050505;
  --light: #f5f5f5;
  --muted: #9ea0a7;
  --accent: #f0c24b;
  --accent-dark: #c99e2f;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  border-radius: 0.75rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.logotipo{
  border-radius: 0 !important;
  height: 90px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
}

.text-muted {
  color: rgba(245, 245, 245, 0.65) !important;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--light);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
}

.btn-outline-light:hover {
  background: var(--light);
  color: var(--dark);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-navbar {
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.7);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-navbar.scrolled {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
  background: rgba(5, 5, 5, 0.9);
}

.navbar-brand img {
  width: 52px;
  height: 52px;
  margin-right: 0.5rem;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--light) !important;
  opacity: 0.7;
}

.nav-link.active,
.nav-link:hover {
  opacity: 1;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.5)), url('/assets/_imgs/hero-bg.svg') center/cover fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .floating-badge {
  position: absolute;
  top: 10%;
  right: 5%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 480px;
  color: var(--muted);
}

.value-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
}

.album-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  display: block;
}

.album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.album-cover {
  position: relative;
  overflow: hidden;
}

.album-cover img {
  border-radius: 0;
  display: block;
  width: 100%;
}

.album-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-card:hover .album-cover::after {
  opacity: 1;
}

.album-card .card-body {
  padding: 1.5rem;
}

.social-feed {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.social-post {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.social-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.social-post small {
  color: var(--muted);
}

.social-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
}

.play-pill {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.full-bleed-image {
  min-height: 60vh;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.full-bleed-image::after {
  content: attr(data-quote);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-size: 2rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.45);
}

.member-card {
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 194, 75, 0.6);
}

.member-card img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.event-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
}

.event-card .card-body {
  background: rgba(0, 0, 0, 0.7);
  padding: 1.6rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.masonry-grid {
  column-count: 1;
  column-gap: 1.5rem;
}

@media (min-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .masonry-grid {
    column-count: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.masonry-item a {
  display: block;
}

.gallery-thumb {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-thumb::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-thumb.is-video::after {
  content: '';
}

.gallery-thumb .play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  pointer-events: none;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-thumb:hover::after {
  opacity: 1;
}

.glightbox-container .gslide-media {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.glightbox-container .gslide-media img {
  width: auto !important;
  height: auto !important;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.contact-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.9rem 1.2rem;
  color: var(--light);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.07);
  color: var(--light);
  border-color: rgba(240, 194, 75, 0.6);
  box-shadow: none;
}

/* Estilo para formulários da plataforma (.vw-formulario) */
.vw-formulario {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  color: var(--light);
}

.vw-formulario h3,
.vw-formulario h4,
.vw-formulario h5 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--muted);
}

.vw-formulario label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.vw-formulario input,
.vw-formulario select,
.vw-formulario textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--light);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}

.vw-formulario input::placeholder,
.vw-formulario textarea::placeholder {
  color: var(--muted);
}

.vw-formulario input:focus,
.vw-formulario select:focus,
.vw-formulario textarea:focus {
  outline: none;
  border-color: rgba(240, 194, 75, 0.6);
  box-shadow: 0 0 0 3px rgba(240, 194, 75, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.modal .btn.btn-default,
.vw-formulario button,
.vw-formulario input[type='submit'] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: var(--accent);
  color: var(--dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal .btn.btn-default{
  width: auto;
}

.modal .btn.btn-default:hover,
.vw-formulario button:hover,
.vw-formulario input[type='submit']:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.vw-formulario .vw-error,
.vw-formulario .vw-form-error {
  color: #ffb3b3;
  font-size: 0.9rem;
  margin-top: -0.4rem;
  margin-bottom: 0.8rem;
}

.vw-formulario .vw-sucesso,
.vw-formulario .vw-form-success {
  color: #b7f5c2;
  font-weight: 600;
  margin-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.85);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer .social-links a {
  color: var(--light);
  margin-right: 1rem;
  font-size: 1.25rem;
  opacity: 0.7;
}

.site-footer .social-links a:hover {
  opacity: 1;
}

.album-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.album-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

.album-hero .container {
  position: relative;
  z-index: 2;
}

.tag-pill {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 3.5rem 0 4.5rem;
    background-attachment: scroll;
  }

  .hero .container {
    text-align: center;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }

  .social-feed {
    padding: 1.3rem;
  }

  .event-card .card-body {
    padding: 1.25rem 1.4rem;
  }
}

@media (max-width: 991px) {
  .site-navbar {
    padding: 0.5rem 1rem !important;
  }

  .hero {
    min-height: 75vh;
    padding: 4rem 0;
  }

  .hero .floating-badge {
    display: none;
  }
}

@media (max-width: 575px) {
  .navbar-brand span {
    display: none;
  }

  .hero-title {
    letter-spacing: 0.2em;
  }
}
