@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

:root {
  --primary-color: #b06010;
  --secondary-color: #d08a2a;
  --accent-color: #d08a2a;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --border-radius: 5px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: "Google Sans", sans-serif;
  --font-secondary: "Google Sans", sans-serif;
}

* {
  font-family: var(--font-secondary);
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary-color);
}

a:hover,
a:focus {
  color: #fff;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 20px auto;
  position: relative;
}

.divider span {
  position: absolute;
  width: 40px;
  height: 4px;
  background: var(--secondary-color);
  top: 0;
  left: 20px;
}

/* Intro alternativa (Na Humana Mind) */
.section-header.alt h2 {
  color: #2a2a2a;
  font-weight: 800;
}

.section-header.alt .subtitle,
.section-header .subtitle {
  margin-top: 8px;
  font-size: 20px;
  color: #9aa0a6;
  font-weight: 400;
}

.ornament {
  width: 72px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  border-radius: 999px;
  margin: 14px auto 28px;
}

.about-intro {
  max-width: 980px;
  margin: 0 auto 32px;
}

.about-intro .about-text {
  text-align: center;
  color: #8a8f94;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 14px;
}

.carousel-control .icon-prev::before,
.carousel-control .icon-next::before {
  content: "";
}

.carousel-control.right,
.carousel-control.left {
  background-image: none;
}
/* Hero Banner */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner .carousel-inner img {
  width: 100%;
  /* height: 650px; */
  object-fit: cover;
  /* filter: brightness(0.5); */
}

.hero-banner .carousel-caption {
  bottom: 30%;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.hero-banner .carousel-caption h2 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  color: #fff;
}

.hero-banner .carousel-caption p {
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.hero-banner .carousel-control {
  width: 5%;
  opacity: 0.8;
}

.hero-banner .carousel-indicators {
  bottom: 40px;
}

.hero-banner .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: 2px solid #fff;
  background-color: transparent;
}

.hero-banner .carousel-indicators .active {
  background-color: #fff;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.intro-section .lead {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

/* Category Cards */
.category-cards {
  margin-top: 50px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(176, 96, 16, 0.08) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 15px;
  opacity: 0;
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(176, 96, 16, 0.12);
}

.category-card:hover:before {
  opacity: 1;
}

.card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(176, 96, 16, 0.2);
}

.category-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--secondary-color);
}

.card-icon i {
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  transition: all 0.3s ease;
}

.category-card:hover .card-icon svg {
  transform: scale(1.1);
}

.card-body {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.category-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.category-card h4:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.4s ease;
}

.category-card:hover h4 {
  color: var(--secondary-color);
}

.category-card:hover h4:after {
  width: 50px;
}

.category-card p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-card {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.btn-card i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.category-card:hover .btn-card {
  color: var(--secondary-color);
}

.category-card:hover .btn-card i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .category-cards {
    margin-top: 30px;
  }

  .category-card {
    padding-top: 25px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }

  .card-icon i {
    font-size: 36px;
  }

  .card-icon svg {
    width: 36px;
    height: 36px;
  }

  .card-body {
    padding: 20px 15px;
  }

  .category-card h4 {
    font-size: 20px;
  }
}

/* event Section */
.event-section {
  position: relative;
  padding: 60px 0;
  color: #fff;
  background: #1f1f23 url("../images/banner2.jpg") center/cover no-repeat;
}
.event-section:before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
}
.event-section .container {
  position: relative;
  z-index: 1;
}

.event-gallery {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding: 30px;
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 96, 16, 0.2);
  transition: background 0.3s ease;
}

.gallery-item:hover .overlay {
  background: rgba(176, 96, 16, 0.1);
}

.item-1 {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-2deg);
}

.item-2 {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(2deg);
}

.item-3 {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(2deg);
}

.item-4 {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-2deg);
}

.event-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* Lista de eventos */
.event-list {
  margin-top: 20px;
}
.event-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.event-item + .event-item {
  margin-top: 14px;
}

a.event-item,
a.event-item:visited {
  color: inherit;
  text-decoration: none;
}

a.event-item:hover,
a.event-item:focus,
a.event-item:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.event-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-date {
  width: 74px;
  text-align: center;
  line-height: 1;
  font-weight: 800;
}
.event-date .day {
  font-size: 26px;
}
.event-date .month {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.event-date .year {
  font-size: 12px;
  opacity: 0.7;
}

.event-body {
  flex: 1 1 auto;
  min-width: 0;
}
.event-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  font-family: var(--font-secondary);
}
.event-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-meta i {
  opacity: 0.9;
}

.event-divider {
  position: absolute;
  left: 180px;
  right: 16px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

/* Responsivo eventos */
@media (max-width: 767px) {
  .event-item {
    align-items: flex-start;
  }
  .event-date {
    width: 60px;
  }
  .event-divider {
    left: 140px;
  }
}

.content-wrapper {
  max-width: 500px;
}

.event-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.event-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fff;
}

.event-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary:hover:before {
  left: 0;
}

