:root {
  /* --primary-color: #004a8f; /* Cor antiga (Setin Premium Blue) - Remova o comentário para voltar */
  --primary-color: #3e4095; /* Novo Azul Casaforte */
  
  /* --primary-dark: #003669; /* Cor antiga (Dark) */
  --primary-dark: #2a2b66; /* Novo Azul Casaforte (Dark) para efeitos de hover */
  
  --secondary-color: #f7941d; /* Setin Orange/Gold accent */
  --text-color: #444444;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --font-main: "Inter", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
  --border-radius: 0;
  --container-width: 1200px; /* Reduzido de 1300px para 1200px conforme solicitado */
  --accent-color: #f0f4f8; /* Light blue/grey for backgrounds */
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.1rem;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Typography - Montserrat Black (Global Impact) */
.serif {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.07em; /* Ultra compacto */
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.3em;
  overflow-wrap: normal !important;
  word-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

/* Tablet & Mid-range Responsiveness (Global) */
@media (max-width: 1200px) {
  h1 { font-size: clamp(1.4rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  h3 { font-size: 1.2rem; }
  .logo img { height: 45px !important; }
  .container { padding: 0 25px !important; }
  
  /* Force Hamburger menu visibility */
  .mobile-toggle { display: flex !important; }
  .nav-links { display: none !important; }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(1.2rem, 8vw, 1.8rem); }
  h2 { font-size: clamp(1.0rem, 6vw, 1.4rem); }
  h3 { font-size: 1.1rem; }
  .logo img { height: 40px !important; }
}

.uppercase-spaced {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
}

.color-primary { color: var(--primary-color); }
.color-gold { color: var(--secondary-color); }

/* Header */
.main-header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.main-header.scrolled,
.main-header.header-internal {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 70px;
}

.logo {
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo img {
  height: clamp(45px, 7vw, 55px);
  width: auto;
}

.logo span {
  font-weight: 300;
  opacity: 0.8;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  padding: 8px 2px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  border-radius: 0;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.85;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-portal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 12px 35px;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}
.btn-portal:hover {
  background: #003a70;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.main-header:not(.scrolled):not(.header-internal) .logo,
.main-header:not(.scrolled):not(.header-internal) .nav-links a,
.main-header:not(.scrolled):not(.header-internal) .btn-portal {
  color: var(--white);
}

.main-header:not(.scrolled):not(.header-internal) .btn-portal {
  border-color: var(--white);
}

.main-header:not(.scrolled):not(.header-internal) .nav-links a:hover,
.main-header:not(.scrolled):not(.header-internal) .nav-links a:focus-visible {
  color: #ffffff;
}

.main-header:not(.scrolled):not(.header-internal) .nav-links a::after {
  background: rgba(255, 255, 255, 0.95);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  transition: var(--transition);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}


/* Hero Premium */
.hero-premium {
  min-height: 100vh;
  height: auto;
  padding-bottom: 60px; /* Garante respiro no mobile se o conteúdo empurrar até o fim */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding-top: var(--header-height);
}

@media (max-width: 1100px) {
  .hero-premium {
    min-height: 700px;
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    min-height: 600px;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-refined {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 74, 143, 0.4)
  );
  z-index: 1;
}

/* Section Spacing - Tablet Optimization */
@media (max-width: 1100px) {
  .py-40 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

.projects-tabs-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1100px) {
  .selections-section,
  .projects-tabs-section {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.hero-text h1 span {
  color: var(--secondary-color);
}

.hero-text p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 60px;
}

/* Search Widget */
.search-widget {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}

.search-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 20px;
  align-items: flex-end;
}

.search-field {
  text-align: left;
}

.search-field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.search-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: var(--white);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235f5f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.btn-search {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.btn-search:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}

.btn-search.btn-light {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-search.btn-light:hover {
  background: var(--bg-light);
}

.btn-filter,
.btn-full,
.btn-portal,
.btn-text {
  text-decoration: none;
}

@media (max-width: 992px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .search-form {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    justify-content: stretch;
    flex-direction: column;
  }
  .hero-actions .btn-search {
    justify-content: center;
  }
  .hero-text h1 {
    font-size: clamp(1.8rem, 8vw, 2.1rem);
  }
}

/* Animations */
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Common Section Styles */
section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

.section-header {
  margin-bottom: 40px;
}

.section-header .subtitle {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
}

/* Animations */
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* --- Component Styles Extracted from Views --- */

/* Selections & Tabs */
.selections-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e6ebf0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.service-media {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-content h3 {
  margin-bottom: 8px;
}

.service-content p {
  margin-bottom: 12px;
}

.service-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.service-link {
  color: var(--primary-color);
}

.selections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.selection-card {
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.selection-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.selection-card:hover .selection-image {
  transform: scale(1.1);
}

.selection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 74, 143, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
}

.selection-overlay h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.selection-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.selection-overlay .tag {
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.btn-text {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

/* Versatility Section */
.versatility-section {
  padding: 120px 0;
}

.grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 4vw, 50px);
}

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

.check-list {
  list-style: none;
  margin: 35px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.check-list i {
  color: var(--primary-color);
  width: 22px;
}

.image-grid-composite {
  position: relative;
  height: 500px;
}

.img-large {
  width: 85%;
  height: 100%;
  background: var(--primary-color);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.img-small {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  height: 180px;
  background: var(--white);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  border: 10px solid var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mcmv-gallery {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.mcmv-gallery-slider {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 12px;
}

.mcmv-gallery-viewport {
  overflow: hidden;
}

.mcmv-gallery-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.mcmv-gallery-arrow:hover {
  background: var(--primary-dark);
}

.mcmv-gallery-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mcmv-subtitle {
  margin-top: 30px;
  margin-bottom: 14px;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.mcmv-facade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mcmv-facade-item {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.mcmv-facade-item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}

.mcmv-facade-item span {
  display: block;
  padding: 10px 12px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.88rem;
}

.mcmv-gallery-item {
  display: block;
  flex: 0 0 calc((100% - 42px) / 4);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mcmv-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mcmv-gallery-item:hover img {
  transform: scale(1.06);
}

/* Tabs Section */
.projects-tabs-section {
  padding: 160px 0 120px;
}

.tabs-nav {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.tab-btn {
  background: var(--bg-light);
  border: none;
  padding: 12px 25px;
  border-radius: 0;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.project-mini-card {
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.project-mini-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 250px;
}

.card-info {
  padding: 25px;
}

.card-info .tag {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.card-info h4 {
  margin-bottom: 5px;
}

.card-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .selections-grid {
    grid-template-columns: 1fr;
  }
  .mcmv-facade-grid {
    grid-template-columns: 1fr;
  }
  .mcmv-gallery-item {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 576px) {
  .mcmv-gallery-slider {
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
  }
  .mcmv-gallery-arrow {
    width: 38px;
    height: 38px;
  }
  .mcmv-gallery-item {
    flex-basis: 100%;
  }
}

/* Properties Listing (Setin Style) */
.page-header {
  padding: 140px 0 30px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.page-header h1 span {
  color: var(--primary-color);
  font-weight: 300;
}

.filters-section {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: var(--header-height);
  z-index: 100;
}

.horizontal-filters {
  display: flex;
  gap: 20px;
  align-items: center;
}

.filter-group {
  flex: 1;
}

.filter-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: var(--white);
  font-family: inherit;
  color: var(--text-dark);
  font-weight: 500;
}

.btn-filter {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.properties-listing {
  padding: 60px 0 100px;
}

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

.property-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.property-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-media {
  height: 250px;
  position: relative;
  overflow: hidden;
}

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

.status-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-title-box {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 25px;
}

.card-title-box h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}

.card-body {
  padding: 25px;
}

.card-body .location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.property-specs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.spec-item i {
  color: var(--primary-color);
  width: 20px;
}

.spec-item span {
  font-size: 0.75rem;
  font-weight: 600;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--bg-light);
  color: var(--primary-color);
  text-decoration: none;
  padding: 15px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-full:hover {
  background: var(--primary-color);
  color: var(--white);
}

@media (max-width: 1100px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .horizontal-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .properties-grid {
    grid-template-columns: 1fr;
  }
}

/* Project Detail */
.back-link {
  display: inline-block;
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

.grid-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.main-image-placeholder {
  height: 500px;
  background: var(--light-bg);
  border-radius: 0;
}

.project-type {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.technical-info {
  margin: 40px 0;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 0;
}

.tech-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #777;
}

.tech-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Contact Page */
.info-list {
  margin-top: 40px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item strong {
  display: block;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.styled-form {
  background: var(--white);
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Main Footer */
.main-footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-col p {
  line-height: 1.6;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-credits {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-credits a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .footer-col {
    align-items: center;
  }
  .main-footer {
    padding: 60px 0 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

/* Contact Page (Setin Style) */
.contact-header-premium {
  position: relative;
  min-height: 450px;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 143, 0.4);
  backdrop-filter: blur(2px);
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.contact-card-wrapper {
  background: var(--white);
  padding: 60px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 5;
  margin-bottom: -150px; /* Overlap effect the right way */
}

.contact-form-main h1 {
  font-size: 2.5rem;
  margin: 10px 0 20px;
  color: var(--primary-color);
}

.contact-form-main h1 span {
  font-weight: 300;
}

.contact-form-main p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Contact Info Section */
.contact-info-section {
  padding: 200px 0 120px;
  background: var(--accent-color);
}

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

.info-block {
  background: var(--white);
  padding: 40px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
}

.info-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-color);
}

.info-block .icon-box {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.info-block .icon-box i {
  width: 25px;
  height: 25px;
}

.info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .premium-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.premium-form .form-group {
  margin-bottom: 25px;
}

.premium-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 74, 143, 0.08);
  outline: none;
}

/* Project Detail (Setin Style) */
.project-detail {
  background: var(--white);
  padding-top: var(--header-height);
}

.header-internal ~ main .project-detail {
  padding-top: 70px;
}

.detail-mosaic {
  display: flex;
  height: 600px;
  gap: 4px;
  background: #000;
  overflow: hidden;
  position: relative;
}

.mosaic-main {
  flex: 2; /* 65% aprox */
  height: 100%;
}

.mosaic-side {
  flex: 1; /* 35% aprox */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.mosaic-item {
  height: 100%;
  overflow: hidden;
  background: #111;
  position: relative;
}

.mobile-only-slide {
  display: none;
}

.bg-muted-arch {
  background: #1a1a1a;
  cursor: default;
}

.btn-view-gallery {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.btn-view-gallery:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-view-gallery i {
  width: 18px;
  height: 18px;
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

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

/* Specs Bar Detail Refined */
.specs-bar-fixed {
  background: var(--primary-color);
  color: var(--white);
  padding: 35px 0;
  box-shadow: 0 10px 30px rgba(0, 74, 143, 0.15);
}

.spec-tile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.spec-tile i {
  color: var(--white);
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.tile-info {
  display: flex;
  flex-direction: column;
}

.tile-info small {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  font-weight: 600;
}

.tile-info span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

.specs-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.spec-tile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.spec-tile i {
  width: 28px;
  height: 28px;
  color: var(--white);
  opacity: 0.8;
}

.tile-info {
  display: flex;
  flex-direction: column;
}

.tile-info small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.tile-info span {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-contact-hero {
  background: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 2px solid var(--secondary-color);
}

.btn-contact-hero:hover {
  background: transparent;
  color: var(--secondary-color);
}

/* Main Detail Content */
.detail-main-content {
  padding-top: 80px;
  padding-bottom: 20px;
}

.detail-grid-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.description-box h2 {
  font-size: 2.22rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.text-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
  max-width: 680px;
}

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

/* Differentials Dinâmicos */
.differentials-box {
  background: #fbfbfb;
  padding: 40px;
  border-radius: 0;
  align-self: start;
}

.differentials-box h3 {
  font-size: 0.75rem;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.diff-item i {
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
}

/* Lead Capture Section */
.lead-capture-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.narrow-container {
  max-width: 800px;
}

.btn-full-premium {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #003669 100%);
  color: var(--white);
  border: none;
  padding: 18px 30px;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 74, 143, 0.15);
}

.btn-full-premium:hover {
  background: linear-gradient(135deg, #0056a1 0%, #004280 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 74, 143, 0.25);
}

@media (max-width: 992px) {
  .project-detail {
    padding-top: 70px;
  }
  .detail-mosaic {
    height: 480px;
  }
  .specs-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .detail-grid-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mosaic-main {
    flex: 1;
  }
  .mosaic-side {
    display: none;
  }
  .description-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .project-detail {
    padding-top: 70px;
  }
  .detail-mosaic {
    height: 420px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    background: #000;
  }
  .detail-mosaic::-webkit-scrollbar {
    display: none;
  }
  
  .mosaic-main {
    min-width: 100%;
    scroll-snap-align: center;
  }
  
  .mosaic-side {
    display: flex; /* Mudamos para flex para alinhar no scroll */
    min-width: fit-content;
  }
  
  .mosaic-item {
    min-width: 100vw;
    scroll-snap-align: center;
  }

  .mosaic-item.mobile-only-slide {
    display: block;
  }

  .specs-bar-fixed {
    position: relative;
    top: 0;
    padding: 25px 0;
  }
  .spec-tile {
    width: 48%;
    gap: 10px;
  }
  .spec-tile i {
    width: 22px;
    height: 22px;
  }
  .tile-info span {
    font-size: 0.95rem;
  }
  .btn-contact-hero {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .btn-view-gallery {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 576px) {
  .spec-tile {
    width: 100%;
    margin-bottom: 10px;
  }
  .description-box h2 {
    font-size: 1.5rem;
  }
  .info-text h1 {
    font-size: 1.8rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF !important;
  border-radius: 0;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #FFF !important;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

/* --- Modernization Phase 2 - New Components --- */

/* Technical Details & Brochure */
.technical-details-section {
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.technical-card {
  padding: 40px;
}

@media (max-width: 768px) {
  .technical-card {
    padding: 25px 20px;
  }
}

.brochure-card {
  background: linear-gradient(135deg, #004a8f 0%, #003669 100%);
  border-radius: 0;
  color: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brochure-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 74, 143, 0.25);
}

.brochure-card * {
  position: relative;
  z-index: 1;
}

.btn-outline-white {
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 0;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

/* Map Styling */
.map-card {
  transition: var(--transition);
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.map-container {
  flex: 1;
  min-height: 250px;
}

.map-container iframe {
  filter: grayscale(0.2) contrast(1.1);
}

/* Projects Index - Refined Filters */
.filters-bar-premium {
  background: var(--white);
  padding: 24px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  border: 1px solid #eee;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.filter-group select, .filter-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fdfdfd;
}

.btn-premium-filter {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-premium-filter:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* CRM & Admin Utilities */
.status-badge {
  padding: 4px 12px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-novo { background: #fee2e2; color: #991b1b; }
.status-atendido { background: #dcfce7; color: #166534; }

@media (max-width: 768px) {
  .technical-details-section .grid {
    grid-template-columns: 1fr;
  }
  .filters-bar-premium {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Mosaico Arquitetônico Gallery */
/* Thumbnail Gallery (Ambientes e Detalhes) */
.mcmv-gallery-container {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mcmv-gallery-header {
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.mcmv-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mcmv-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.thumbnail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.thumbnail-item {
    width: 130px;
    height: 130px;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

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

.thumbnail-item.has-overlay .thumb-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 143, 0.7); /* Cor primaria com transparência */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    pointer-events: none;
}

@media (max-width: 768px) {
    .thumbnail-item {
        width: 100px;
        height: 100px;
    }
    .thumbnail-grid {
        gap: 10px;
        justify-content: flex-start;
    }
}

/* About Page Redesign */
.about-hero {
    height: 60vh;
    background-size: cover;
    background-position: center 20%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    color: #888 !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.history-section {
    padding: 100px 0;
}

.expertise-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.expertise-group {
    margin-bottom: 60px;
}

.expertise-group h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.expertise-item i {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-item span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.mvv-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
}

.mvv-card i {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-commercial-section {
    padding: 100px 0;
    text-align: center;
}

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

.contact-mini-card {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid #eee;
}

.contact-mini-card:hover {
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: var(--secondary-color);
}

.contact-mini-card i {
    width: 35px;
    height: 35px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-mini-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-mini-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-mini-card .highlight {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .mvv-grid, .contact-mini-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
}

/* Expertise Card Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-card {
    height: 200px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-card .bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 74, 143, 0.7); /* Primário com transparência */
    z-index: 2;
    transition: var(--transition);
}

.expertise-card:hover .bg-img {
    transform: scale(1.1);
}

.expertise-card:hover::after {
    background: rgba(0, 74, 143, 0.9); /* Azul Primário no hover */
}

.expertise-card-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.expertise-card-content i {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
    color: var(--white);
}

.expertise-card-content span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Light DNA Section */
.mvv-section-light {
    padding: 100px 0;
    background: #fcfcfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.mvv-section-light .mvv-card {
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.mvv-section-light .mvv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .expertise-card {
        height: 160px;
    }
}

/* CTA Humanizado SEO - Fix Responsivo */
.cta-card-human {
  width: 100%;
  max-width: 450px;
  margin: 30px auto;
  background: #fff;
  border-radius: 0;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid #eef2f7;
  text-align: center;
}

.avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.online-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: #22c55e;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.btn-whatsapp-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff !important;
  padding: 16px 24px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

.btn-whatsapp-premium:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 768px) {
  .cta-card-human {
    padding: 30px 20px;
    margin: 20px auto;
  }
}


/* CTA Humanizado SEO */
.cta-card-human {
  max-width: 400px;
  margin: 0 auto;
}
.avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
}
.online-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #22c55e;
  border: 3px solid var(--white);
  border-radius: 50%;
}
.btn-whatsapp-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff !important;
  padding: 15px 20px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  border: none;
}
.btn-whatsapp-premium:hover {
  background: #128c7e;
  transform: scale(1.02);
}
.border-light { border: 1px solid #f0f0f0; }

/* Restaurando botões de cards que sumiram */
.btn-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 12px 15px;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 15px;
}
.btn-card:hover {
  background: #003a70;
  transform: translateY(-2px);
}
.btn-card-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: var(--primary-color) !important;
  border: 1.5px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.btn-card-outline:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Galeria Mini Home */
.mcmv-gallery-mini {
  margin-bottom: 20px;
}
.thumbnail-grid-mini {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.thumbnail-item-mini {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid #eee;
}
.thumbnail-item-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.thumbnail-item-mini:hover img {
  transform: scale(1.1);
}
.thumb-more-overlay-mini {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .thumbnail-grid-mini {
    grid-template-columns: repeat(5, 1fr);
  }
}


@media (max-width: 992px) {
  .grid-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Submenu Dropdown Refined */
.nav-links li { position: relative; }
.submenu {
    list-style: none !important;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 0; /* Quadrado conforme solicitado */
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

/* Triângulo indicador */
.submenu::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu li { width: 100%; margin: 0 !important; list-style: none !important; }
.submenu li a {
    padding: 14px 20px !important;
    display: block;
    color: var(--text-dark) !important;
    font-size: 0.8rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}
.submenu li:last-child a { border-bottom: none; }

.submenu li a:hover {
    background: #f8fafc;
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}



/* Global Page Header (Hero) */
.page-header-premium { 
    padding: 180px 0 160px; 
    position: relative; 
    margin-bottom: 0;
}
.page-header-premium h1,
.page-header-premium .text-white,
.page-header-premium .breadcrumb,
.page-header-premium .breadcrumb a,
.page-header-premium .breadcrumb span,
.page-header-premium p {
    color: #ffffff !important;
}

@media (max-width: 1100px) {
    .page-header-premium {
        padding: 130px 0 80px;
    }
}

@media (max-width: 768px) {
    .page-header-premium {
        padding: 110px 0 60px;
    }
}

/* Cookie Consent Bar */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    border-left: 5px solid var(--primary-color);
    padding: 25px 40px;
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 992px) {
    .cookie-content { flex-direction: column; text-align: center; gap: 20px; }
    .cookie-info { flex-direction: column; }
    .cookie-consent { bottom: 0; left: 0; right: 0; padding: 20px; }
}

/* ==========================================================================
   MOBILE MENU PREMIUM OVERRIDE (Forced to the end for maximum priority)
   ========================================================================== */
@media (max-width: 992px) {
  .mobile-toggle {
    display: block !important;
    color: var(--white) !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background-color: var(--primary-color) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding: 80px 40px 40px !important;
    gap: 5px !important;
    z-index: 2000 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: -15px 0 50px rgba(0,0,0,0.7) !important;
    overflow-y: auto !important;
  }

  .nav-links.active {
    right: 0 !important;
  }

  .nav-links li {
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    display: block !important;
  }

  .nav-links a {
    font-size: 1rem !important;
    color: var(--white) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
  }

  .has-submenu.active > a {
    color: var(--gold-color) !important;
    border-bottom-color: rgba(212, 175, 55, 0.4) !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  /* Submenu Mobile - Fixed Overlap */
  .submenu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 0 0 0 20px !important;
    display: none !important;
    border-top: none !important;
    width: 100% !important;
    margin: 0 !important;
    border-left: 2px solid var(--gold-color) !important;
    transform: none !important;
  }

  .submenu li a {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: none !important;
    padding: 12px 0 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-weight: 500 !important;
  }

  .submenu li a:hover {
    color: var(--gold-color) !important;
  }

  .submenu::before { display: none !important; }
  .has-submenu.active .submenu { 
    display: block !important; 
  }

  /* CTA Mobile no Menu */
  .mobile-cta-item {
    margin-top: 30px !important;
    border-bottom: none !important;
    padding: 0 !important;
  }

  .btn-cta-mobile {
    background: linear-gradient(135deg, var(--gold-color), #c5a059) !important;
    color: var(--primary-color) !important;
    padding: 18px 25px !important;
    border-radius: 0 !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border: none !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3) !important;
    width: 100% !important;
  }
}

/* Imagem Premium Fix */
.image-wrapper-premium {
    width: 100%;
    height: 100%;
    max-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-wrapper-premium {
        max-height: 350px;
    }
}

