@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --bg: #f6f4f2;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --primary: #a8734c;
  --primary-dark: #87583a;
  --card: #ffffff;
  --line: #e2ddd8;
  --font-base: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --space-section: 88px;
  --shadow-card: 0 18px 44px rgba(20, 20, 20, 0.06);
  --shadow-float: 0 8px 18px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 221, 216, 0.8);
  position: sticky;
  top: 0;
  /* Acima do FAB do WhatsApp (z-index ~45) para o menu mobile e links do header funcionarem */
  z-index: 1050;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 14px 0;
}

/* Navbar Bootstrap: abaixo do breakpoint lg o collapse precisa de linha inteira */
@media (max-width: 991.98px) {
  header .nav-wrap.navbar {
    flex-wrap: wrap;
    row-gap: 0;
    align-items: center;
  }

  header .nav-wrap.navbar > .navbar-brand {
    flex: 1 1 auto;
    margin-right: auto;
    max-width: calc(100% - 58px);
    min-width: 0;
  }

  header .nav-wrap.navbar > .navbar-toggler {
    flex: 0 0 auto;
    z-index: 2;
    touch-action: manipulation;
  }

  header .nav-wrap.navbar > .navbar-collapse {
    flex-basis: 100%;
    width: 100% !important;
    max-width: 100%;
  }

  header #site-menu.collapse {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(226, 221, 216, 0.95);
  }

  header #site-menu .navbar-nav {
    gap: 0;
  }

  header #site-menu .nav-link {
    padding: 10px 0;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 148px;
  height: auto;
  object-fit: contain;
  image-rendering: crisp-edges;
  filter: none;
}

.logo span {
  font-weight: 700;
  letter-spacing: 0.8px;
}

#site-menu .navbar-nav {
  gap: 28px;
}

#site-menu .nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(31, 31, 31, 0.86);
  transition: color 0.25s, transform 0.25s;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  transform: translateZ(0);
}

#site-menu .nav-link:hover,
#site-menu .nav-link.active {
  color: var(--primary);
}

#site-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: rgba(196, 138, 90, 0.85);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

#site-menu .nav-link.active::after,
#site-menu .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar.navbar-expand-lg .navbar-nav {
  align-items: center;
}

/* Admin: logout na mesma faixa dos links (evita desalinhamento com .btn global) */
#site-menu #admin-header-logout {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  align-self: center;
  flex-shrink: 0;
}

#site-menu #admin-header-logout:hover {
  transform: none;
}

.hero {
  position: relative;
  min-height: 0;
  padding: 18px 0 22px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.62), transparent 46%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(180deg, #f8f5f1 0%, #f6f2ed 54%, #f3eee8 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  min-height: clamp(320px, 48vh, 460px);
  width: 100%;
  border-radius: 24px;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(14px, 2.5vw, 26px) 0;
  background: transparent;
}

.hero-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(86px, 1fr);
  gap: 12px;
  padding: 0;
  background: transparent;
}

.hero-panel {
  border-radius: 16px;
  border: 1px solid rgba(140, 114, 78, 0.16);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 8px 18px rgba(46, 30, 16, 0.06);
}

.hero-panel-main {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background:
    linear-gradient(to top, rgba(18, 14, 11, 0.68), rgba(18, 14, 11, 0.16)),
    url("./assets/hero/c__Users_Pichau_AppData_Roaming_Cursor_User_workspaceStorage_78563d0dcf7aa8353f118443e8f05c72_images_image-b3ce6250-de17-4332-a5a3-53b8f0ea2f65.png");
  background-size: cover;
  background-position: 52% 44%;
}

.hero-panel-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-panel-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.58;
  max-width: 34ch;
}

.hero-panel-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.hero-panel-material {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  background-image:
    linear-gradient(to top, rgba(24, 18, 12, 0.52), rgba(24, 18, 12, 0.06)),
    url("./assets/hero/c__Users_Pichau_AppData_Roaming_Cursor_User_workspaceStorage_78563d0dcf7aa8353f118443e8f05c72_images_image-4a2b7ae8-e032-4940-b304-86b8f509ca7a.png");
  background-size: cover;
  background-position: 50% 54%;
}

.hero-panel-material span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-material-pvc {
  background-image:
    linear-gradient(to top, rgba(23, 15, 11, 0.56), rgba(23, 15, 11, 0.08)),
    url("./assets/hero/c__Users_Pichau_AppData_Roaming_Cursor_User_workspaceStorage_78563d0dcf7aa8353f118443e8f05c72_images_image-99c2d55f-c863-44c0-a9c4-d263ba942dfc.png");
  background-size: cover;
  background-position: 54% 48%;
}