/* Responsive styles for event section */
@media (max-width: 991px) {
  .event-content {
    padding: 40px 20px;
  }

  .event-content h2 {
    font-size: 30px;
  }

  .event-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .event-gallery,
  .event-content {
    width: 100%;
  }

  .gallery-grid {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
  }

  .event-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-rows: 120px 120px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4 {
    transform: rotate(0);
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  padding-bottom: 0;
  background-color: #f8f9fa;
}

.cta-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cta-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card-content p {
  color: #666;
  margin-bottom: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: #fff;
  text-decoration: none;
}

.btn-outline:hover:before {
  width: 100%;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 20px 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  padding: 30px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 24px;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  padding-left: 40px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.client-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-placeholder {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.client-details {
  color: #fff;
}

.client-details h5 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #fff;
}

.client-details span {
  font-size: 14px;
  opacity: 0.8;
}

#testimonial-carousel .carousel-indicators {
  bottom: -50px;
}

#testimonial-carousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

#testimonial-carousel .carousel-indicators .active {
  background-color: var(--primary-color);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.carousel-controls .carousel-control {
  background: none;
  opacity: 1;
  width: auto;
  text-shadow: none;
}

.carousel-controls .carousel-control i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-controls .carousel-control:hover i {
  background: var(--secondary-color);
}

.carousel-controls .left i {
  left: -20px;
}

.carousel-controls .right i {
  right: -20px;
}

@media (max-width: 767px) {
  .testimonial-content p {
    font-size: 16px;
  }

  .carousel-controls .left i {
    left: 0;
  }

  .carousel-controls .right i {
    right: 0;
  }
}

@media (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    border-radius: 10px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-banner .carousel-inner img {
    height: 550px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 42px;
  }

  .hero-banner .carousel-caption p {
    font-size: 20px;
  }

  .hex {
    width: 180px;
    height: 156px;
  }
}

@media (max-width: 991px) {
  .hero-banner .carousel-inner img {
    height: 450px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 36px;
  }

  .hero-banner .carousel-caption p {
    font-size: 18px;
  }

  .event-content {
    padding: 40px 20px;
  }

  .hex {
    width: 150px;
    height: 130px;
  }
}

@media (max-width: 767px) {
  .hero-banner .carousel-inner img {
    height: 350px;
  }

  .hero-banner .carousel-caption {
    bottom: 20%;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 30px;
  }

  .hero-banner .carousel-caption p {
    font-size: 16px;
  }

  .intro-section,
  .cta-section,
  .testimonial-section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .event-gallery,
  .event-content {
    width: 100%;
  }

  .hex-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-banner .carousel-inner img {
    height: 300px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 24px;
  }

  .hero-banner .carousel-caption p {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .testimonial p {
    font-size: 16px;
  }
}

/* Footer Moderno */
.modern-footer {
  font-family: var(--font-primary);
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px;
  text-align: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-card a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-color);
}

.card-content {
  width: 100%;
}

.card-content p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.card-content p i {
  margin-right: 8px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.card-content p span {
  flex: 1;
  min-width: 0;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  align-items: flex-start;
  width: 100%;
}

.hours-day,
.hours-time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
  width: 100%;
}

.hours-day {
  font-weight: 600;
  color: #333;
}

.hours-day i,
.hours-time i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hours-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hours-note i {
  font-size: 10px;
  color: var(--primary-color);
  margin-right: 5px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-widget h4 {
    font-size: 18px;
  }

  .footer-menu li {
    font-size: 14px;
  }
}

/* Seção Entre em Contato no rodapé */
.hm-footer-contact {
  position: relative;
  background-image: url("../images/bg-rodape.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #f7e8ac;
  padding: 60px 0 40px;
}

.hm-footer-contact__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 0, 0, 0.25),
      transparent 55%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.hm-footer-contact__container {
  position: relative;
  z-index: 1;
}

.hm-footer-contact__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}

.hm-footer-contact__title {
  font-size: 2.8rem;
  line-height: 1.05;
  color: #f7e8ac;
  margin: 0;
}

.hm-footer-contact__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.hm-footer-contact__alert {
  width: 100%;
  max-width: 420px;
  margin: 0 0 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.45);
}

.hm-footer-contact__alert--success {
  border: 1px solid rgba(80, 255, 170, 0.9);
  color: #e5fff5;
}

.hm-footer-contact__alert--error {
  border: 1px solid rgba(255, 120, 120, 0.9);
  color: #ffecec;
}

.hm-footer-contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hm-footer-contact__field {
  background: rgba(196, 174, 102, 0.96);
  color: rgba(18, 40, 24, 0.9);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(247, 232, 172, 0.18);
  outline: none;
  box-sizing: border-box;
}

.hm-footer-contact__field::placeholder {
  color: rgba(18, 40, 24, 0.8);
}

.hm-footer-contact__field:focus {
  box-shadow: 0 0 0 2px rgba(248, 232, 170, 0.85),
    0 10px 22px rgba(0, 0, 0, 0.45);
}

.hm-footer-contact__submit {
  margin: 6px 0 0;
  padding: 10px 26px;
  width: 100%;
  max-width: none;
  border-radius: 999px;
  border: none;
  background: #11a05b;
  color: #f7f7f7;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}

.hm-footer-contact__submit:hover {
  background: #10b169;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.5);
}

.hm-footer-contact__submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.hm-footer-contact__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.85),
    transparent
  );
  margin: 6px 0 26px;
}

.hm-footer-contact__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.hm-footer-contact__block-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7e8ac;
  margin: 0 0 10px;
}

.hm-footer-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.98rem;
}

.hm-footer-contact__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hm-footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f7e8ac;
  text-decoration: none;
}

.hm-footer-contact__link:hover {
  color: #fff1b8;
}

.hm-footer-contact__address {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 4px;
}

.hm-footer-contact__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #f7e8ac;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f7e8ac;
}

.hm-footer-contact__icon svg {
  width: 18px;
  height: 18px;
}

.hm-footer-contact__block--social {
  justify-self: flex-start;
}

.hm-footer-contact__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hm-footer-contact__social-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: 2px solid #f7e8ac;
  background: rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7e8ac;
}

