/* ===== ESTILOS GERAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec {
  padding: 80px 0;
}

.pad {
  padding: 80px 0;
}

.alt {
  background-color: #f9f9f9;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.98);
}

.contlog {
  display: flex;
  align-items: center;
}

.logo, .logoverm {
  height: 150px;
  transition: all 0.3s ease;
}

.logoverm {
  display: none;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #8e6841;
  transition: width 0.3s ease;
}

.menu a:hover:after, .menu a.active:after {
  width: 100%;
}

.menu a:hover, .menu a.active {
  color: #8e6841;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  display: flex;
  margin-top: 190px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/museu/img\ \(15\).jpeg') no-repeat center center/cover;
  color: white;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  background-color: #8e6841;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #8e6841;
}

.btn-hero:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-hero-outline {
  background-color: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-hero-outline:hover {
  background-color: white;
  color: #333;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}

.scroll-down span {
  margin-bottom: 5px;
  font-size: 14px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #8e6841;
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  margin-bottom: 20px;
}

.icon-lg {
  font-size: 2.5rem;
  color: #8e6841;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  color: #666;
  line-height: 1.6;
}

/* ===== TWO COLUMNS LAYOUT ===== */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.text-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.text-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}
.posit{
  display: flex;
  width: 100%;
  justify-content: sa;
}
.image-content {
  display: flex;
  justify-content: center;
  
}

.portrait-frame {
  width: 350px;
  height: 450px;
  background-color: #f5f5f5;
  border: 15px solid #8e6841;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-image: url(../img/museu/img\ \(1\).jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

.placeholder-portrait {
  text-align: center;
  color: #999;
  
}


.placeholder-portrait i {
  font-size: 5rem;
  margin-bottom: 15px;
  display: block;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.highlight2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.highlight-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.highlight-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-image:hover .image-overlay {
  opacity: 1;
}

.view-details {
  background: #8e6841;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-details:hover {
  background: #735732;
}

.highlight-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.highlight-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}

.artifact-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

.artifact-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 0.9rem;
}

.artifact-meta i {
  color: #8e6841;
}

.nota {
  margin-top: 40px;
  font-style: italic;
  color: #888;
  text-align: center;
  font-size: 0.9rem;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  margin-bottom: 15px;
  font-weight: 500;
}

.gallery-expand {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gallery-expand:hover {
  background: white;
  color: #333;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background-color: #8e6841;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #8e6841;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background-color: #735732;
  border-color: #735732;
  color: white;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-outline {
  background-color: transparent;
  color: #8e6841;
}

.btn-outline:hover {
  background-color: #8e6841;
  color: white;
}

/* ===== EXPOSIÇÕES ===== */
.exposicoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.exposicao-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exposicao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.exposicao-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.exposicao-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.exposicao-card:hover .exposicao-img img {
  transform: scale(1.05);
}

.exposicao-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #8e6841;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.exposicao-content {
  padding: 25px;
}

.exposicao-content h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #333;
}

.exposicao-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.exposicao-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.exposicao-data, .exposicao-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 0.9rem;
}

.exposicao-data i, .exposicao-duration i {
  color: #8e6841;
}

.btn-exposicao {
  background-color: #8e6841;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-exposicao:hover {
  background-color: #735732;
}

/* ===== PROGRAMAÇÃO CULTURAL ===== */
.programacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.programacao-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programacao-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.programacao-icon {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.programacao-item h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #333;
}

.programacao-item p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.programacao-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #777;
  font-size: 0.9rem;
}

.programacao-schedule i {
  color: #8e6841;
}

/* ===== TIMELINE ===== */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
}

.timeline-container:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #8e6841;
}

.timeline {
  list-style: none;
  position: relative;
}

.timeline li {
  margin-bottom: 60px;
  position: relative;
  display: flex;
  align-items: center;
}

.timeline li:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #8e6841;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.tl-card {
  width: calc(50% - 40px);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline li:nth-child(odd) .tl-card {
  margin-right: 40px;
}

.timeline li:nth-child(even) .tl-card {
  margin-left: 40px;
}

.tl-card h4 {
  color: #8e6841;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.tl-card p {
  color: #666;
  line-height: 1.6;
}

