/* modern-style.css - Estilos modernos para o Shopping das Pedras */

.menu-store .search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
}

.menu-store .header-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
}
.menu-store .header-search input {
  width: 100%;
  border: 0;
  outline: none;
  padding: 10px 12px;
  background: transparent;
  color: #111;
  height: 20px;
}
.menu-store .header-search button {
  background: transparent;
  border: 0;
  color: #111;
  font-size: 18px;
}

/* Toggle between desktop and mobile search forms */
.header-search-mobile {
  display: none !important;
}
.header-search-desktop {
  display: flex !important;
}

@media (max-width: 991px) {
  .header-search-desktop {
    display: none !important;
  }
  .header-search-mobile {
    display: flex !important;
    width: 100%;
    margin-top: 0px !important;
    margin-bottom: 8px !important;
  }
}

.menu-store .header-icons {
  display: inline-flex;
  gap: 8px;
}
.menu-store .header-icons .icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
}

/* Hide mobile hamburger on desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hide desktop dropdown trigger on mobile */
@media (max-width: 991px) {
  .menu-store .header-icons .dropdown-trigger {
    display: none !important;
  }
}

/* Ensure desktop dropdown trigger matches mobile icon size */
.main-nav-desktop .dropdown-trigger.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.menu-store .category-nav {
  background: transparent;
  padding: 0;
}
.menu-store .category-nav .category-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-store .category-nav .category-list a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Ícone da categoria acima do texto */
.menu-store .category-nav .category-list .category-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.menu-store .category-nav .category-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Hamburguer: esconder menu colapsado por padrão e mostrar quando aberto */
.main-header .main-nav .nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header.menu-open .main-nav .nav-menu {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.main-header .main-nav a {
  color: #fff;
  text-decoration: none;
}

/* Desktop/Mobile nav visibility */
.main-nav-desktop {
  display: none;
}
.main-nav-mobile {
  display: block;
}

@media (min-width: 992px) {
  .main-nav-desktop {
    display: block;
  }
  .main-nav-mobile {
    display: none;
  }
}

/* Desktop dropdown (Shadcn-inspired) */
.main-nav-desktop .desktop-dropdown {
  position: relative;
  display: inline-block;
}
.main-nav-desktop .dropdown-trigger {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: 10px;
  backdrop-filter: saturate(180%) blur(6px);
  transition: background-color 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.main-nav-desktop .dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.main-nav-desktop .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-width: 200px;
  padding: 6px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transform-origin: top right;
  transform: scale(0.98);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.main-nav-desktop .dropdown-content li {
  list-style: none;
}
.main-nav-desktop .dropdown-content a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}
.main-nav-desktop .dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.main-nav-desktop .desktop-dropdown.open .dropdown-content {
  display: block;
  transform: scale(1);
  opacity: 1;
}

/* Ensure mobile nav links are uppercase as a fallback */
@media (max-width: 991px) {
  .main-nav-mobile .nav-menu a {
    text-transform: uppercase;
  }
  .menu-store .logo img {
    margin-right: 0 !important;
    display: block;
  }
  /* Stack form and icons; keep form full width and icons to the right */
  .menu-store .search-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .menu-store .header-icons {
    justify-self: end;
  }
}

@media (max-width: 991px) {
  .main-header .header-content {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .menu-store .logo {
    justify-self: center;
  }
}

.menu-store .logo img {
  width: clamp(200px, 30vw, 360px);
  height: auto;
}

.menu-store {
  background-color: #000000;
}

.main-header .header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  align-items: center;
}

.menu-store .header-right {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 4px;
  --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: "Buckaroo", sans-serif;

  --font-secondary: "Montserrat", 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 Garimpo) */

.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 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;
}

.contact-social .facebook:hover {
  background: rgb(59, 89, 152);
  opacity: 0.9;
}
.contact-social .instagram:hover {
  background: #ff0069;
  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);
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
  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;
}