.hm-footer-contact__social-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 991px) {
  .hm-footer-contact {
    padding: 40px 0 32px;
  }

  .hm-footer-contact__top,
  .hm-footer-contact__bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .hm-footer-contact__right {
    align-items: flex-start;
    justify-self: stretch;
    max-width: 520px;
  }

  .hm-footer-contact__field {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hm-footer-contact__title {
    font-size: 2.2rem;
  }

  .hm-footer-contact__field {
    max-width: 100%;
  }
}

/* Seção principal do footer */
.footer-main {
  background: #1f1f23 url("../images/banner5.jpg") top/cover no-repeat;
  padding: 60px 0 40px;
  color: #fff;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.footer-menu li:hover {
  transform: translateX(5px);
}

.footer-menu li i {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.7);
  width: 16px;
  text-align: center;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.social-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

/* Link com ícone + texto para redes sociais no footer */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.social-link .social-text {
  color: #fff;
  font-weight: 600;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(59, 89, 152);
  border-radius: 50%;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.social-button.facebook:hover {
  background: rgb(59, 89, 152);
  opacity: 0.9;
}

.social-button i {
  font-size: 20px;
  margin-right: 0;
}

/* Seção de copyright */
.footer-copyright {
  background: #1f1f23;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: #fff;
  text-decoration: none;
}

.text-right {
  text-align: right;
}

@media (max-width: 767px) {
  .contact-card {
    margin-bottom: 20px;
  }

  .footer-widget {
    margin-bottom: 30px;
  }

  .text-right {
    text-align: center !important;
    margin-top: 15px;
  }

  /* Footer centralizado no mobile */
  .footer-main .row {
    text-align: center !important;
    justify-content: center !important;
  }
  .footer-main img {
    margin: 0 auto !important;
  }
  .social-buttons {
    align-items: center !important;
  }
  .footer-copyright p {
    text-align: center !important;
  }

  .footer-widget h4 {
    text-align: center; /* centraliza o texto (opcional, mas combina com a linha) */
  }
  .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%); /* centraliza a pseudo-linha */
  }
}
@media (max-width: 991px) {
  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hours-row {
    flex-direction: column;
    align-items: center;
  }

  .hours-day {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-widget h4 {
    font-size: 18px;
  }

  .footer-menu li {
    font-size: 14px;
  }
}

/* Estilos do Menu */
.top-bar {
  /* Oculta a faixa superior para permitir um topo limpo/transparente */
  display: none;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
}

.contact-info i {
  margin-right: 5px;
}

.main-header {
  /* Menu fixo e transparente sobre o banner */
  background-color: transparent;
  box-shadow: none;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.5rem;
}

.logo {
  margin: auto 15px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  font-size: 28px;
  margin-right: 10px;
  color: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.logo-subtitle {
  font-size: 16px;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  outline: none;
  position: relative;
  z-index: 1001;
  width: 45px;
  height: 40px;
}

.hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
}

.hamburger .line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(1) {
  top: 0;
}

.hamburger .line:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}

.hamburger .line:nth-child(3) {
  bottom: 0;
}

/* Transformação em X */
.mobile-menu-toggle.active .hamburger .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger .line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-menu li a:hover {
  color: #fff;
}

.nav-menu li a:hover:after,
.nav-menu li.active a:after {
  width: 100%;
}

.nav-menu li.active a {
  color: #fff;
}

.header-badge {
  margin-left: 20px;
}

.badge-link img {
  height: 40px;
  transition: all 0.3s ease;
}

.badge-link img:hover {
  transform: scale(1.1);
}

/* Responsividade do Menu */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }

  /* Mobile: header não flutuante */
  .main-header {
    position: relative; /* desfaz o fixed do desktop */
    background-color: rgba(0, 0, 0, 0.92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    padding: 8px 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  /* Remove o cartão translúcido no mobile */
  .header-content {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0.5rem 0;
  }

  /* Como o header não é mais fixo, remova compensações no banner */
  .hero-banner {
    margin-top: 0;
    padding-top: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #141414;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-radius: 0 0 12px 12px;
    backdrop-filter: blur(10px);
  }

  .main-nav.show {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  /* Em telas pequenas, mantenha contraste adequado no menu aberto */
  .main-nav .nav-menu li a {
    color: #fff;
  }
  .main-nav .nav-menu li a:after,
  .main-nav .nav-menu li.active a:after {
    background-color: var(--primary-color);
  }

  .header-content {
    flex-wrap: wrap;
  }

  /* No mobile, como o dropdown usa fundo branco, usamos cores escuras no logo */
  .logo a,
  .logo-icon,
  .logo-title,
  .logo-subtitle {
    color: var(--primary-color);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
  }

  .header-badge {
    display: none;
  }
}

/* Estilos para a página Sobre */
.about-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/banner1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.about-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.about-intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-story {
  margin-top: 40px;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(66, 32, 105, 0.2), rgba(66, 32, 105, 0.2));
}

.about-content {
  padding: 20px;
}

.about-content h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 28px;
}