/* ===== VISITAÇÃO ===== */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.visit-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visit-box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.visit-box-header i {
  font-size: 1.5rem;
  color: #8e6841;
}

.visit-box-header h3 {
  font-family: 'Playfair Display', serif;
  color: #333;
}

.visit-box p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.ingresso-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #666;
}

.ingresso-info i {
  color: #8e6841;
  margin-top: 3px;
}

.map-container {
  height: 200px;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.map-info {
  text-align: center;
  padding: 20px;
}

.map-info h4 {
  margin-bottom: 15px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.map-info p {
  margin-bottom: 8px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-info i {
  color: #8e6841;
}

.visit-extra {
  margin-top: 60px;
}

.visit-extra h3 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.visit-detail {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visit-detail i {
  font-size: 2.5rem;
  color: #8e6841;
  margin-bottom: 15px;
}

.visit-detail h4 {
  margin-bottom: 15px;
  color: #333;
}

.visit-detail p {
  color: #666;
  line-height: 1.6;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.depoimento {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.depoimento:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: #f0f0f0;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.depoimento-text {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.depoimento-text p {
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8e6841;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #333;
  margin-bottom: 5px;
}

.author-info p {
  color: #777;
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

details {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: white;
}

summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: '+';
  font-size: 1.5rem;
  color: #8e6841;
  transition: transform 0.3s ease;
}

details[open] summary:after {
  content: '-';
}

.faq-content {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* ===== FORMULÁRIO ===== */
.form {
  max-width: 600px;
  margin: 40px auto 0;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.field input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.field input:focus {
  outline: none;
  border-color: #8e6841;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkbox-field input {
  width: auto;
}

.checkbox-field label {
  margin-bottom: 0;
  font-weight: normal;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  position: relative;
}

.btn-text, .btn-loading {
  transition: opacity 0.3s ease;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.btn.loading .btn-text {
  opacity: 0;
}

.btn.loading .btn-loading {
  opacity: 1;
}

.msg {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
}

.msg.success {
  background-color: #d4edda;
  color: #155724;
}

.msg.error {
  background-color: #f8d7da;
  color: #721c24;
}

/* ===== NEWSLETTER ===== */
.newsletter-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-content h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #333;
}

.newsletter-content p {
  color: #666;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #8e6841;
}

.newsletter-form button {
  background-color: #8e6841;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #735732;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
/* ===== MENU MOBILE ===== */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu-content {
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 190px;
}
.mobile-menu-content a {
  text-decoration: none;
  color: #333;
  font-size: 2rem;
  
  

}
.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.icon-perfil{ 
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    margin: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #8e6841;
}
.footer-section h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: white;
  font-size: 1.3rem;
}

.logofot {
  height: 150px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #8e6841;
}

.footer-section.links {
  display: flex;
  flex-direction: column;
}

.footer-section.links a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section.links a:hover {
  color: #8e6841;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background-color: #8e6841;
}

.footer-cta {
  margin-top: 20px;
}

.footer-cta p {
  margin-bottom: 15px;
  color: #ccc;
}

.btn-footer {
  display: inline-block;
  background-color: #8e6841;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-footer:hover {
  background-color: #735732;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 5px;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

.modal-image {
  border-radius: 8px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-info h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.8rem;
}

.modal-info p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.7;
}

.modal-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
}

.modal-meta i {
  color: #8e6841;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #8e6841;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .highlight {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hero{
      margin-top: 180px;

    }
  .menu-icon {
    display: block;
  }
 
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .timeline-container:before {
    left: 20px;
  }
  
  .timeline li {
    flex-direction: row !important;
    text-align: left !important;
  }
  
  .tl-dot {
    left: 20px;
  }
  
  .tl-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
  }
  
  .visit-grid, .visit-details {
    grid-template-columns: 1fr;
  }
  
  .exposicoes-grid {
    grid-template-columns: 1fr;
  }
  
  .programacao-grid {
    grid-template-columns: 1fr;
  }
  
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }
  
  .logo {
    display: none;
  }
  
  .logoverm {
    display: block;
  }
    .hero{
      margin-top: 180px;

    }
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form {
    padding: 30px 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
}