.hero-panel-material-ferragens {
  background-image:
    linear-gradient(to top, rgba(18, 17, 18, 0.56), rgba(18, 17, 18, 0.08)),
    url("./assets/hero/c__Users_Pichau_AppData_Roaming_Cursor_User_workspaceStorage_78563d0dcf7aa8353f118443e8f05c72_images_image-54e31ecb-85ff-467f-ac79-c738b129cee3.png");
  background-size: cover;
  background-position: 52% 48%;
}

.hero-panel-detail {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  background-size: cover;
  background-position: center;
}

.hero-panel-detail span {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-detail-superficie {
  background-image:
    linear-gradient(to top, rgba(22, 15, 9, 0.52), rgba(22, 15, 9, 0.1)),
    url("./assets/hero/c__Users_Pichau_AppData_Roaming_Cursor_User_workspaceStorage_78563d0dcf7aa8353f118443e8f05c72_images_image-131e7df1-60f1-4d2d-9536-c577c8a7e070.png");
  background-position: 50% 55%;
}

.hero-panel-detail-metal {
  background-image:
    linear-gradient(to top, rgba(14, 14, 15, 0.56), rgba(14, 14, 15, 0.12)),
    url("./assets/hero/c__Users_Pichau_AppData_Roaming_Cursor_User_workspaceStorage_78563d0dcf7aa8353f118443e8f05c72_images_image-54e31ecb-85ff-467f-ac79-c738b129cee3.png");
  background-position: 56% 48%;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 750;
  color: var(--text);
  text-wrap: pretty;
  max-width: 580px;
  margin-left: 0;
  margin-right: 0;
}

.hero-title-highlight {
  color: var(--primary);
}

.hero-content p {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.62;
  max-width: 540px;
  margin-left: 0;
  margin-right: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
}

.hero-actions .btn {
  margin-top: 0;
  min-height: 46px;
  padding: 11px 22px;
  font-size: 0.96rem;
}

@media (max-width: 991.98px) {
  .hero-actions .btn,
  .btn,
  .category-card,
  .filter-btn,
  .showroom-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(168, 115, 76, 0.18);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
  padding: 13px 24px;
  min-height: 48px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  transform: none;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.btn-spinner[hidden] {
  display: none;
}

.loading-inline {
  margin: 0;
  color: rgba(31, 31, 31, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.04);
}

.loading-inline::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #d8d2cc;
  border-top-color: var(--primary);
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(31, 31, 31, 0.28);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(31, 31, 31, 0.06);
  color: var(--text);
  border-color: rgba(31, 31, 31, 0.38);
}

section {
  padding: var(--space-section) 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  margin-bottom: 28px;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 650;
  text-align: center;
}

.portfolio-intro .section-title {
  margin-bottom: 10px;
}

.intro-subtitle {
  max-width: 640px;
  margin: 0 auto 12px;
  text-align: center;
}

.values {
  --bs-gutter-x: 40px !important;
  --bs-gutter-y: 34px !important;
  margin-top: 18px;
}

.value-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-item h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 138, 90, 0.32);
  box-shadow: 0 24px 50px rgba(20, 20, 20, 0.08);
}

.home-featured {
  margin-bottom: 32px;
}

.about-section {
  padding-top: 44px;
}