.about-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.about-mission-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.mission-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
  overflow: visible;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.mission-card:hover .card-icon {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.mission-card .card-icon i {
  font-size: 36px;
  color: #fff;
}

.mission-card .card-body {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mission-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.6;
}

.about-video-section {
  padding: 80px 0;
  background-color: #fff;
}

.video-responsive {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-responsive img {
  width: 100%;
  border-radius: 10px;
}

.overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.overlay-video:hover {
  background: rgba(0, 0, 0, 0.6);
}

.overlay-video i {
  font-size: 72px;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s ease;
  padding-top: 0;
}

.overlay-video:hover i {
  transform: scale(1.1);
  opacity: 1;
}

.about-team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.team-role {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 16px;
}

.team-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-banner {
    height: 300px;
  }

  .about-banner h1 {
    font-size: 36px;
  }

  .about-banner .lead {
    font-size: 18px;
  }

  .about-intro-section,
  .about-mission-section,
  .about-video-section,
  .about-team-section {
    padding: 50px 0;
  }

  .about-content {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner .lead {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* Estilos para a página de Lojas */
.stores-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/banner1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.stores-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.stores-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.stores-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.stores-intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.stores-grid {
  margin-top: 40px;
}

.store-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.store-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.store-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.store-card:hover .image-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.store-card:hover .store-image img {
  transform: scale(1.05);
}

.store-content {
  padding: 20px;
  text-align: center;
}

.store-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #422869;
}

.store-divider {
  width: 40px;
  height: 3px;
  background: #422869;
  margin: 15px auto;
}

.btn-view {
  color: #422869;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.store-card:hover .btn-view {
  color: #422869;
}

.btn-view i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.store-card:hover .btn-view i {
  transform: translateX(5px);
}

.no-stores-message {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stores-info-section {
  padding: 80px 0;
  padding-bottom: 0;
  background-color: #f8f9fa;
}

.info-content {
  padding: 20px;
  margin-bottom: 30px;
}

.info-content h2 {
  margin-bottom: 20px;
  color: #422869;
}

.info-content p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.info-details {
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: #422869;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 18px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  box-sizing: border-box;
}

.info-item span {
  font-size: 16px;
  color: #333;
}

.map-container {
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos para a página de detalhes da loja */
.store-detail-banner {
  height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/banner2.jpg");
  background-size: cover;
  background-position: center;
}

.store-info-section {
  padding: 80px 0;
  background-color: #fff;
}

.store-detail-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.store-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.store-detail-header h3 {
  font-size: 24px;
  color: #422869;
  margin: 0;
}

.store-social {
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #422869;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #422869;
  transform: translateY(-5px);
}

.contact-item {
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-detail i {
  width: 40px;
  height: 40px;
  background: #422869;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 18px;
}

.contact-detail span {
  font-size: 16px;
  color: #333;
}

.store-description {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  line-height: 1.8;
}

.store-gallery-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.store-gallery {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 40, 105, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay-content i {
  font-size: 36px;
  color: #fff;
}

.no-photos-message {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-cta-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.back-to-stores {
  text-align: center;
}

.back-to-stores .btn {
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 50px;
  background-color: #422869;
  border-color: #422869;
  transition: all 0.3s ease;
}

.back-to-stores .btn:hover {
  background-color: #422869;
  border-color: #422869;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.back-to-stores .btn i {
  margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .stores-banner,
  .store-detail-banner {
    height: 300px;
  }

  .stores-banner h1,
  .store-detail-banner h1 {
    font-size: 36px;
  }

  .stores-banner .lead,
  .store-detail-banner .lead {
    font-size: 18px;
  }

  .stores-intro-section,
  .stores-info-section,
  .store-info-section,
  .store-gallery-section {
    padding: 50px 0;
  }

  .store-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .store-social {
    margin-top: 20px;
    justify-content: center;
  }

  .info-content {
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .map-container {
    margin-top: 30px;
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .stores-banner h1,
  .store-detail-banner h1 {
    font-size: 28px;
  }

  .stores-banner .lead,
  .store-detail-banner .lead {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .store-detail-card {
    padding: 20px;
  }
}

/* Estilos para a página de Contato */
.contact-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/banner1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.contact-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.contact-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.contact-info-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover .card-icon {
  background: var(--secondary-color);
}

.contact-info-card .card-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-info-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-info-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-color);
}

.contact-map-section {
  padding: 60px 0;
}

.contact-form-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-form-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-form-container .form-group {
  margin-bottom: 25px;
}

.contact-form-container label {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.contact-form-container .form-control {
  height: auto;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-form-container .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(66, 32, 105, 0.25);
}

.contact-form-container textarea.form-control {
  resize: none;
  min-height: 150px;
}

.contact-form-container .form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.contact-form-container .btn {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-form-container .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-form-container .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.contact-form-container .btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.contact-form-container .btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.contact-form-container .g-recaptcha {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-banner {
    height: 300px;
  }

  .contact-banner h1 {
    font-size: 36px;
  }

  .contact-banner .lead {
    font-size: 18px;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 50px 0;
  }

  .contact-form-container {
    padding: 25px;
  }

  .contact-form-container .form-buttons {
    flex-direction: column;
  }

  .contact-form-container .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .contact-banner h1 {
    font-size: 28px;
  }

  .contact-banner .lead {
    font-size: 16px;
  }

  .contact-info-card {
    padding: 20px;
  }
}

/* Estilos para a página de Galeria */
.gallery-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/banner1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.gallery-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.gallery-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.gallery-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.gallery-main-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.modern-gallery {
  margin-top: 40px;
}

.modern-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modern-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.modern-gallery-item:hover img {
  transform: scale(1.1);
}

.modern-gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 32, 105, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.modern-gallery-item .overlay-content {
  text-align: center;
  color: #fff;
  padding: 20px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.modern-gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.modern-gallery-item .overlay-content i {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}

.modern-gallery-item .overlay-content h4 {
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.no-photos-message {
  text-align: center;
  padding: 50px 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 30px 0;
  color: #666;
}

.no-photos-message i {
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-photos-message h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.no-photos-message p {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-banner {
    height: 300px;
  }

  .gallery-banner h1 {
    font-size: 36px;
  }

  .gallery-banner .lead {
    font-size: 18px;
  }

  .gallery-main-section {
    padding: 50px 0;
  }

  .modern-gallery-item img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .gallery-banner h1 {
    font-size: 28px;
  }

  .gallery-banner .lead {
    font-size: 16px;
  }

  .modern-gallery-item {
    margin-bottom: 20px;
  }

  .modern-gallery-item img {
    height: 200px;
  }
}

/* Explore Section - Novos estilos para substituir os cards tradicionais */
.explore-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  background: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
}

.explore-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(66, 32, 105, 0.15);
}

.explore-image {
  position: relative;
  width: 40%;
  overflow: hidden;
}

.explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
}

.explore-item:hover .explore-image img {
  transform: scale(1.1);
}

.explore-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(66, 32, 105, 0.1),
    rgba(66, 32, 105, 0.6)
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-item:hover .explore-overlay {
  opacity: 1;
}

.explore-content {
  padding: 25px;
  position: relative;
  z-index: 1;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.explore-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.explore-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.btn-explore {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  justify-content: center;
}

.btn-explore:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.btn-explore:hover {
  color: var(--secondary-color);
}

.btn-explore:hover:after {
  width: 100%;
}

.btn-explore i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments for explore cards */
@media (max-width: 991px) {
  .explore-content h3 {
    font-size: 20px;
  }

  .explore-content p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .explore-item {
    flex-direction: column;
  }

  .explore-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
  }

  .explore-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 250px;
  }

  .explore-content {
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .explore-overlay {
    background: linear-gradient(
      to bottom,
      rgba(66, 32, 105, 0.1),
      rgba(66, 32, 105, 0.6)
    );
  }
}

@media (max-width: 480px) {
  .explore-image {
    min-height: 220px;
  }

  .explore-image img {
    max-height: 220px;
  }

  .explore-content {
    padding: 15px;
  }

  .explore-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .explore-content p {
    margin-bottom: 15px;
  }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Estilos para seção de cardápio */
.cardapio-section {
  padding: 80px 0;
  background: #fff;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.menu-item:hover {
  /* transform: translateY(-2px); */
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.item-info h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.item-info p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.item-price {
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  white-space: nowrap;
  margin-left: 20px;
}

/* Estilos para galeria */
.galeria-section {
  padding: 80px 0;
}

.gallery-grid {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 32, 105, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h4 {
  color: white;
  font-size: 18px;
  text-align: center;
}

/* Menu ativo baseado na seção */
.nav-menu li a.active {
  /* color: var(--secondary-color); */
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-price {
    margin-left: 0;
    margin-top: 10px;
  }

  .gallery-item img {
    height: 200px;
  }
}
/* Ajustes para espaçamento das seções */
section {
  scroll-margin-top: 80px; /* Compensa a altura do header fixo */
}

/* Melhorar o visual do botão explore */
.btn-explore {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white !important;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 600;
}

.btn-explore:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  color: white !important;
}

/* Ajustar altura das imagens da galeria para placeholder */
.gallery-item img {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder para imagens que não existem */
.gallery-item img[src*="galeria-"] {
  position: relative;
}

.gallery-item img[src*="galeria-"]:after {
  content: "Imagem em breve";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 14px;
}

/* --- Cardápio: Hero com banner3 e Dialog --- */
.cardapio-section {
  position: relative;
  overflow-y: visible;
  /* imagem de fundo por trás de toda a seção, inclusive do dialog */
  background: url("../images/banner3.jpg") center/cover no-repeat;
}

/* .cardapio-hero agora só controla altura/spacing do topo */
.cardapio-hero {
  position: relative;
  min-height: 320px; /* altura do “hero” */
}

/* Remova/garanta que não escureça de novo aqui */
.cardapio-hero::after {
  content: none;
}

.cardapio-header {
  position: relative;
  color: #fff;
  padding: 80px 0 110px; /* espaço extra para o dialog “invadir” */
}

.cardapio-subtitle {
  opacity: 0.9;
}

/* Container que “sobe” por cima do banner */
.menu-dialog {
  position: relative;
  margin-top: -80px; /* controla a sobreposição */
  z-index: 2;
  margin-bottom: 40px;
}

/* Cartão principal do cardápio */
.menu-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
}

/* Tabs (opcional) */
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.menu-tabs button {
  border: 1px solid #e7e7e7;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.menu-tabs button.active {
  background: #f5f2ec;
  color: #8a6a3d;
  border-color: #e6d9c2;
}

/* Grid do cardápio */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card {
    padding: 18px;
    border-radius: 12px;
  }
}

/* Item do cardápio */
.menu-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  background: #fff;
}
.menu-item:hover {
  /* transform: translateY(-3px); */
  border-color: #e8e2d8;
}

.menu-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}

.menu-info {
  flex: 1;
}

.menu-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: #1d1d1f;
}

.menu-desc {
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 0.95rem;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.menu-price {
  font-weight: 800;
  color: #b57d2a; /* tom “parrilla” */
  font-size: 1.05rem;
}

.menu-tag {
  font-size: 0.75rem;
  background: #f5f2ec;
  color: #8a6a3d;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* --- Modal do Cardápio --- */
.menu-modal[aria-hidden="true"] {
  display: none;
}
.menu-modal[aria-hidden="false"] {
  display: block;
}

/* Overlay com leve blur */
.menu-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1000;
}

/* Container/dialog */
.menu-modal__dialog {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 1001;
}

/* Conteúdo com borda, sombra e animação (estilo shadcn) */
.menu-modal__content {
  position: relative; /* necessário p/ o botão absoluto */
  background: hsl(0 0% 100% / 0.98);
  border: 1px solid hsl(0 0% 90% / 1);
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: min(980px, 100%);
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;

  /* animação de entrada */
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.menu-modal[aria-hidden="false"] .menu-modal__content[data-anim="container"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Botão de fechar dentro, no canto superior direito */
.menu-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 8px;
  border: 1px solid #e5e7eb; /* shadcn-like border */
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.menu-modal__close:hover {
  background: #f5f5f5;
}
.menu-modal__close:active {
  background: #f0f0f0;
}
.menu-modal__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b57d2a; /* foco acessível */
  border-color: #d1d5db;
}

/* Media e info (mantidos) */
.menu-modal__media {
  position: relative;
  background: #000;
}
.menu-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-modal__info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-modal__info h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
}
.menu-modal__desc {
  color: #4b5563;
  line-height: 1.55;
}
.menu-modal__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.menu-modal__price {
  font-weight: 900;
  color: #b57d2a;
  font-size: 1.25rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-modal__content {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
    border-radius: 12px;
  }
  .menu-modal__info {
    padding: 16px;
  }
  .menu-modal__close {
    top: 8px;
    right: 8px;
    z-index: 10000;
  }
}

/* --- Galeria na home com banner4 --- */
.galeria-section.bg-dark-image {
  position: relative;
  padding: 60px 0 70px;
  background: url("../images/banner4.jpg") center/cover no-repeat;
  overflow: hidden;
}

.galeria-section .container,
.galeria-section .section-header,
.galeria-section .subtitle {
  position: relative;
  z-index: 1;
}
.galeria-section .section-header h2 {
  color: #fff;
}
.galeria-section .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid responsivo */
.home-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 992px) {
  .home-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .home-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Item */
.home-gallery-item {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3; /* thumbs picsum nessa proporção */
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.home-gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  font-size: 22px;
}
.home-gallery-item:hover img {
  transform: scale(1.04);
}
.home-gallery-item:hover .home-gallery-hover {
  opacity: 1;
}

/* Ajusta as bordas/ornamento claro por cima do overlay */
.galeria-section .ornament {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.05));
}

/* --- Contato (Home) --- */
.contact-section {
  background: #fff;
  padding: 60px 0 70px;
}

.contact-section .section-header h2 {
  color: #1f2937;
}
.contact-section .subtitle {
  color: #6b7280;
}

/* Mapa Google */
.contact-map iframe {
  width: 100%;
  height: 380px; /* ajuste se quiser 420px */
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: #eee;
}

/* Cards (sem animação) com tons dourados */
.contact-cards--home {
  margin-top: 18px;
}

.contact-card.gold {
  background: #fff;
  border: 1px solid #eadfc9; /* borda suave dourada */
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-card.gold .card-icon {
  color: #b57d2a; /* dourado do projeto */
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-card.gold .card-content h4 {
  margin: 0 0 6px;
  font-weight: 800;
  color: #1f2937;
}

.contact-card.gold .card-content p {
  margin: 0 0 2px;
  color: #6b7280;
}

.contact-card.gold .contact-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: #b57d2a;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  /* sem animação/transition – mantém direto */
}

.contact-card.gold .card-icon {
  background-color: #b57d2a;
}

@media (max-width: 576px) {
  .contact-map iframe {
    height: 300px;
  }
}
/* até tablet */
@media (max-width: 991px) {
  .hero-banner .carousel-caption {
    bottom: 14%;
    margin: 0; /* margin não ajuda em absolute */
    padding: 12px 16px; /* respiro lateral/vertical */
    width: auto;
  }
  .hero-banner .carousel-indicators {
    bottom: 10px;
  }
}

/* telas pequenas */
@media (max-width: 576px) {
  .hero-banner .carousel-caption {
    bottom: 10%;
    padding: 0px 14px;
  }
  .hero-banner .carousel-caption h2 {
    font-size: 22px;
    line-height: 1.2;
  }
  .hero-banner .carousel-caption p {
    font-size: 14px;
  }
}
/* Menu PDF CTA */
.menu-cta {
  padding: 30px 0 50px;
}
.menu-cta__card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px 22px;
  backdrop-filter: blur(10px);
}
.menu-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 400px at 10% -10%,
      rgba(208, 138, 42, 0.2),
      transparent 60%
    ),
    radial-gradient(
      900px 300px at 90% 120%,
      rgba(176, 96, 16, 0.18),
      transparent 60%
    );
  pointer-events: none;
}
.menu-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #e4e4e7;
}
.menu-cta__title {
  margin: 0 0 8px;
  font-size: 26px;
  color: #fff;
}
.menu-cta__desc {
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}
.menu-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.menu-cta__btn {
  min-width: 180px;
}

/* Ajustes responsivos */
@media (max-width: 576px) {
  .menu-cta__title {
    font-size: 22px;
  }
  .menu-cta__desc {
    font-size: 14px;
  }
  .menu-cta__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Botões dedicados do Cardápio PDF */
.btn-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px; /* borda consistente em ambos */
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  line-height: 1.1;
  min-width: 180px;
  border: 1px solid transparent;
}

/* Botão de visualizar: alto contraste no fundo escuro */
.btn-menu--view {
  background: rgba(34, 34, 38, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-menu--view:hover,
.btn-menu--view:focus {
  background: rgba(46, 46, 52, 0.95);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  transform: translateY(-1px);
}

/* Botão de download: sólido e sem efeito “azul” */
.btn-menu--download {
  background: var(--primary-color); /* #b06010 */
  color: #1b1209; /* texto escuro para contraste no dourado */
  border-color: rgba(0, 0, 0, 0.12);
}
.btn-menu--download:hover,
.btn-menu--download:focus {
  background: #9a530e; /* leve escurecida no hover */
  color: #1b1209;
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* Remover qualquer sublinhado/azul padrão de link */
.btn-menu:visited,
.btn-menu:active {
  color: inherit;
  text-decoration: none;
}

/* Estado ativo (feedback sutil) */
.btn-menu:active {
  transform: translateY(0);
}

/* Mobile: largura cheia se necessário */
@media (max-width: 576px) {
  .btn-menu {
    width: 100%;
    max-width: 320px;
  }
}

/* =============================
   Humana Mind Landing
   ============================= */

.hm-hero {
  position: relative;
  padding: 32px 0 64px;
  background-color: #004321;
  background-size: cover;
  background-position: center;
  color: #f7f7f5;
  display: flex;
  align-items: center;
}

.hm-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 0, 0, 0.35),
      transparent 55%
    );
  pointer-events: none;
}

.hm-hero__inner {
  position: relative;
  z-index: 1;
}

.hm-hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hm-hero__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hm-hero__logo img {
  max-height: 80px;
  height: auto;
  width: auto;
}

.hm-hero__brand-separator {
  width: 2px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
}

.hm-hero__brand-text {
  color: #f7f7f5;
}

.hm-hero__brand-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.hm-hero__brand-list li {
  font-size: 0.95rem;
}

.hm-hero__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}

.hm-hero__nav a {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f7e6c2;
  text-decoration: none;
  position: relative;
  font-size: 1.1rem;
}

.hm-hero__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #cfa253;
  transition: width 0.2s ease-out;
}

.hm-hero__nav a:hover::after,
.hm-hero__nav a:focus::after {
  width: 100%;
}

.hm-hero__content {
  margin-top: 56px;
}

.hm-hero__title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #f9f5ee;
}

.hm-hero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 1rem;
}

.hm-hero__bullets li::before {
  content: "•";
  margin-right: 6px;
  color: #cfa253;
}

.hm-section {
  padding: 72px 0;
  background-color: #f5f4f1;
}

.hm-section__header {
  margin-bottom: 40px;
}

.hm-section__title {
  font-size: 2rem;
  color: #19432b;
  margin-bottom: 8px;
}

.hm-section__subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: #55534c;
}

