@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: #ffffff;
  color: #030213;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.bg-black {
  background-color: #000000;
}

.bg-light {
  background-color: #F5F5F5;
}

.bg-medium {
  background-color: #CFCFCF;
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.text-gold {
  color: #C9B37E;
}

.text-gray {
  color: #B5B5B5;
}

.text-light {
  color: #f5f5f5;
}

.italic {
  font-style: italic;
}

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

.mb-6 {
  margin-bottom: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.border-top {
  border-top: 1px solid #2A2A2A;
}

.hidden {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 1s forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.8s forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.5s forwards;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.font-serif {
  font-family: "Playfair Display", serif;
}

.font-sans {
  font-family: "Inter", sans-serif;
}

.top-bar {
  background-color: #000000;
  color: #B5B5B5;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #2A2A2A;
  padding: 1.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header-logo {
    justify-content: flex-start;
  }
}

.logo-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
}
.logo-text:hover {
  color: #cfcfcf;
}

.logo-image {
  height: 40px;
}

.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: #B5B5B5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-indicator {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #C9B37E;
}

.header-social {
  display: none;
}
@media (min-width: 1024px) {
  .header-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
  }
}

.social-link {
  color: #ffffff;
  transition: color 0.3s ease;
}
.social-link:hover {
  color: #C9B37E;
}

.mobile-menu-btn {
  display: block;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn .close-icon {
  display: none;
}
.mobile-menu-btn.open .menu-icon {
  display: none;
}
.mobile-menu-btn.open .close-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 88px 0 0 0;
  background-color: #000000;
  z-index: 99;
  display: none;
  border-bottom: 1px solid #2A2A2A;
}
.mobile-menu.active {
  display: block;
}

.mobile-nav {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #B5B5B5;
  text-align: left;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #ffffff;
}

.mobile-social {
  padding-top: 1.5rem;
  border-top: 1px solid #2A2A2A;
  display: flex;
  gap: 1.5rem;
}

.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 6rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-col .contact-value {
  color: white;
}