/* 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: 40px 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/baixe_catalago.png") 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;
  }
}

/* ===== Header (menu) complementos ===== */
/* Faixa superior fina (texto entre setas) */
.top-strip {
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.top-strip .strip-arrow {
  opacity: 0.9;
}
.top-strip .strip-text {
  letter-spacing: 0.3px;
}

/* Busca central do header */
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 12px;
  min-width: 260px;
  /* max-width: 560px; */
  flex: 1 1 auto;
}
.header-search input {
  border: none;
  outline: none;
  background: transparent;
  padding: 6px 8px;
  font-size: 14px;
  color: #111;
  width: 100%;
}
.header-search button {
  border: none;
  outline: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  width: 42px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.header-search button:hover {
  background: var(--secondary-color);
}

/* Ícones à direita (menu, user, cart) */
.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, transform 0.1s ease;
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-1px);
}
.icon-btn:active {
  transform: translateY(0);
}

/* Barra de categorias (ícones + rótulos) */
.category-nav {
  margin-top: 8px;
}
.category-list {
  list-style: none;
  margin: 0;
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.category-list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
.category-list li a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transform: translateY(-1px);
}
.category-list li a i {
  font-size: 14px;
  opacity: 0.95;
}
.category-list li a span {
  letter-spacing: 0.2px;
}

/* Mobile: compatível com Bootstrap collapse no #main-menu */
@media (max-width: 991px) {
  .top-strip {
    position: relative;
  }
  .header-search {
    order: 3;
    width: 100%;
    margin: 8px 0 0;
  }
  .category-nav {
    display: none;
  }

  #main-menu {
    background-color: #141414;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
  }
  #main-menu.collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  #main-menu.collapse.in {
    /* Bootstrap 3 */
    max-height: 500px;
  }
  #main-menu.show {
    /* Bootstrap 4/5 */
    display: block;
    max-height: 500px;
  }
  #main-menu .nav-menu {
    flex-direction: column;
    padding: 20px;
  }
  #main-menu .nav-menu li {
    margin: 10px 0;
  }
}