.hm-section--autocon {
  position: relative;
  padding: 72px 0;
  background: #004321 url("../images/bg-section2.png") center/cover no-repeat;
  min-height: 700px;
  color: #f9f5ee;
}

/* @media (max-width: 992px) {
  .hm-section--autocon {
    background-position: center right;
    background-size: cover;
  }
} */

.hm-autocon {
  max-width: 1200px;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

/* Anula o ::before/::after padrão do .container do Bootstrap só aqui */
.container.hm-autocon::before,
.container.hm-autocon::after {
  content: none;
  display: none;
}

.hm-autocon__col {
  display: flex;
}

.hm-autocon__col--left {
  align-items: center;
}

.hm-autocon__title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #f9e0a2;
  margin-bottom: 18px;
}

.hm-autocon__text {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f3efe5;
  margin-bottom: 32px;
}

.hm-autocon__icons {
  display: flex;
  gap: 16px;
}

.hm-autocon-icon {
  width: 68px;
  height: 68px;
  background: #f0c665;
  border-radius: 0 24px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.hm-autocon-icon img {
  max-width: 70%;
  max-height: 70%;
}

@media (max-width: 768px) {
  .hm-section__title {
    font-size: 1.6rem;
  }

  .hm-autocon__title {
    font-size: 2rem;
  }

  .hm-praticas__title {
    font-size: 2.1rem;
  }

  .hm-jornada__title {
    font-size: 1.9rem;
  }

  .hm-publico-item__title {
    font-size: 1rem;
  }
}

.hm-section--principios {
  position: relative;
  background-color: #ffffff;
  background-image: url("../images/bg-texture.png");
  background-repeat: repeat;
  background-position: top left;
}

.hm-principios-banner {
  margin: 0 auto 24px;
  max-width: 900px;
}

.hm-principios-banner__img {
  width: 100%;
  padding-top: 44%; /* proporção aproximada do banner */
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hm-principios-list {
  list-style: none;
  padding: 0;
  margin: 8px auto 0;
  max-width: 920px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #174c30;
  font-weight: 500;
}

.hm-principios-list li {
  display: flex;
  align-items: center;
  margin: 0; /* sem margin lateral aqui, vamos controlar via bullet */
}

.hm-principios-list li + li::before {
  content: "•";
  margin: 0 6px;
  color: #174c30;
  font-size: 1.5rem;
}

.hm-section--mv {
  position: relative;
  background-color: #f5f4f1;
  /* textura de fundo suave */
  background-image: url("../images/bg-texture.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hm-section--mv::before {
  content: "";
  position: absolute;
  inset: 0;
  /* marca d'água com a árvore + leve gradiente para suavizar */
  background: url("../images/watermark.png") center/contain no-repeat;
  margin-top: 2rem;
}

.hm-section--mv > .container {
  position: relative;
  z-index: 1;
}

.hm-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
  margin-bottom: 40px;
}

.hm-mv-item {
  text-align: center;
}

.hm-mv-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  background: #174c30;
  border-radius: 0px 32px 0px 32px; /* formato com cantos direitos mais arredondados */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

.hm-mv-icon img {
  max-width: 70%;
  max-height: 70%;
}

.hm-mv-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #19432b;
  margin-bottom: 12px;
}

.hm-mv-text {
  color: #55534c;
  line-height: 1.5;
}

.hm-mv-line {
  position: relative;
  max-width: 800px;
  height: 4px;
  margin: 24px auto 0;
}

.hm-mv-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  background-color: #cfa253;
  transform: translateY(-50%);
}

