/* Reset and Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #505050;
  overflow-x: hidden;
  background-color: #fff;
  transition: background-color 0.6s ease;
}

/* PADRÕES DO SITE */
h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: #505050;
  font-weight: 400;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #505050;
  font-weight: 400;
}

p,
ul,
li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  /* color: #1f2127; */
  font-weight: 400;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  h2 {
    font-size: 18px;
    line-height: 1.4;
  }

  p {
    font-size: 16px;
    line-height: 1.5;
  }
}

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

.bg-gold {
  background-color: #b78a48;
}

.bg-dark-gray {
  background-color: #505050;
}

.bg-medium-gray {
  background-color: #8b8b8b;
}

.bg-light-gray {
  background-color: #afafaf;
}

.text-white {
  color: #ffffff;
}

.text-gold {
  color: #b78a48;
}

.text-dark-gray {
  color: #505050;
}

.text-medium-gray {
  color: #8b8b8b;
}

.text-light-gray {
  color: #afafaf;
}

.texto-justificado {
  text-align: left;
}

.btn-icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.btn-icon-square img {
  height: 18px;
  filter: invert(0);
}

.btn-icon-square:hover {
  background: #fff;
}

.btn-icon-square:hover img {
  filter: invert(1);
}

/* Expansão do Botão para a Direita */
.btn-expand-right {
  justify-content: flex-start;
  padding: 0 20px;
  width: 60px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-expand-right img {
  position: absolute;
  right: 20px;
}

.btn-expand-right .btn-text {
  opacity: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 11px;

  font-weight: 500;
  transition: opacity 0.3s ease;
}

.btn-expand-right:hover {
  width: 170px;
}

.btn-expand-right:hover .btn-text {
  opacity: 1;
  color: #000;
}

/* PADRÕES DO SITE */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 32px;
  }
}

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

/* Typography Tools */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  /* color: #1f2127; */
  font-weight: 400;
}

.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  /* color: #1f2127; */
  font-weight: 400;
}

.interno-title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  /* color: #1f2127; */
  font-weight: 400;
}

.interno-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  /* color: #1f2127; */
  font-weight: 400;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #505050;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 0.8rem;

  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #505050;
  color: #fff;
}