.about-card,
.about-credentials {
  height: 100%;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.about-card {
  padding: 30px 28px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-card p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-credentials {
  padding: 28px 24px;
}

.about-credentials h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.about-credentials ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.about-credentials li::marker {
  color: var(--primary);
}

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

.instagram-carousel {
  position: relative;
  padding: 0 52px;
}

.featured-scroll-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(226, 221, 216, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-block {
  border-radius: 18px;
  background: linear-gradient(110deg, #ece7e2 25%, #f7f4f1 40%, #ece7e2 55%);
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.skeleton-media {
  width: 100%;
  height: 310px;
  border: 1px solid rgba(226, 221, 216, 0.9);
}

@keyframes skeleton-shimmer {
  to {
    background-position-x: -220%;
  }
}

.featured-scroll-item {
  scroll-snap-align: none;
}

.featured-scroll-item:hover img {
  transform: translateY(-3px) scale(1.015);
  filter: saturate(1.03);
  box-shadow: 0 24px 52px rgba(20, 20, 20, 0.1);
}

.instagram-carousel .carousel-control-prev,
.instagram-carousel .carousel-control-next {
  width: 40px;
  opacity: 1;
}

.instagram-carousel .carousel-control-prev-icon,
.instagram-carousel .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(31, 31, 31, 0.58);
  background-size: 54% 54%;
}

.home-instagram {
  padding-top: 24px;
}

.home-instagram-head {
  text-align: center;
  margin-bottom: 18px;
}

.home-instagram-head .bi {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
}

.home-instagram-head p {
  margin-bottom: 4px;
  color: var(--muted);
}

.home-instagram-head a {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-instagram-head a:hover {
  color: var(--primary-dark);
}

.instagram-handle-root {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.1rem;
}

.instagram-handle-skeleton {
  width: min(200px, 52vw);
  height: 1.55rem;
  border-radius: 999px;
  margin: 0 auto;
}

.home-instagram:not(.home-instagram--ready) .instagram-carousel .carousel-control-prev,
.home-instagram:not(.home-instagram--ready) .instagram-carousel .carousel-control-next {
  visibility: hidden;
  pointer-events: none;
}

.instagram-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.instagram-scroll-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 16px;
}

.instagram-scroll-item {
  scroll-snap-align: start;
}

.instagram-scroll-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(226, 221, 216, 0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.instagram-scroll-item:hover img {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.showroom-card {
  grid-column: span 4;
}

.showroom-card-featured {
  grid-column: span 8;
}

.showroom-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.52), transparent 44%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(180deg, #f7f4ef 0%, #f3eee8 100%);
}

.showroom-intro {
  display: grid;
  gap: 28px;
}

.showroom-hero {
  padding: 36px 34px;
  border-radius: 24px;
  border: 1px solid rgba(226, 221, 216, 0.92);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.84), rgba(248, 243, 237, 0.9)),
    radial-gradient(circle at 82% 26%, rgba(168, 115, 76, 0.2), transparent 45%);
  box-shadow: var(--shadow-card);
}

.showroom-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
}

.showroom-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.showroom-hero .intro-subtitle {
  margin: 0;
  max-width: 62ch;
  text-align: left;
  color: var(--muted);
}

.showroom-subtitle {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  letter-spacing: -0.02em;
}

.showroom-collection-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.showroom-search-wrap {
  margin: 0;
  width: min(440px, 100%);
}

@media (max-width: 992px) {
  .showroom-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .showroom-card {
    grid-column: span 3;
    min-height: 320px;
  }
  .showroom-card img,
  .showroom-skeleton-media {
    min-height: 320px;
  }
  .showroom-card-featured {
    grid-column: span 6;
    min-height: 380px;
  }
  .showroom-card-featured img {
    min-height: 380px;
  }
  .featured-scroll-item img,
  .skeleton-media {
    height: 270px;
  }
  .instagram-carousel {
    padding: 0 44px;
  }
  .showroom-hero {
    padding: 28px 24px;
  }
  .showroom-collection-head {
    flex-direction: column;
    align-items: stretch;
  }
  .showroom-search-wrap {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .showroom-card,
  .showroom-card-featured {
    grid-column: span 1;
    min-height: 280px;
  }
  .showroom-card img,
  .showroom-card-featured img,
  .showroom-skeleton-media {
    min-height: 280px;
  }
  .featured-scroll-item img {
    height: 240px;
  }
  .skeleton-media {
    height: 240px;
  }
  .instagram-carousel {
    padding: 0 36px;
  }
  .instagram-carousel .carousel-control-prev,
  .instagram-carousel .carousel-control-next {
    width: 30px;
  }
  .instagram-carousel .carousel-control-prev-icon,
  .instagram-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }
  .showroom-hero {
    border-radius: 18px;
    padding: 22px 18px;
  }
  .showroom-title {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }
  .instagram-scroll-track {
    grid-auto-columns: minmax(180px, 220px);
    gap: 10px;
  }
  .instagram-scroll-item img {
    height: 220px;
  }
}

.showroom-card {
  position: relative;
  min-height: 360px;
  background: #d8d1c8;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 221, 216, 0.72);
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showroom-card-featured {
  min-height: 420px;
}

.showroom-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.showroom-card-featured img {
  min-height: 420px;
}

.showroom-card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(9, 9, 10, 0.76), rgba(9, 9, 10, 0.12) 72%, rgba(9, 9, 10, 0));
}

.showroom-card-category {
  width: fit-content;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.showroom-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.showroom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(20, 20, 20, 0.16);
}

.showroom-card:hover img {
  transform: scale(1.04);
}

.categories-grid {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.category-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 240, 235, 0.9) 100%);
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-card);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 138, 90, 0.28);
  box-shadow: 0 20px 42px rgba(20, 20, 20, 0.08);
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.category-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.showroom-skeleton-media {
  height: 100%;
  min-height: 360px;
  border-radius: 0;
  border: 1px solid rgba(226, 221, 216, 0.9);
}