.hm-mv-dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #cfa253;
  transform: translate(-50%, -50%);
}

.hm-mv-dot:nth-child(1) {
  left: 0%;
}

.hm-mv-dot:nth-child(2) {
  left: 50%;
}

.hm-mv-dot:nth-child(3) {
  left: 100%;
}

.hm-whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out;
}

.hm-whatsapp-btn i {
  color: #ffffff;
  font-size: 1.25rem;
}

.hm-whatsapp-btn:hover,
.hm-whatsapp-btn:focus {
  background-color: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: #ffffff;
}

.hm-whatsapp-btn__text {
  white-space: nowrap;
}

@media (max-width: 992px) {
  .hm-hero__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hm-hero__content {
    margin-top: 40px;
  }

  .hm-mv-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .hm-hero {
    padding: 18px 0 32px;
  }

  .hm-hero__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* LOGO + LISTA: mantém lado a lado, mas menores */
  .hm-hero__brand {
    gap: 12px; /* diminui o espaço entre logo, linha e lista */
  }

  .hm-hero__logo img {
    max-width: 190px; /* diminui a largura da logo no mobile */
    height: auto;
  }

  .hm-hero__brand-separator {
    margin: 0 12px; /* linha vertical mais próxima da logo/lista */
  }

  .hm-hero__brand-list {
    font-size: 0.9rem; /* texto menor */
    line-height: 1.25;
  }

  .hm-hero__brand-list li {
    font-size: 0.8rem;
  }

  .hm-hero__brand-list li + li {
    margin-top: 2px;
  }

  /* MENU: mantém em linha, mas mais compacto */
  .hm-hero__nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    column-gap: 12px;
    row-gap: 4px;
  }

  .hm-hero__nav a {
    font-size: 0.9rem; /* texto do menu menor */
    white-space: nowrap;
  }

  /* se usar o título em algum lugar */
  .hm-hero__title {
    font-size: 1.8rem;
  }

  .hm-mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hm-whatsapp-btn__text {
    display: none;
  }

  .hm-whatsapp-btn {
    padding: 12px 13px;
    border-radius: 50%;
  }
}