.mt-40 {
  margin-top: 40px;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ==== HEADER ==== */
.site-header {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 10001;
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
}

.site-header.scrolled {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.site-header-inner.home-sticky {
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header-inner.home-sticky.active {
  transform: translateY(0);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  height: 60px;
}

.header-left {
  display: flex;
  height: 100%;
}

.logo {
  background: #1f2127;
  width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 16px;
}

.menu-toggle {
  background: #fff;
  border: none;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 3px 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.menu-toggle.open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-right {
  display: flex;
  height: 100%;
}

.search-toggle {
  background: #1f2127;
  border: none;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==== FULL SCREEN MENU ==== */

/* Overlay: sempre display:flex, controlado por opacity + pointer-events.
   Isso permite transições CSS suaves (display:none não é animável). */
.fullscreen-menu-overlay {
  position: fixed;
  top: 0;
  padding-top: 110px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1f2127;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  /* Estado fechado */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-30px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* Keyframe: itens entram da esquerda, chegam à posição natural deles */
@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Estado padrão (fechado): itens e lang-switcher invisíveis */
.fullscreen-menu-overlay .lang-switcher,
.fullscreen-menu-overlay .primary-navigation li {
  opacity: 0;
}

/* Quando aberto: lang-switcher entra primeiro */
.fullscreen-menu-overlay.open .lang-switcher {
  animation: menuItemIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Itens do menu com delays escalonados */
.fullscreen-menu-overlay.open .primary-navigation li {
  animation: menuItemIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(1) {
  animation-delay: 0.18s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(2) {
  animation-delay: 0.25s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(3) {
  animation-delay: 0.32s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(4) {
  animation-delay: 0.39s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(5) {
  animation-delay: 0.46s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(6) {
  animation-delay: 0.53s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(7) {
  animation-delay: 0.60s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(8) {
  animation-delay: 0.67s;
}

.fullscreen-menu-overlay.open .primary-navigation li:nth-child(9) {
  animation-delay: 0.74s;
}

/* Menu Header (Logo and Close Btn) */
.menu-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
}

.menu-top-bar .logo-white a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-close {
  background: #fff;
  border: none;
  font-size: 1.5rem;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==== SEARCH OVERLAY HOME ==== */
.search-overlay-home {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 10005;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition:
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s ease;
}

.search-overlay-home.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.search-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 80px;
}

.search-overlay-left {
  display: flex;
  align-items: stretch;
}

/* Hamburger inside search */
.hamburger-static {
  background: #fff;
  width: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hamburger-static span {
  display: block;
  width: 24px;
  height: 1px;
  background: #000;
}

.search-close-btn {
  background: #1f2127;
  color: #fff;
  border: none;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-overlay-bottom {
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.search-overlay-bottom .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-overlay-bottom .search-field {
  border: none;
  width: 100%;
  font-size: 24px;
  font-weight: 300;
  color: #111;
  outline: none;
}

.search-overlay-bottom .search-field::placeholder {
  color: #ccc;
  font-weight: 300;
}

.search-overlay-bottom .search-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==== SEARCH OVERLAY INTERNAL ==== */
.search-overlay-internal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 10006;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition:
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s ease;
}

.search-overlay-internal.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.search-internal-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.search-overlay-internal .search-form {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
}

.search-overlay-internal .search-field {
  border: none;
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  outline: none;
}

.search-internal-actions {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.search-overlay-internal .search-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close-internal {
  background: #1f2127;
  border: none;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 10vw;
}

.lang-switcher {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}

.lang-switcher a {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 20px;
  font-size: 0.9rem;
}

.lang-switcher a.active {
  color: #fff;
}

.primary-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-navigation li {
  margin-bottom: 20px;
}

.primary-navigation a {
  color: #ccc;
  font-size: 20px;
  text-transform: uppercase;

  transition: all 0.3s;
  display: block;
  position: relative;
  padding-left: 0;
}

.primary-navigation a:hover {
  color: #fff;
  padding-left: 50px;
}

.primary-navigation a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 35px;
  height: 35px;
  background: url("../img/Simbolo.png") no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: all 0.3s ease;
}

.primary-navigation a:hover:before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  filter: brightness(10);
}

/* ==== HERO BANNER ==== */
.hero-banner {
  position: relative;
  height: 100vh;
  width: 100%;
}

.bg-video,
.bg-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.bg-placeholder {
  background: #505050;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* darkens video */
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  column-gap: 20px;
}

.banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.custom-banner-acf-text {
  color: #fff;
  font-size: 30px;
  font-weight: 400;

  & em {
    font-weight: 250;
  }
}

.banner-left-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-left: 20px;
}

.banner-icon {
  margin: 30px 0;
}

.banner-icon img {
  height: 45px;
}

.banner-sub-logo {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: #ccc;
  margin: 0 0 10px 0;
}

.banner-headline {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.banner-action-btn {
  margin-top: 30px;
  border-color: #fff;
}

.banner-action-btn img {
  height: 12px;
}

.banner-action-btn:hover {
  background: #fff;
}

.banner-action-btn:hover img {
  filter: invert(1);
}

.video-controls {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 10;
}

.play-pause-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.play-pause-btn:hover {
  border-color: #fff;
}

.video-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 4;
}

.play-pause-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.play-pause-btn img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.play-pause-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==== HOME SECTIONS ==== */
.home-section {
  padding: 80px 0;
}

/* Card images */
.img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  /* Square by default */
}

.img-wrapper img {
  height: 100%;
  transition: transform 1s ease;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #ccc;
}

.card:hover .img-wrapper img {
  transform: scale(1.05);
  /* Zoom effect */
}

/* Produtos */
.product-card .img-wrapper {
  aspect-ratio: 1/1.2;
  /* Taller para grid normal, mas resetado no slider abaixo */
}

.drag-card .img-wrapper {
  aspect-ratio: auto !important;
  width: 100%;
  height: 100%;
}

/* Referências Layout */
.referencias-layout {
  display: flex;
  width: 100%;
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.ref-text-col {
  flex: 0 0 320px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
}

.ref-slider-col {
  flex: 1;
  min-width: 0;
}

.ref-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.ref-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-right: 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

.ref-slider::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

/* Calculando 2.5 cards baseados no espaço residual */
.ref-slide-item {
  flex: 0 0 auto;
  /* width: clamp(350px, calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 370px) / 2.5), 650px);
    height: clamp(230px, calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 370px) / 2.5 * 0.65), 450px); */
  position: relative;
  overflow: hidden;
}

.ref-link-wrapper {
  display: block;
  width: 400px;
  height: 400px;
  text-decoration: none;
}

.ref-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ref-slide-item:hover .ref-static-img {
  transform: scale(1.05);
}

/* Fade Gradients */
.ref-gradient-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.ref-gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}

.ref-slide-item:hover .ref-gradient-right {
  opacity: 1;
}

/* Info */
.ref-content-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
  width: 170px;
}

.ref-title {
  font-size: 26px;
  font-weight: 300;

  margin: 0 0 8px 0;
}

.ref-excerpt {
  font-size: 13px;
  color: #ccc;
  font-weight: 300;
  display: block;
}

/* Plus Icon Overlay */
.ref-plus-icon {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.8s ease;
  pointer-events: none;
  filter: brightness(10);
}

.ref-plus-icon img {
  height: 50px;
  filter: invert(1);
}

.ref-slide-item:hover .ref-plus-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lojas */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-info-box {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.store-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.store-address {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ==== BLOG SLIDER EXPANSIVO ==== */
.blog-slider-wrapper {
  width: 100%;
  /* Alinha à esquerda com o container principal e deixa sangrar pela direita */
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
  overflow: hidden;
  width: 100% !important;
  /* Força a largura correta */
}

.blog-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  /* padding-right removido: iOS Safari ignora end-padding em overflow scroll, causando espaço em branco.
     Usamos ::after como espaçador — veja abaixo. */
  /* scroll-behavior: smooth removido: no iOS Safari, combinar scroll-behavior:smooth no CSS
     com scrollTo({behavior:'smooth'}) no JS causa conflito e overshoot. O JS controla tudo. */
  scrollbar-width: none;

  /* iOS: momentum scrolling + impede scroll chaining para o body */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Espaçador de trailing para iOS: substitui o padding-right que o iOS ignora */
.blog-slider::after {
  content: '';
  flex: 0 0 40px;
  /* mesma medida que era o padding-right */
}

.blog-slider::-webkit-scrollbar {
  display: none;

  /* iOS */
  overflow: hidden !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Card Base */
.blog-slide-card {
  flex: 0 0 auto;
  width: 380px;
  height: 380px;
  background: #fff;
  border: 1px solid #ddd;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition:
    width 1s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s;
  display: flex;
  cursor: pointer;
}

/* Hover: Card cresce horizontalmente */
.blog-slide-card:hover {
  width: 680px;
  border-color: #1f2127;
  /* Cor escura do hover */
}

/* Elementos de Fundo (Hover) */
.blog-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  /* Cobre apenas a área inicial do texto */
  height: 100%;
  background-color: #1f2127;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.blog-hover-image {
  position: absolute;
  top: 0;
  left: 380px;
  /* Começa a revelar onde o texto termina */
  width: calc(100% - 380px);
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.blog-hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-slide-card:hover .blog-hover-bg,
.blog-slide-card:hover .blog-hover-image {
  opacity: 1;
}

/* Conteúdo dentro do Card */
.blog-card-content {
  position: relative;
  z-index: 2;
  width: 380px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex-shrink: 0;
}

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

/* Ícone de Mais */
.blog-plus-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #999;
  border-radius: 50%;
  display: flex;
  font-size: 35px;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease;
  font-weight: 100;
}

/* Tag de Categoria */
.blog-cat-badge:nth-child(even) {
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.blog-cat-badge.even {
  color: #63adf2;
  border: 1px solid #63adf2;
}

.blog-cat-badge.odd {
  color: #7067cf;
  border: 1px solid #7067cf;
}

/* Textos e Títulos */
.blog-title-row {
  margin-bottom: 20px;
  gap: 15px;
}

.blog-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: #111;
  transition: color 0.8s ease;
  text-transform: uppercase;
  width: 100%;
  height: 80px;
}

.blog-date {
  font-size: 17px;
  width: 65px;
  height: auto;
  color: #aaa;
  text-transform: uppercase;
  transition: color 0.8s ease;
  text-align: end;
}

.blog-excerpt {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  transition: color 0.8s ease;
}

/* Transições de Cores no Hover do Card */
.blog-slide-card:hover .blog-title,
.blog-slide-card:hover .blog-date,
.blog-slide-card:hover .blog-excerpt {
  color: #fff;
}

.blog-slide-card:hover .blog-plus-icon {
  border-color: #fff;
  color: #fff;
}

.blog-slide-card:hover .blog-tag {
  opacity: 0;
  /* Esconde a tag para deixar limpo igual na imagem de referência */
}

.blog-tag {
  font-size: 11px;
  font-weight: 500;
  border: 1px solid;
  border-radius: 4px;
  padding: 6px 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  background: #fff;
}

/* Botão VER MAIS mobile da seção Referências — escondido no desktop */
.ref-ver-mais-mobile {
  display: none;
}

/* ==== NEW LAYOUT STYLES ==== */
.dark-bg {
  background-color: #1a1b1f;
  color: #fff;
}

.text-white {
  color: #fff;
}

.text-gray {
  color: #999;
}

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

.relative-container {
  position: relative;
}

/* Custom Buttons & Icons */
/* .btn-outline-custom {
  display: inline-flex;
  align-items: center;
  border: 2px solid #505050;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;

  transition: all 0.3s ease;
} */

.dark-bg .btn-outline-custom {
  border-color: #fff;
  color: #fff;
}

.dark-bg .btn-outline-custom img {
  filter: invert(1);
}

.btn-outline-custom img {
  height: 17px;
  margin-left: 15px;
}

.btn-outline-custom:hover {
  background: #505050;
  color: #fff;
}

.btn-outline-custom:hover img {
  filter: invert(1);
}

.dark-bg .btn-outline-custom:hover {
  background: #fff;
  color: #1a1b1f;
}

/* Transição suave do Zoom nas seções maiores (Franqueado) */
.franqueado-banner .bg-placeholder img {
  transition: transform 0.6s ease;
}

.franqueado-banner:hover .bg-placeholder img {
  transform: scale(1.05);
}

.section-divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 60px 0 20px 0;
}

/* Card Overlays */
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.card-inside-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0;
}

.default-button {
  height: 41px;
  width: 41px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.8s ease;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  padding-right: 10px;
  white-space: nowrap;

  & svg {
    overflow: visible;
    margin-left: 20px;
  }

  & p,
  span {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    margin-right: 12px;
    /* Space from the arrow */
    transition: all 0.8s ease;
  }

  &.btn-black {
    border-color: #1f2127;
    color: #1f2127;
    padding-right: 10px !important;

    &:hover {
      width: fit-content;
    }

    & p,
    span {
      color: #1f2127;
    }
  }

  &:hover {
    width: fit-content;
    padding: 12px 24px !important;

    & p,
    span {
      opacity: 1;
    }
  }
}

.card-overlay-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.default-button svg {
  height: 20px;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.card-overlay-btn .btn-text {
  color: #fff;
  font-size: 11px;

  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  margin-right: 12px;
  /* Space from the arrow */
  transition: opacity 0.8s ease;
}

.drag-card:hover .card-overlay-btn {
  width: 160px;
  border-color: #fff;
  max-width: fit-content;
  padding: 12px 24px !important;
}

.drag-card:hover .card-overlay-btn .btn-text {
  opacity: 1;
}

/* Slider de Produtos */
.produtos-slider-wrapper {
  width: 100%;
  /* Alignment that calculates the container margin to let the slider stick to the left, but be infinite to the right */
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
  overflow: hidden;
  width: 100% !important;
}

.produtos-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  /* padding-right removido: iOS Safari ignora end-padding em overflow scroll, causando espaço em branco.
     Usamos ::after como espaçador — veja abaixo. */
  /* scroll-behavior: smooth removido: no iOS Safari, combinar scroll-behavior:smooth no CSS
     com scrollTo({behavior:'smooth'}) no JS causa conflito e overshoot. O JS controla tudo. */
  scrollbar-width: none;
  /* Firefox */

  /* iOS: momentum scrolling + impede scroll chaining para o body */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Espaçador de trailing para iOS: substitui o padding-right que o iOS ignora */
.produtos-slider::after {
  content: '';
  flex: 0 0 40px;
  /* mesma medida que era o padding-right */
}

.produtos-slider::-webkit-scrollbar {
  /* Chrome */
  display: none;

  /* iOS */
  overflow: hidden !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.drag-card {
  flex: 0 0 auto;
  /* Calcula 2.5 cards + gaps preenchendo o espaço exato visível de slider restando. O :hover manterá a proporção de 4:3 adicionando o espaço a width sem quebrar o layout */
  width: clamp(380px,
      calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 60px) / 2.5),
      520px);
  height: clamp(380px,
      calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 60px) / 2.5),
      520px);
  position: relative;
  overflow: hidden;
  transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drag-card:hover {
  /* 4:3 da largura normal = Width * 1.333 */
  width: clamp(506px,
      calc(((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 60px) / 2.5) * 1.333),
      693px);
}

.prod-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s;
}

.prod-hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.drag-card:hover .prod-hover-video {
  opacity: 1;
  /* Transiciona do poster para o video via CSS opacity + Play via JS */
}

/* Slider Controls na Base */
.slider-controls-row {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

.slider-line {
  flex: 1;
  height: 1px;
  background-color: #505050;
}

.slider-prev-arrow,
.slider-next-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #111;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  flex-shrink: 0;
}

.slider-prev-arrow {
  margin-left: 15px;
}

.slider-next-arrow {
  margin-left: 8px;
}

.slider-prev-arrow:hover,
.slider-next-arrow:hover {
  background: #505050;
}

.slider-prev-arrow:hover img,
.slider-next-arrow:hover img {
  filter: invert(1) brightness(10);
}

.slider-prev-arrow img,
.slider-next-arrow img {
  height: 20px;
}

/* Scroll down Icon */
.scroll-down-icon {
  position: absolute;
  bottom: 40px;
  left: 100px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 3;
  /* animation: bounce 2s infinite; */
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-15px) translateX(-50%);
  }

  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

/* Blog specific */
.blog-card h3 a {
  text-transform: uppercase;
}

.blog-meta .category {
  font-size: 0.7rem;
  color: #505050;
  border: 1px solid #ddd;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

/* Store Specific */
.store-info-box {
  color: #111;
}

.lojas-section {
  padding-bottom: 0px;
}

.lojas-section .container {
  padding-bottom: 80px;
}

/* ==== FOOTER ==== */
.site-footer {
  background: #1f2127;
  color: #fff;
  padding: 50px 0;
  position: relative;
}

/* .site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 21, 27, 0.85);

  z-index: 1;
} */

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.btn-contact-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  overflow: hidden;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.btn-contact-expand .btn-text {
  opacity: 0;
  font-size: 14px;
  font-weight: 600;

  color: #fff;
  transition: opacity 0.3s;
  position: absolute;
  left: 40px;
}

.btn-contact-expand img {
  height: 28px;
  transition: transform 1s;
}

.btn-contact-expand:hover {
  width: 320px;
  justify-content: flex-start;
  padding-left: 40px;
}

.btn-contact-expand:hover .btn-text {
  opacity: 1;
}

.btn-contact-expand:hover img {
  transform: translateX(230px);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.footer-contact-col .info-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
}

.footer-contact-col .address {
  margin-bottom: 12px;
}

.footer-contact-col a,
.footer-contact-col p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.footer-contact-col .email-link {
  text-decoration: underline;
}

.footer-social-col {
  display: flex;
  gap: 15px;
  align-items: center;
  align-self: center;
}

.arquitetos-section .arq-image {
  width: 600px;
  height: 437px;
  overflow: hidden;
}

.arquitetos-section .arq-image img {
  object-fit: contain;
  transform: scale(1) translateY(0) translateX(0);
  transition: transform 1s ease-in-out;
  height: 100%;
  width: 100%;
}

.arquitetos-section .arq-image:hover img {
  transform: scale(1.15) translateY(-50px) translateX(50px);
  transition: transform 1s ease-in-out;
}

@media (max-width: 1024px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
  }

  .footer-social-col {
    align-self: baseline;
  }
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
  }

  .footer-social-col {
    align-self: baseline;
  }
}

/* ====================================================
   HOME — RESPONSIVIDADE MOBILE (max-width: 768px)
   ==================================================== */
@media (max-width: 768px) {

  .site-header {
    top: 0;
  }

  /* ---- Tipografia de seção ---- */
  .section-title {
    font-size: 28px;

    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }

  /* ---- Home sections padding ---- */
  .home-section {
    padding: 56px 0;
  }

  /* ---- HERO BANNER ---- */
  .hero-banner {
    height: 100svh;
  }

  .banner-content.container {
    padding: 0 24px;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .banner-left-wrapper {
    padding-left: 0;
    width: 100%;
  }

  .banner-text-box {
    width: 100%;
  }

  .custom-banner-acf-text {
    font-size: 22px;
    line-height: 1.35;
  }

  .banner-headline {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* Botão VER MAIS no hero — fixo visível no mobile */
  .banner-text-box .default-button {
    width: fit-content;
    margin-top: 24px;
    padding-left: 10px;
  }

  .banner-text-box .default-button .btn-text {
    opacity: 1;
  }

  /* ---- PRODUTOS ---- */
  .produtos-section .container {
    padding-bottom: 16px;
  }

  .produtos-slider-wrapper {
    padding-left: 24px;
  }

  .drag-card {
    width: 75.5vw;
    /* ~297px em tela de 393px */
    height: 147.5vw;
    /* ~580px em tela de 393px */
    aspect-ratio: 297 / 580;
    max-width: 297px;
    max-height: 580px;
    /* Desativa efeito hover de expansão no mobile */
    transition: none;
  }

  .drag-card:hover {
    width: 75.5vw;
    max-width: 297px;
  }

  /* Controles do slider — mais compactos */
  .slider-controls-row {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .slider-prev-arrow,
  .slider-next-arrow {
    width: 40px;
    height: 40px;
  }

  /* ---- REFERÊNCIAS ---- */
  .referencias-section {
    padding-bottom: 0 !important;
  }

  .referencias-layout {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  /* Cabeçalho (título + subtítulo) */
  .ref-text-col {
    flex: none;
    width: 100%;
    padding: 0 24px 24px 24px;
  }

  /* Ocultar botão VER MAIS do cabeçalho no mobile (será exibido pelo .ref-ver-mais-mobile) */
  .ref-text-col>.default-button {
    display: none !important;
  }

  /* Slider vira lista vertical */
  .ref-slider-col {
    width: 100%;
  }

  .ref-slider-wrapper {
    overflow: visible;
    width: 100%;
  }

  .ref-slider {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    padding-right: 0;
    padding-left: 24px;
    padding-bottom: 0;
    gap: 16px;
    scroll-behavior: auto;
  }

  /* Cada card ocupa quase toda a largura */
  .ref-slide-item {
    width: calc(100vw - 48px);
    height: auto;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
  }

  /* Limitar a 3 itens */
  .ref-slide-item:nth-child(n + 4) {
    display: none;
  }

  /* Градиент inferior mais forte para legibilidade */
  .ref-gradient-left {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
    width: 100%;
  }

  .ref-title {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .ref-excerpt {
    font-size: 12px;
    max-width: 80%;
  }

  .ref-content-info {
    bottom: 16px;
    left: 16px;
  }

  /* Esconder controles do carrossel */
  .ref-slider-col .slider-controls-row {
    display: none;
  }

  /* Botão VEJA MAIS abaixo dos cards — visível no mobile */
  .ref-ver-mais-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    border: #1f2127 solid 1px;
    color: #1f2127;
    width: 80%;
    height: 48px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    margin: 0 auto 30px;
  }

  .site-header.scrolled {
    opacity: 1;
    pointer-events: visible;
    transform: none;
  }

  .primary-navigation a:before {
    content: "";
    display: none;
    width: 0;
    height: 0;
    background: none;
    opacity: 0;
    transition: none;
  }

  .primary-navigation a {
    transition: none;
    padding-left: 0 !important;
  }


  .ref-ver-mais-mobile svg {
    height: 18px;
    margin-left: 20px;
  }

  /* Modificar o "plus" icon para parecer uma caixa com seta */
  .ref-plus-icon {
    top: auto;
    bottom: 24px;
    left: auto;
    right: 24px;
    transform: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    /* Sempre visível no mobile */
    border-radius: 0;
  }

  .ref-plus-icon img {
    filter: invert(1) brightness(10);
    height: 12px;
  }

  /* Layout de texto nos cards do referências no mobile */
  .ref-content-info {
    bottom: 24px;
    left: 24px;
    right: 80px;
    /* Evitar cruzar com a caixa da seta */
  }

  .ref-title {
    font-size: 20px;
    font-weight: 300;
  }

  .ref-excerpt {
    font-size: 12px;
    color: #ddd;
    margin-top: 4px;
  }

  /* ---- ARQUITETOS ---- */
  /* Seção vira bloco com imagem de fundo */
  .arquitetos-section {
    /* Override da classe container */
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    height: calc(100vw * 640 / 393);
    /* Mantém a proporção exata 393x640 based na tela */
    min-height: auto;
    max-height: 800px;
    aspect-ratio: 393 / 640;
    display: flex;
    align-items: center;
  }

  /* Imagem ocupa toda a seção como background */
  .arquitetos-section .arq-image {
    position: absolute;
    top: -170px;
    left: 0;
    width: 100%;
    height: calc(100vw * 640 / 393);
    aspect-ratio: 393 / 640;
    z-index: 0;
    order: 0;
  }

  /* Overlay escuro sobre a imagem */
  .arquitetos-section .arq-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 25, 0.62);
    z-index: 1;
  }

  .arquitetos-section .arq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 393 / 640;
    object-position: right;
  }


  /* Grid vira coluna única e posiciona o texto */
  .arquitetos-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 24px;
    box-sizing: border-box;
  }


  .arq-text {
    position: relative;
    z-index: 3;
    padding: 0;
  }

  /* Textos brancos sobre o fundo escuro */
  .arquitetos-section .section-title {
    color: #fff;
  }

  .arquitetos-section .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    margin-bottom: 32px;
  }

  /* Linha separadora (usar borda branca) */
  .arquitetos-section .section-title::after {
    background: rgba(255, 255, 255, 0.3);
  }

  /* Botão VER MAIS — borda branca no fundo escuro */
  .arq-text .default-button.btn-black {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
  }

  .arq-text .default-button.btn-black span {
    opacity: 1;
    color: #fff;
  }

  .arq-text .default-button.btn-black svg {
    filter: invert(0) !important;
  }

  /* ---- CULTURA ---- */
  .cultura-section {
    padding: 80px 0 !important;
  }

  .cultura-section .container {
    padding: 0 24px;
  }

  .cultura-section>.bg-img-absolute div:first-of-type {
    /* Ajusta gradiente lateral para cobrir toda a largura no mobile */
    width: 100%;
    background: linear-gradient(to bottom,
        #1a1b1f 0%,
        transparent 60%) !important;
  }

  .cultura-section [style*="max-width: 450px"] {
    max-width: 100% !important;
  }

  /* ---- BLOG ---- */
  .blog-section .container {
    padding-bottom: 16px;
  }

  .blog-slider-wrapper {
    padding-left: 24px;
  }

  .blog-slider {
    gap: 12px;
  }

  /* Cards do blog — sem expansão horizontal no mobile */
  .blog-slide-card {
    width: clamp(240px, 72vw, 300px);
    height: clamp(240px, 72vw, 300px);
    transition: none;
    flex-shrink: 0;
  }

  .blog-slide-card:hover {
    width: clamp(240px, 72vw, 300px);
  }

  .blog-card-content {
    width: 100%;
    padding: 24px;
  }

  .blog-hover-bg {
    width: 100%;
  }

  .blog-hover-image {
    left: 0;
    width: 100%;
  }

  .blog-title {
    font-size: 16px;
    height: auto;
    line-height: 1.3;
  }

  .blog-date {
    font-size: 12px;
    width: auto;
  }

  .blog-excerpt {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-plus-icon {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .blog-tag {
    font-size: 9px;
    padding: 4px 10px;
  }

  /* Controles blog slider */
  .blog-section .slider-controls-row {
    margin-top: 24px;
    margin-bottom: 40px;
  }


  /* ---- Grids genéricos ---- */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* ---- BTN default visivel no mobile (sem hover) ---- */
  .default-button {
    width: fit-content;
    padding-left: 10px;
  }

  .default-button span,
  .default-button p {
    opacity: 1;
    margin: 0;
  }

  /* ---- Expandable buttons fully expanded on mobile ---- */
  .btn-expand-right {
    width: 170px;
  }

  .btn-expand-right .btn-text {
    opacity: 1;
    color: #000;
  }

  .btn-contact-expand {
    width: 320px;
    justify-content: flex-start;
    padding-left: 40px;
  }

  .btn-contact-expand .btn-text {
    opacity: 1;
  }

  .btn-contact-expand img {
    transform: translateX(230px);
  }

  .card-overlay-btn .btn-text,
  .card-overlay-btn span,
  .card-overlay-btn p {
    opacity: 1;
  }

  .card-inside-title {
    bottom: 96px;
    /* Subir o texto para dar espaço para o botão */
    left: 24px;
  }
}

/* Remoção do link padrão WPML */
.wpml-ls-legacy-list-horizontal {
  display: none;
}

.menu-item.lang-item-5.wpml-ls-item-en {
  display: none;
}

/* Remoção do copy alert */
body .cdp-copy-alert-success,
body .cdp-copy-loader-overlay {
  display: none !important;

  & * {
    display: none !important;
  }
}