.showroom-skeleton-title {
  width: 68%;
  height: 18px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.showroom-skeleton-subtitle {
  width: 52%;
  height: 14px;
  border-radius: 8px;
}

.filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.filter-btn {
  border: 1px solid rgba(226, 221, 216, 0.88);
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---------- Pagina de contato (layout cartao central, paleta alinhada ao site) ---------- */
body[data-page="contato"] {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.9), transparent 52%),
    radial-gradient(circle at 88% 4%, rgba(168, 115, 76, 0.08), transparent 44%),
    radial-gradient(circle at 50% 100%, rgba(168, 115, 76, 0.06), transparent 55%),
    var(--bg);
  color: var(--text);
}

.contact-page-section {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 10vw, 100px);
  overflow-x: hidden;
  overflow-y: visible;
}

.contact-page-decor {
  pointer-events: none;
}

.contact-page-decor--dots {
  position: absolute;
  top: 48px;
  right: max(-80px, -12%);
  width: min(420px, 52%);
  aspect-ratio: 1 / 1;
  border-radius: 24%;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(168, 115, 76, 0.22) 1.25px, transparent 1.35px);
  background-size: 14px 14px;
}

.contact-page-container {
  position: relative;
  z-index: 1;
}

.contact-hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(226, 221, 216, 0.95);
  box-shadow:
    var(--shadow-card),
    0 4px 22px rgba(46, 30, 16, 0.05);
  overflow: hidden;
}

.contact-page-grid {
  position: relative;
  z-index: 1;
}

.contact-page-info {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(226, 221, 216, 0.85);
}

.contact-info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(226, 221, 216, 0.55);
}

.contact-info-block:first-child {
  padding-top: 0;
}

.contact-info-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(168, 115, 76, 0.18), rgba(168, 115, 76, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.contact-info-heading {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: rgba(31, 31, 31, 0.55);
}

.contact-info-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(31, 31, 31, 0.88);
}

.contact-info-text--multiline {
  white-space: pre-line;
}

.contact-info-copy .contact-info-text a {
  color: var(--primary-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(168, 115, 76, 0.35);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-info-copy .contact-info-text a:hover {
  color: var(--primary);
  border-bottom-color: rgba(168, 115, 76, 0.65);
  text-decoration: none;
}

.contact-map-embed {
  margin-top: 14px;
  border: 0;
  width: 100%;
  height: min(220px, 42vw);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.1);
}

.contact-page-form-wrap {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 5vw, 52px);
  background: linear-gradient(180deg, rgba(249, 247, 245, 0.65) 0%, #fff 42%);
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

/* Espaco extra no mobile para o botao Enviar nao ficar sob o FAB do WhatsApp */
@media (max-width: 991px) {
  body[data-page="contato"] .contact-page-section {
    padding-bottom: calc(clamp(56px, 10vw, 100px) + 72px + env(safe-area-inset-bottom, 0px));
  }

  body[data-page="contato"] .contact-page-form-wrap {
    padding-bottom: calc(clamp(24px, 4vw, 36px) + 56px + env(safe-area-inset-bottom, 0px));
  }

  /* FAB na esquerda na pagina de contato: evita cobrir botoes largos a direita */
  body[data-page="contato"] .whatsapp-widget {
    right: auto !important;
    left: max(12px, env(safe-area-inset-left)) !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
  }
}

.contact-form-title {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--text);
}

.contact-form-lead {
  margin: 0 0 28px;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.55;
}

.contact-lead-form .contact-field {
  margin-bottom: 22px;
}

.contact-lead-form .contact-field label:first-child:not(.contact-check) {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(107, 107, 107, 0.85);
  margin-bottom: 8px;
}

.contact-lead-form .contact-field input:not([type="checkbox"]),
.contact-lead-form .contact-field textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid rgba(226, 221, 216, 0.95);
  padding: 10px 2px 12px;
  font-size: 1rem;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  /* iOS Safari: zoom ao focar com fonte < 16px; area minima tocavel ~44px */
  min-height: 48px;
  -webkit-tap-highlight-color: rgba(168, 115, 76, 0.15);
}