.hm-section--praticas {
  position: relative;
  padding: 72px 0;
  background-color: #004321;
  background-image: url("../images/bg-section4.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  color: #f9f5ee;
}

.hm-praticas {
  max-width: 1200px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
}

.container.hm-praticas::before,
.container.hm-praticas::after {
  content: none;
  display: none;
}

.hm-praticas__col {
  display: flex;
}

.hm-praticas__col--content {
  justify-content: flex-end;
}

.hm-praticas__content {
  max-width: 480px;
}

.hm-praticas__kicker {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4ae66;
}

.hm-praticas__title {
  font-size: 2.5rem;
  line-height: 1.1;
  color: #c4ae66;
  margin-bottom: 16px;
}

.hm-praticas__highlight {
  display: inline-block;
  background-color: #c4ae66;
  color: #174c30;
  padding: 10px 22px;
  border-radius: 0 24px 0 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hm-praticas__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: #f9f5ee;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.hm-praticas__list li {
  font-size: 1rem;
}

.hm-praticas__list li + li {
  margin-top: 4px;
}

.hm-praticas__list li::marker {
  color: #c4ae66;
}

@media (max-width: 992px) {
  .hm-section--praticas {
    background-position: center;
  }

  .hm-praticas {
    grid-template-columns: minmax(0, 1fr);
  }

  .hm-praticas__col--content {
    justify-content: flex-start;
  }
}

.hm-section--jornada {
  position: relative;
  padding: 72px 0;
  background-color: #004321;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  color: #f9f5ee;
}

.hm-section--jornada {
  background-color: #004321;
}

.hm-section--jornada {
  position: relative;
}

.hm-section--jornada {
  background-color: #004321;
}

.hm-jornada {
  max-width: 1200px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.container.hm-jornada::before,
.container.hm-jornada::after {
  content: none;
  display: none;
}

.hm-jornada__card {
  max-width: 480px;
}

.hm-jornada__card-inner {
  position: relative;
  padding: 24px 26px 26px;
  border-radius: 0px 32px 0px 32px;
  background: rgba(0, 60, 32, 0.82);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(196, 174, 102, 0.85);
  backdrop-filter: blur(10px);
}

.hm-jornada__kicker {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #f3e3b5;
}

.hm-jornada__title {
  font-size: 2.1rem;
  line-height: 1.15;
  color: #f9e0a2;
  margin-bottom: 16px;
}

.hm-jornada__title span {
  font-size: 1rem;
}

.hm-jornada__highlight {
  display: inline-block;
  background-color: #c4ae66;
  color: #174c30;
  padding: 10px 22px;
  border-radius: 0 24px 0 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hm-jornada__group + .hm-jornada__group {
  margin-top: 12px;
}

.hm-jornada__group-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.hm-jornada__list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 0.98rem;
}

.hm-jornada__list li + li {
  margin-top: 3px;
}

.hm-jornada__list li::marker {
  color: #f9f5ee;
}

.hm-section--publicos {
  position: relative;
  background-color: #f5f4f1;
  background-image: url("../images/bg-texture.png");
  background-repeat: repeat;
  background-position: top left;
}

.hm-publicos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.hm-publico-item {
  text-align: center;
}

.hm-publico-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #19432b;
  margin-bottom: 8px;
}

.hm-publico-item__image {
  display: block;
  width: 100%;
  height: auto;
}

.hm-publicos__subtitle {
  margin: 8px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #174c30;
}

@media (max-width: 992px) {
  .hm-publicos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hm-section--pessoas {
  position: relative;
  padding: 72px 0;
  background-color: #004321;
  background-image: url("../images/bg-section6-2.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  color: #f9f5ee;
}

.hm-pessoas {
  max-width: 1200px;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 32px;
}

.container.hm-pessoas::before,
.container.hm-pessoas::after {
  content: none;
  display: none;
}

.hm-pessoas__col {
  display: flex;
}

.hm-pessoas__col--content {
  justify-content: flex-start;
}

.hm-pessoas__content {
  max-width: 520px;
}

.hm-pessoas__title {
  font-size: 2.4rem;
  line-height: 1.15;
  color: #f9e0a2;
  margin-bottom: 18px;
}

.hm-pessoas__highlight {
  display: inline-block;
  background-color: #c4ae66;
  color: #174c30;
  padding: 10px 22px;
  border-radius: 0 24px 0 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hm-pessoas__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: #c4ae66;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.hm-pessoas__list li {
  font-size: 1rem;
}

.hm-pessoas__list li + li {
  margin-top: 4px;
}

.hm-pessoas__list li::marker {
  color: #c4ae66;
}

.hm-pessoas__photo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* width: 45%; */
  max-width: 640px;
  height: 70%;
}

@media (max-width: 992px) {
  .hm-pessoas {
    grid-template-columns: minmax(0, 1fr);
  }

  .hm-pessoas__photo {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 24px;
    height: auto;
    object-fit: cover;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hm-section--pessoas {
    padding: 56px 0 48px;
  }

  .hm-pessoas {
    min-height: auto;
    gap: 24px;
  }

  .hm-pessoas__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hm-pessoas__highlight {
    font-size: 0.95rem;
  }

  .hm-pessoas__list {
    font-size: 0.98rem;
  }
}

.hm-section--mensagem {
  padding: 0;
}

.hm-mensagem-banner {
  position: relative;
  overflow: hidden;
  height: 810px; /* controla quanto da parte de baixo aparece */
}

.hm-mensagem-banner__image {
  width: 100%;
  height: 104%;
  display: block;
  object-fit: cover;
  object-position: center top; /* corta um pouco a parte de baixo */
}

.hm-mensagem-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 115px; /* mais perto da árvore, ajuste fino se precisar */
  text-align: center;
  color: #c4ae66; /* amarelo mais próximo da arte */
}

.hm-mensagem__title {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.4rem;
}

.hm-mensagem__subtitle {
  font-size: 1.4rem;
  margin: 0 0 1.4rem;
}

.hm-mensagem__line {
  width: 260px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #c4ae66, transparent);
  border-radius: 999px;
}

@media (max-width: 991px) {
  .hm-mensagem-text {
    bottom: 80px;
  }

  .hm-mensagem__title {
    font-size: 1.8rem;
  }

  .hm-mensagem__subtitle {
    font-size: 1.2rem;
  }

  .hm-mensagem__line {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .hm-mensagem-text {
    bottom: 30px;
    padding: 0 16px;
  }

  .hm-mensagem__title {
    font-size: 1.6rem;
  }

  .hm-mensagem__subtitle {
    font-size: 1.1rem;
  }

  .hm-mensagem__line {
    width: 140px;
  }
}