.category-section {
  padding: 25px 0;
  background: #fff;
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.category-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 40px;
  color: #111;
  margin: 0;
}
.category-more {
  color: #757575;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.category-more:hover {
  color: #111;
  text-decoration: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.product-thumb {
  background: #f5f5f5;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb img {
  width: 100%;
  height: 75%;
  object-fit: contain;
}

.product-body {
  padding: 14px;
}
.product-title {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
}
.product-code {
  font-size: 12px;
  color: #9aa0a6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ==== Nossa Essência (reestiliza a antiga galeria) ==== */
.essencia-section {
  background: #000;
  color: #fff;
  padding: 56px 0 80px;
}

.essencia-hero {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.essencia-desc {
  color: #e5e7eb;
  opacity: 0.95;
  line-height: 1.6;
  margin: 0 auto 18px;
}

.btn-essencia {
  display: inline-block;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.btn-essencia:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Card branco sobre o fundo preto */
.essencia-card-wrap {
  margin-top: 28px;
}
.essencia-card {
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.essencia-card__content {
  background: #fff;
  border-radius: 10px;
  padding: 32px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.essencia-lead {
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.25;
  margin: 0 0 18px;
  text-align: center;
}
.essencia-lead .hl {
  color: #111;
  font-weight: 900;
}

.essencia-kpi {
  font-weight: 900;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  margin: 4px 0;
  text-align: center;
}
.essencia-kpi-sub {
  font-weight: 300;
  letter-spacing: 0.06em;
  font-size: clamp(22px, 5vw, 48px);
  text-align: center;
}

.essencia-card__media {
  background: #000;
  display: flex;
  align-items: center; /* center image vertically */
  justify-content: center;
  border-radius: 10px; /* ensure rounded corners */
  overflow: hidden; /* clip inner image to radius */
  margin-top: 30px;
  margin-bottom: 30px;
}
.essencia-card__media img {
  width: 100%;
  height: auto; /* desktop: keep natural ratio */
  object-fit: cover; /* manter cheio como no layout */
  margin: 0; /* avoid pushing image downward inside clipped container */
  display: block; /* remove baseline gap */
}

/* Responsivo */
@media (max-width: 992px) {
  .essencia-card {
    grid-template-columns: 1fr;
  }
  .essencia-card__media {
    height: 240px; /* altura quando empilha */
  }
  .essencia-card__media img {
    height: 100%; /* mobile: fill container height */
  }
}

/* ==== Nossa Essência – ajustes de separação e badge ==== */
.essencia-section {
  position: relative; /* para suportar o ::before */
  padding-top: 73px; /* mais espaço no topo para o recuo branco + badge */
}
.essencia-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75px; /* faixa branca entre as seções */
  background: #fff;
  z-index: 0;
}

.essencia-hero {
  position: relative;
  z-index: 1;
}

/* Badge no estilo da referência: cinza, texto branco, sobrepondo a faixa branca */
.essencia-badge {
  background: #9e9e9e; /* cinza da referência */
  color: #fff;
  border-radius: 6px;
  padding: 0px 72px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: translateY(
    -32px
  ); /* puxa o badge para cima, sobre a faixa branca */
  margin-bottom: 0; /* elimina espaço extra abaixo do badge */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  display: inline-block;
  text-transform: uppercase;
  font-size: 42px;
}

@media (max-width: 768px) {
  .essencia-section {
    padding-top: 72px;
  }
  .essencia-section::before {
    height: 36px;
  }
  .essencia-badge {
    transform: translateY(-22px);
    padding: 10px 22px;
  }
}

/* ==== Logística própria (Home) ==== */
.logistica-section {
  background: #fff;
  padding: 56px 0 80px;
}
.logistica-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 28px;
}
.logistica-copy {
  color: #111;
}

.logistica-title {
  margin: 0 0 10px;
  line-height: 0.9;
}
.logistica-title .strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 900;
  color: #111;
  font-size: clamp(42px, 6vw, 72px);
}
.logistica-title .light {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.02em;
  font-size: clamp(38px, 6vw, 66px);
}

.logistica-desc {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin: 10px 0 0;
}

.logistica-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logistica-media img {
  width: 100%;
  max-width: 760px; /* controla a largura do caminhão */
  height: auto;
  object-fit: contain; /* preserva proporção como na referência */
}

/* Responsivo */
@media (max-width: 992px) {
  .logistica-grid {
    grid-template-columns: 1fr;
  }
  .logistica-copy {
    text-align: center;
  }
  .logistica-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==== Contato (faixa preta + newsletter) ==== */
.contact-section {
  background: #000;
  color: #fff;
  padding: 40px 0 30px;
}
.contact-hero {
  padding: 10px 0 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.contact-heading {
  margin: 0 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.contact-left {
  color: #fff;
}
.contact-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.92);
}
.contact-list i {
  width: 22px;
  text-align: center;
  opacity: 0.95;
}

.contact-subheading {
  margin: 16px 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
.contact-links {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.contact-links li {
  margin: 6px 0;
}
.contact-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}
.contact-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  text-decoration: none;
}
.social-circle:hover {
  filter: brightness(0.92);
}

/* Newsletter à direita */
.newsletter-right {
  position: relative;
  padding-right: 120px;
}
.newsletter-title {
  margin: 0;
  color: #fff;
  font-weight: 900;
}
.newsletter-sub {
  color: rgba(255, 255, 255, 0.9);
  margin: 8px 0 12px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
  max-width: 560px;
}
.newsletter-form input {
  background: #fff;
  border: none;
  outline: none;
  border-radius: 30px;
  padding: 10px 14px;
  color: #111;
}
.btn-newsletter {
  background: #2ebd50;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-newsletter:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.newsletter-illustration {
  position: absolute;
  right: 0;
  bottom: -10px;
  height: auto;
  object-fit: contain;
}

/* Site Footer layout (contact + map + modern footer) */
.site-footer {
  position: relative;
  --map-h: 400px; /* map height */
  --black-ratio: 0.5; /* portion of the map height that overlaps the black area */
  --white-ratio: 0.5; /* portion for the white area (should ≈ 1 - black) */
}

.site-footer .contact-section {
  background: #000;
  /* Let the map overlap without reserving space in the black area */
  position: relative;
  padding-bottom: calc(var(--map-h) * var(--black-ratio));
}
.site-footer .modern-footer {
  background: #fff;
  padding-top: calc(var(--map-h) * var(--white-ratio));
}

/* Map card position – keep your current 100% if it visually centers for you */
.contact-map-wrap {
  /* Absolutely position the map so it straddles the seam */
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--map-h) * var(--white-ratio) * -1);
  transform: none;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 0;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.contact-map-card {
  width: min(980px, 95%);
  height: var(--map-h);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
  background: #e5e7eb;
}
.contact-map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 992px) {
  .site-footer {
    --map-h: 260px;
    --black-ratio: 0.25;
    --white-ratio: 0.75;
  }
}
@media (max-width: 640px) {
  .site-footer {
    --map-h: 200px;
    --black-ratio: 0.2; /* less black on mobile */
    --white-ratio: 0.8;
  }
}

/* Responsivo */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .newsletter-right {
    padding-right: 0;
  }
  .newsletter-illustration {
    position: static;
    margin-top: 12px;
  }
}
@media (max-width: 576px) {
  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

/* ==== Newsletter (ajuste p/ ficar como a arte 2) ==== */
.newsletter-right {
  padding-right: 0; /* remove espaço para imagem absoluta */
  max-width: 560px; /* largura confortável do bloco */
}
.newsletter-title {
  line-height: 0.95;
}
.newsletter-sub {
  margin: 6px 0 14px;
  color: rgba(255, 255, 255, 0.92);
}

/* Inputs e botão na mesma altura (pílula) */
.newsletter-form input {
  height: 42px;
}
.btn-newsletter {
  height: 42px;
  padding: 0 18px;
}

/* Imagem abaixo do formulário, sem sobreposição */
.newsletter-illustration {
  position: static; /* sai do absolute */
  display: block;
  margin: 12px 0 0; /* espaço do form para a imagem */
  height: auto;
  object-fit: contain;
  max-width: 30%;
}

/* Se quiser centralizar a ilustração: descomente */
/* .newsletter-right { text-align: left; } */
/* .newsletter-illustration { margin-left: 0; } */

/* ==== Footer (logo central + copyright branco) ==== */
.footer-brand {
  background: #fff;
  padding: 22px 0 12px;
}
.footer-brand__logo {
  display: block;
  margin: 0 auto;
  width: clamp(160px, 22vw, 260px);
  height: auto;
}

/* Override do estilo antigo do copyright */
.footer-copyright {
  background: #fff !important;
  color: #6b7280 !important;
  padding: 16px 0;
}
.footer-copyright p {
  margin: 0;
}
.footer-copyright .text-right {
  text-align: right;
}
.footer-dev {
  color: #111;
  font-weight: 800;
  text-decoration: none;
}
.footer-dev:hover {
  text-decoration: underline;
}

/* ==== Produtos – Hero de categoria + cards ==== */
.category-hero {
  background: #fff;
  padding: 40px 0 14px;
}
.category-hero__title {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 900;
  color: #111;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 0.95;
}
.category-hero__subtitle {
  margin: 8px 0 14px;
  color: #6b7280;
  font-size: clamp(14px, 2.2vw, 18px);
}
.category-hero__ornament {
  display: inline-block;
  width: 96px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 999px;
}

/* Grid responsivo */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Thumb com foco no produto */
/*.product-thumb {
  background: #fff;
  height: 240px;
  display: grid;
  place-items: center;
  padding: 8px;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 14px 14px 16px;
  background: #fff;
}
.product-title {
  margin: 0 0 8px;
  font-weight: 900;
  color: #111;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
}
.product-code {
  font-size: 13px;
  color: #9aa0a6;
}*/

.detail_underline {
  position: relative;
  display: inline-block; /* garante que o underline fique no tamanho do texto */
}

.detail_underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* distância do texto */
  width: 70%;
  height: 4px; /* espessura da linha */
  background-color: #ff9d29;
  border-radius: 9999px; /* deixa a linha bem arredondada */
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mvv-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