.footer-logo {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-description {
  color: #B5B5B5;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-tagline {
  color: #C9B37E;
  font-size: 0.875rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-logo-image {
  margin-top: 1rem;
}
.footer-logo-image img {
  height: auto;
  display: block;
}

.footer-heading {
  color: #cfcfcf;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #B5B5B5;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #C9B37E;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-label {
  color: #B5B5B5;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #ffffff;
  font-size: 0.875rem;
}
.contact-value.link-hover {
  transition: color 0.3s ease;
}
.contact-value.link-hover:hover {
  color: #C9B37E;
}

.footer-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-schedule {
  color: #8a8a8a;
  font-size: 0.75rem;
  padding-top: 0.5rem;
  line-height: 1.6;
}

.footer-editorial {
  border-top: 1px solid #2A2A2A;
  padding: 3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-text {
  color: #B5B5B5;
  font-size: 0.875rem;
}

.editorial-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.footer-legal {
  border-top: 1px solid #2A2A2A;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #8a8a8a;
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-link:hover {
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.btn.btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.btn.btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}
.btn.btn-primary {
  background-color: #000000;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #333;
}
.btn.btn-primary.btn-full {
  width: 100%;
}

.bg-light .btn-primary:hover {
  background-color: #2A2A2A;
}

.exhibition-card .btn-primary {
  background-color: #000000;
}
.exhibition-card .btn-primary:hover {
  background-color: #1a1a1a;
}

.hero-section {
  position: relative;
  height: 100vh;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  /* Filtro escuro para facilitar leitura do texto sobre a imagem */
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

/* Hero com fundo claro (ex: Cuidados) — overlay claro para texto escuro */
.hero-section.bg-light .hero-bg::after {
  background: rgba(255, 255, 255, 0.55);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image.opacity-30 {
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  color: #ffffff;
  text-align: center;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #f5f5f5;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.hero-description {
  color: #cfcfcf;
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: bounce 2s infinite;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 2px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.section {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }
}

.section-text {
  font-size: 1.125rem;
  color: #374151;
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-title {
  font-size: 1.25rem;
}

.feature-desc {
  color: #4b5563;
  line-height: 1.6;
}

.exhibition-card {
  background-color: #CFCFCF;
  padding: 3rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #000000;
}

.exhibition-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exhibition-city {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
}

.exhibition-dates {
  font-size: 1.25rem;
}

.exhibition-hours {
  font-size: 0.875rem;
  color: #374151;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #F5F5F5;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-image:hover {
  transform: scale(1.05);
}

.conscious-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .conscious-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.conscious-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conscious-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
}

.conscious-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #F5F5F5;
}

.conscious-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-form {
  max-width: 42rem;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Ocultar label do email (plugin Newsletter) */
}
.newsletter-form label[for*=email] {
  display: none;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font: inherit;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #000000;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-align: left;
}
.checkbox-label input {
  margin-top: 0.25rem;
}

.section-closing {
  text-align: center;
  padding: 6rem 0;
}

.closing-brand {
  color: #cfcfcf;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.closing-tagline {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
}

.hero-short {
  height: 70vh;
}

.section-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .conscious-reverse .conscious-content {
    order: 2;
  }
  .conscious-reverse .conscious-image-wrapper {
    order: 1;
  }
}

.border-top {
  border-top: 1px solid #2A2A2A;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .collection-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.collection-item {
  cursor: pointer;
  background-color: transparent;
}

.item-image-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #F5F5F5;
  margin-bottom: 1rem;
}

.item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-item:hover .item-image {
  transform: scale(1.05);
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-name {
  font-size: 1.125rem;
}

.item-category {
  font-size: 0.875rem;
  color: #4b5563;
}

.item-state {
  font-size: 0.875rem;
  color: #6b7280;
}

.featured-label {
  margin-bottom: 2rem;
}

.label-gold {
  color: #C9B37E;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.featured-period {
  font-size: 1.125rem;
}

.featured-desc {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
}

.curatorial-note {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.curatorial-label {
  color: #C9B37E;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.featured-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
}

.thumb-image {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.archive-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #CFCFCF;
}

.archive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.archive-meta {
  font-size: 1rem;
}

.archive-desc {
  color: #374151;
  line-height: 1.7;
}

.note-text {
  text-align: center;
  font-size: 1.125rem;
  color: #374151;
  font-style: italic;
}

.item-placeholder {
  width: 100%;
  height: 100%;
  background-color: #eee;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.modal.is-open {
  display: flex;
}

.modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: #C9B37E;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  width: 100%;
  margin: auto;
}
@media (min-width: 1024px) {
  .modal-content {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-image-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #2A2A2A;
}
.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.modal-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.modal-desc {
  color: #cfcfcf;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.modal-details p {
  margin: 0;
  color: #f5f5f5;
}

.detail-label {
  color: #C9B37E;
  margin-right: 0.5rem;
}

.modal-footer {
  padding-top: 1.5rem;
  border-top: 1px solid #2A2A2A;
}

.modal-note {
  font-size: 0.875rem;
  color: #cfcfcf;
  margin-bottom: 1.5rem;
}

.modal .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.modal .btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

.hero-editorial.hero-exposicoes {
  height: 70vh;
  min-height: 400px;
  background-color: #000000;
}

.hero-bg-solid {
  background-color: #000000;
}

.section-intro-curatorial {
  background-color: #F5F5F5;
}
.section-intro-curatorial .section-text-curatorial {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.container-wide {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-featured-exposicao {
  background-color: #ffffff;
}
.section-featured-exposicao .featured-label {
  margin-bottom: 2rem;
}
.section-featured-exposicao .label-gold {
  color: #C9B37E;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-featured-exposicao .featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-featured-exposicao .featured-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.section-featured-exposicao .featured-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.section-featured-exposicao .featured-image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}
.section-featured-exposicao .featured-image-wrapper .featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.section-featured-exposicao .featured-image-wrapper a:hover .featured-image {
  transform: scale(1.02);
}
.section-featured-exposicao .featured-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.section-featured-exposicao .featured-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
}
.section-featured-exposicao .featured-period {
  font-size: 1rem;
}
.section-featured-exposicao .featured-desc {
  font-size: 1.125rem;
  color: #717182;
  line-height: 1.8;
}
.section-featured-exposicao .cta-discreto {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s ease;
}
.section-featured-exposicao .cta-discreto:hover {
  color: #C9B37E;
}

.section-archive-exposicoes {
  background-color: #F5F5F5;
}

.archive-exposicoes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .archive-exposicoes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.archive-item-exposicao .archive-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.archive-item-exposicao .archive-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #CFCFCF;
}
.archive-item-exposicao .archive-image-wrapper .archive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.archive-item-exposicao .archive-image-wrapper .archive-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e5e7eb;
}
.archive-item-exposicao .archive-image-wrapper .archive-item-link:hover .archive-image {
  transform: scale(1.03);
}
.archive-item-exposicao .archive-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.archive-item-exposicao .archive-title {
  font-size: 1.25rem;
  font-weight: 500;
}
.archive-item-exposicao .archive-meta {
  font-size: 0.9375rem;
}

.section-note .note-text {
  text-align: center;
  font-size: 1.125rem;
  color: #717182;
  font-style: italic;
}

.section-closing.bg-black {
  background-color: #000000;
  color: #ffffff;
}
.section-closing.bg-black .closing-brand {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.section-closing.bg-black .closing-tagline {
  font-size: 1rem;
  color: #cfcfcf;
  letter-spacing: 0.05em;
}

.single-exposicao-hero {
  padding-top: 4rem;
  position: relative;
}

.btn-back-exposicao {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  color: #000000;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}
.btn-back-exposicao:hover {
  color: #C9B37E;
}

.single-exposicao-header {
  text-align: center;
}

.single-exposicao-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.single-exposicao-subtitle {
  font-size: 1rem;
  color: #717182;
  margin-bottom: 1rem;
}

.single-exposicao-meta {
  font-size: 1rem;
}

.single-exposicao-cover-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #F5F5F5;
}
.single-exposicao-cover-wrapper .single-exposicao-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-exposicao-text {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #030213;
}

.exposicao-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .exposicao-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.exposicao-gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.exposicao-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.exposicao-gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}
.gallery-lightbox-close:hover {
  color: #C9B37E;
}

.gallery-lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.single-exposicao-final-text {
  text-align: center;
  font-size: 1.125rem;
  color: #717182;
  font-style: italic;
  max-width: 42rem;
  margin: 0 auto;
}

.maintenance-icon-wrapper {
  display: flex;
  justify-content: center;
}

.section-header-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.section-header-icon .section-title {
  margin-bottom: 0;
  text-align: left;
}

.maintenance-notice {
  color: #4b5563;
  font-size: 1rem;
}

.recommendations-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: #374151;
}

.rec-bullet {
  width: 8px;
  height: 8px;
  background-color: #C9B37E;
  flex-shrink: 0;
}

.closing-quote {
  color: #f5f5f5;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.6;
}

.hero-contact {
  height: 50vh;
}

.section-text-lg {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.contact-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C9B37E;
  font-size: 0.875rem;
}

.contact-value,
.contact-card a.contact-value {
  font-size: 1.125rem;
  color: #C9B37E;
}

.contact-form-wp,
.contact-form-cf7 {
  margin-top: 2rem;
}

.contact-form-cf7 .wpcf7-form br {
  display: none;
}
.contact-form-cf7 .form-row {
  margin-bottom: 1.75rem;
}
.contact-form-cf7 .form-row:last-child {
  margin-bottom: 0;
}
.contact-form-cf7 .form-row-checkbox {
  margin-bottom: 1.5rem;
}
.contact-form-cf7 .form-row-submit {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.contact-form-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.25rem;
}
.contact-form-cf7 input[type=text],
.contact-form-cf7 input[type=email],
.contact-form-cf7 input[type=tel],
.contact-form-cf7 select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.contact-form-cf7 input[type=text]:focus,
.contact-form-cf7 input[type=email]:focus,
.contact-form-cf7 input[type=tel]:focus,
.contact-form-cf7 select:focus {
  outline: none;
  border-color: #000000;
}
.contact-form-cf7 textarea {
  width: 100%;
  min-height: 160px;
  padding: 1rem 1.25rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
}
.contact-form-cf7 textarea:focus {
  outline: none;
  border-color: #000000;
}
.contact-form-cf7 select {
  cursor: pointer;
  appearance: auto;
}
.contact-form-cf7 .wpcf7-list-item {
  margin: 0;
}
.contact-form-cf7 .wpcf7-list-item-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-align: left;
}
.contact-form-cf7 .wpcf7-list-item-label input[type=checkbox] {
  margin-top: 0.35rem;
}
.contact-form-cf7 input[type=submit] {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 1rem 2rem;
  background-color: #000000;
  color: #ffffff;
}
.contact-form-cf7 input[type=submit]:hover {
  background-color: #333;
}
.contact-form-cf7 .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem 1.5rem;
  border: none;
}
.contact-form-cf7 .wpcf7-mail-sent-ok {
  background-color: #C9B37E;
  color: #ffffff;
}
.contact-form-cf7 .wpcf7-validation-errors,
.contact-form-cf7 .wpcf7-mail-sent-ng {
  background-color: #fef2f2;
  color: #991b1b;
}

.form-placeholder-text {
  color: #717182;
  font-size: 1rem;
  margin-top: 1rem;
}

.form-success-message {
  background-color: #C9B37E;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.form-success-message p {
  font-size: 1.125rem;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.3s ease;
}
.faq-trigger:hover {
  background-color: #F5F5F5;
}

.faq-question {
  font-size: 1.125rem;
  padding-right: 1rem;
}

.faq-icon {
  color: #C9B37E;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: #4b5563;
  line-height: 1.7;
}

/*# sourceMappingURL=main.css.map */