@media (max-width: 991px) {
  .contact-lead-form .contact-field input:not([type="checkbox"]),
  .contact-lead-form .contact-field textarea {
    font-size: 16px;
    touch-action: manipulation;
  }
}

.contact-lead-form .contact-field input:not([type="checkbox"])::placeholder,
.contact-lead-form .contact-field textarea::placeholder {
  color: rgba(107, 107, 107, 0.55);
}

.contact-lead-form .contact-field input:not([type="checkbox"]):focus,
.contact-lead-form .contact-field textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
  box-shadow: 0 6px 0 -4px rgba(168, 115, 76, 0.35);
  background: transparent;
}

.contact-lead-form .contact-field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-field--inline {
  margin-bottom: 14px !important;
}

.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(31, 31, 31, 0.78);
  line-height: 1.45;
  position: relative;
  z-index: 1;
  padding: 6px 0;
  -webkit-tap-highlight-color: rgba(168, 115, 76, 0.12);
}

.contact-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-dark);
  touch-action: manipulation;
}

.contact-field--message {
  margin-top: 8px;
}

.contact-form-feedback {
  margin: 8px 0 18px !important;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  min-height: 52px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(168, 115, 76, 0.35);
  position: relative;
  z-index: 2;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  touch-action: manipulation;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 32px rgba(135, 88, 58, 0.22);
}

.contact-submit-btn:active {
  transform: translateY(1px);
}

.contact-submit-btn.is-loading {
  opacity: 0.88;
  pointer-events: none;
}

.contact-submit-btn .btn-spinner {
  display: none;
}

@media (max-width: 991px) {
  .contact-page-info {
    border-right: none;
    border-top: 1px solid rgba(226, 221, 216, 0.85);
  }
}

.contact-wrap {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.88);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(226, 221, 216, 0.88);
  box-shadow: var(--shadow-card);
}

.contact-box h3 {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.contact-box p {
  color: rgba(31, 31, 31, 0.8);
  line-height: 1.6;
}

.contact-box a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-feedback {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.form-feedback.is-success {
  color: #1f7a45;
}

.form-feedback.is-error {
  color: #b32d2d;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(207, 199, 192, 0.92);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(196, 138, 90, 0.7);
  box-shadow: 0 0 0 4px rgba(196, 138, 90, 0.12);
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.map {
  margin-top: 20px;
  border: 0;
  width: 100%;
  min-height: 240px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.08);
}

label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(31, 31, 31, 0.8);
}

input[type="checkbox"] {
  accent-color: #c48a5a;
}

#showroom-search {
  max-width: 560px;
}

#category-title + p a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  color: rgba(31, 31, 31, 0.7);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

#category-title + p a:hover {
  color: var(--primary-dark);
  transform: translateX(-2px);
}

#category-works > p,
#showroom-list > p {
  margin: 10px 0 0;
  padding: 24px;
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(31, 31, 31, 0.68);
  text-align: center;
  box-shadow: var(--shadow-card);
}

footer {
  border-top: 1px solid rgba(226, 221, 216, 0.95);
  padding: 26px 0;
  text-align: center;
  color: rgba(31, 31, 31, 0.62);
  background: linear-gradient(180deg, rgba(246, 244, 242, 0.6) 0%, rgba(246, 244, 242, 1) 100%);
}

footer a {
  color: rgba(31, 31, 31, 0.72);
  font-weight: 650;
}

footer a:hover {
  color: var(--primary);
}

.site-version {
  margin: 6px 0 0;
  color: rgba(31, 31, 31, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/*
  WhatsApp fixo: sem pointer-events no wrapper — caso contrario o flex column
  cobre uma faixa da viewport e rouba toques de botoes/inputs por baixo (mobile).
*/
.whatsapp-widget {
  position: fixed;
  width: max-content !important;
  max-width: calc(100vw - 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 16px !important;
  left: auto !important;
  bottom: 16px !important;
  top: auto !important;
  transform: none !important;
  margin: 0 !important;
  z-index: 40;
  pointer-events: none;
}

#site-whatsapp {
  position: static;
  text-align: initial;
  pointer-events: none;
}

.whatsapp-widget-card {
  width: min(360px, calc(100vw - 32px));
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ecf2f0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  margin-bottom: 12px;
  transform-origin: bottom right;
  transform: translateY(16px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.whatsapp-widget.is-open .whatsapp-widget-card {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-widget-head {
  background: linear-gradient(180deg, #16c65f 0%, #0fb954 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.whatsapp-widget-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.whatsapp-widget-brand .bi {
  font-size: 24px;
}

.whatsapp-widget-close {
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  cursor: pointer;
}

.whatsapp-widget-body {
  padding: 18px 16px 16px;
}

.whatsapp-widget-title {
  margin: 0 0 6px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
}

.whatsapp-widget-message {
  margin: 0 0 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  padding: 12px 14px;
  color: rgba(26, 26, 26, 0.9);
  line-height: 1.45;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.whatsapp-widget-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1fd168 0%, #13b457 100%);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2be673 0%, #1ab85a 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;
}

.whatsapp-widget.is-open .whatsapp-float {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
  filter: saturate(1.05);
}

.whatsapp-float .bi {
  font-size: 30px;
  line-height: 1;
}

.admin-grid {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.admin-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-dashboard-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-dashboard-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 138, 90, 0.3);
  box-shadow: 0 20px 42px rgba(20, 20, 20, 0.08);
}

.admin-dashboard-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(168, 115, 76, 0.14);
  color: var(--primary-dark);
}

.admin-dashboard-icon .bi {
  font-size: 22px;
  line-height: 1;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(226, 221, 216, 0.88);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-item img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
}

.admin-item:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 138, 90, 0.28);
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.06);
}

.danger {
  background: #b32d2d;
}

.danger:hover {
  background: #932424;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .reveal {
    transform: translateY(12px);
  }

  .reveal.is-visible {
    transform: translateY(0);
  }
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  padding: 20px;
}

.image-modal.open {
  display: grid;
}

.image-modal img {
  width: min(1100px, 95vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.image-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 999px;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.image-modal-close:hover {
  transform: scale(1.04);
  background: #fff;
}

.image-modal p {
  margin-top: 10px;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px) {
  section {
    padding: 72px 0;
  }
  .logo img {
    width: 122px;
  }
  .logo {
    gap: 8px;
  }
  .logo span {
    font-size: 1.25rem;
  }
  .hero {
    padding: 12px 0 16px;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    border-radius: 0;
  }
  .hero-content {
    padding: 28px 8px 16px;
  }
  .hero-media {
    min-height: 260px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(62px, 1fr);
    gap: 8px;
  }
  .hero-panel-main {
    padding: 18px;
  }
  .hero-panel-main p {
    font-size: 0.92rem;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 6.6vw, 3.3rem);
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .contact-box,
  .category-card,
  .value-item {
    padding: 24px 20px;
  }
  .featured-scroll-item img {
    height: 230px;
  }
  .showroom-skeleton-media {
    height: 230px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  .logo img {
    width: 104px;
  }
  /* Estilos do menu colapsavel em <=991px estao no bloco do header acima */
  .logo span {
    display: none;
  }
  .hero {
    padding: 6px 0 12px;
  }
  .hero-shell {
    gap: 10px;
  }
  .hero-content {
    padding: 18px 4px 10px;
  }
  .hero-media {
    min-height: 210px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .hero-panel-main {
    grid-column: span 2;
    grid-row: span 2;
    padding: 16px;
  }
  .hero-panel-chip {
    font-size: 0.8rem;
  }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.06;
  }
  .hero-content p {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.58;
  }
  .hero-actions {
    margin-top: 18px;
    gap: 8px;
    justify-content: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 40px;
    font-size: 0.86rem;
  }
  .section-title {
    margin-bottom: 22px;
  }
  .values {
    --bs-gutter-x: 20px !important;
    --bs-gutter-y: 20px !important;
    margin-top: 10px;
  }
  .contact-wrap {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
  .contact-box,
  .category-card,
  .value-item,
  .admin-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .showroom-card {
    border-radius: 16px;
  }
  .showroom-card img,
  .showroom-skeleton-media {
    min-height: 260px;
  }
  .map {
    min-height: 210px;
    border-radius: 16px;
  }
  #category-works > p,
  #showroom-list > p {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .admin-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .admin-item img {
    width: 100%;
    max-width: 140px;
    height: 92px;
  }
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
}
