/* ============================================================
   FELIPE SAMPAIO IMOBILIÁRIA - CSS GLOBAL
   Design premium para imobiliária em Araguaina/TO
   ============================================================ */

/* ======================
   1. VARIÁVEIS CSS
   ====================== */
:root {
  --primary: #1e3a5f;
  --primary-light: #2563eb;
  --primary-dark: #0f2340;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #22c55e;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================
   2. RESET / BASE
   ====================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 0.5em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ======================
   3. CONTAINER
   ====================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ======================
   4. HEADER / NAV
   ====================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  color: var(--primary-light);
}

.logo-icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-light);
  background: rgba(37, 99, 235, 0.06);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary-light);
  padding-left: 24px;
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--bg-alt);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================
   5. HERO
   ====================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 35, 64, 0.88) 0%, rgba(30, 58, 95, 0.75) 50%, rgba(37, 99, 235, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-compact {
  min-height: 45vh;
  margin-top: 80px;
}

.hero-compact .hero-title {
  font-size: 2.5rem;
}

/* ======================
   6. BOTÕES
   ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  color: var(--primary-light);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  border-color: transparent;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #16a34a);
  color: #ffffff;
}

.btn-success:hover {
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
  color: #ffffff;
}

/* ======================
   7. SEÇÕES
   ====================== */
.section {
  padding: 90px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border-radius: 4px;
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 400;
}

/* ======================
   8. CARDS
   ====================== */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover,
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ======================
   9. GRID SYSTEM
   ====================== */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ======================
   10. CONTADORES / NÚMEROS
   ====================== */
.counters {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.counter-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.counter-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* ======================
   11. SERVIÇOS
   ====================== */
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 95, 0.08));
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: scale(1.1);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-light);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  fill: #ffffff;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ======================
   12. IMÓVEIS / PROPERTY
   ====================== */
.property-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.property-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  color: #ffffff;
  z-index: 2;
}

.property-badge-venda {
  background: var(--primary-light);
}

.property-badge-aluguel {
  background: var(--success);
}

.property-badge-lancamento {
  background: var(--accent);
}

.property-body {
  padding: 22px;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.property-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.property-location {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.property-feature svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-light);
}

/* Property Detail Page */
.property-detail {
  padding-top: 100px;
}

.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.property-detail-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.property-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.property-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.property-detail-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.property-detail-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-light);
}

.property-detail-feature strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.property-detail-feature span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ======================
   13. FILTROS
   ====================== */
.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 30px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.filter-btn.active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #ffffff;
}

.filter-select {
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  min-width: 180px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.filter-search {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}

.filter-search:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.filter-search::placeholder {
  color: var(--text-light);
}

/* ======================
   14. BANNER CTA
   ====================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-list {
  margin-bottom: 32px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
}

/* ======================
   15. PARCEIROS
   ====================== */
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  background: var(--bg);
}

.partner-logo:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ======================
   16. DEPOIMENTOS
   ====================== */
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ======================
   17. GUIA / BLOG
   ====================== */
.article-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.article-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img {
  transform: scale(1.06);
}

.article-body {
  padding: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-title a {
  color: inherit;
}

.article-title a:hover {
  color: var(--primary-light);
}

.article-excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-link:hover {
  gap: 10px;
  color: var(--accent);
}

/* Article Detail */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.75rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text);
}

.article-content ul,
.article-content ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--text);
}

.article-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

/* ======================
   18. FAQ
   ====================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--bg);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question h3,
.faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--primary-light);
}

.faq-item.active .faq-icon svg {
  fill: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ======================
   19. FOOTER
   ====================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.footer-about,
.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-credentials,
.footer-legal-info {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-light);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title,
.footer-col-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after,
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal-links,
.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a,
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclaimer p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 900px;
}

/* ======================
   20. BREADCRUMB
   ====================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

/* Dark breadcrumb on light bg */
.breadcrumb-dark .breadcrumb-item {
  color: var(--text-light);
}

.breadcrumb-dark .breadcrumb-item a {
  color: var(--text-light);
}

.breadcrumb-dark .breadcrumb-item a:hover {
  color: var(--primary-light);
}

.breadcrumb-dark .breadcrumb-separator {
  color: var(--border);
}

.breadcrumb-dark .breadcrumb-current {
  color: var(--text);
}

/* ======================
   21. FORMS
   ====================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}

.form-error {
  font-size: 0.82rem;
  color: #ef4444;
  margin-top: 4px;
}

/* ======================
   22. STEPS
   ====================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}

.step-item {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======================
   23. SOBRE / TEAM
   ====================== */
.team-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-img-wrapper {
  overflow: hidden;
  height: 280px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

.team-body {
  padding: 24px;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.team-credential {
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-light), var(--accent));
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border: 4px solid var(--bg);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.timeline-content {
  width: 42%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow);
}

.timeline-year {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Mission / Vision / Values */
.mvv-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.mvv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 95, 0.08));
  border-radius: 50%;
}

.mvv-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-light);
}

.mvv-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.mvv-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ======================
   24. LEGAL
   ====================== */
.legal-page {
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 60vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--primary-dark);
}

/* ======================
   25. GALERIA
   ====================== */
.gallery {
  margin-bottom: 30px;
}

.gallery-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--primary-light);
}

/* ======================
   26. BADGES
   ====================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-dark);
}

.badge-primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-light);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* ======================
   27. TABLE
   ====================== */
.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 20px 0;
}

.table th,
.table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.92rem;
}

.table th {
  background: var(--primary-dark);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table td {
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.table-striped tr:nth-child(even) td {
  background: var(--bg-alt);
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: rgba(37, 99, 235, 0.04);
}

/* ======================
   28. ANIMAÇÕES
   ====================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ======================
   29. UTILITIES
   ====================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent { color: var(--accent) !important; }
.text-primary { color: var(--primary-light) !important; }
.text-success { color: var(--success) !important; }
.text-light { color: var(--text-light) !important; }
.text-white { color: #ffffff !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 48px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mt-5 { margin-top: 48px !important; }

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.py-3 { padding-top: 24px !important; padding-bottom: 24px !important; }
.py-5 { padding-top: 48px !important; padding-bottom: 48px !important; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

.bg-alt { background-color: var(--bg-alt); }
.bg-white { background-color: var(--bg); }

.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Checkmark list */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ======================
   30. RESPONSIVE
   ====================== */

/* Tablet */
@media (max-width: 1024px) {
  .property-detail-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  /* Header Mobile */
  .header .container {
    height: 70px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: var(--bg-alt);
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero Mobile */
  .hero {
    min-height: 75vh;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-compact {
    min-height: 35vh;
    margin-top: 70px;
  }

  .hero-compact .hero-title {
    font-size: 1.8rem;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  /* Counters */
  .counters .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .counter-number {
    font-size: 2.2rem;
  }

  /* Filter */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select,
  .filter-search {
    min-width: unset;
    width: 100%;
  }

  /* CTA */
  .cta-title {
    font-size: 1.75rem;
  }

  /* Partners */
  .partners {
    gap: 20px;
  }

  .partner-logo {
    width: 140px;
    height: 60px;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .step-item::after {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: 100%;
  }

  /* Gallery */
  .gallery-main {
    height: 300px;
  }

  .gallery-thumb {
    width: 80px;
    height: 56px;
  }

  /* Table */
  .table {
    display: block;
    overflow-x: auto;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 16px 32px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .counters .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .filter-bar {
    padding: 16px;
  }

  .property-detail-features {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 220px;
  }

  .gallery-thumb {
    width: 60px;
    height: 44px;
  }

  .partners {
    gap: 12px;
  }

  .partner-logo {
    width: 120px;
    height: 50px;
    font-size: 0.78rem;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .hero-compact .hero-title {
    font-size: 1.5rem;
  }
}

/* ======================
   31. CONTACT PAGE
   ====================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.contact-info-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-info-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 220px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 16px;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   32. NO RESULTS
   ====================== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results svg {
  width: 64px;
  height: 64px;
  fill: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results h3 {
  color: var(--text-light);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================================
   HOMEPAGE - CLASSES ESPECÍFICAS
   ============================================================ */

/* --- Grid standalone (sem .grid pai) --- */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

/* --- Counter Card (alias para counter-item) --- */
.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.counter-card .counter-icon svg {
  stroke: var(--accent);
  fill: none;
}

.counter-number,
.counter-label {
  display: block;
}

/* --- Section Header & CTA --- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- Services section --- */
.services {
  padding: 90px 0;
  background: var(--bg-alt);
}

/* --- Featured Properties section --- */
.featured-properties {
  padding: 90px 0;
}

/* --- Filter Buttons (homepage style) --- */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* --- Badge variants (sem prefixo property-) --- */
.badge-venda {
  background: var(--primary-light);
}

.badge-aluguel {
  background: var(--success);
}

.badge-lancamento {
  background: var(--accent);
}

/* --- Button Property --- */
.btn-property {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  background: transparent;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-property:hover {
  background: var(--primary-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* --- Service Link --- */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* --- CTA Banner (homepage overlay variant) --- */
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 35, 64, 0.92) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(37, 99, 235, 0.7) 100%);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner-text {
  max-width: 700px;
}

.cta-banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* --- CTA Checklist --- */
.cta-checklist {
  list-style: none;
  margin-bottom: 32px;
}

.cta-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-checklist-item svg {
  flex-shrink: 0;
}

/* --- Partners section & grid --- */
.partners.animate-on-scroll {
  padding: 90px 0;
  background: var(--bg-alt);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-name {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.88rem;
}

/* --- Testimonials section --- */
.testimonials {
  padding: 90px 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

/* --- Guide Cards (homepage) --- */
.guide {
  padding: 90px 0;
  background: var(--bg-alt);
}

.guide-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.guide-card-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.guide-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guide-card:hover .guide-card-img {
  transform: scale(1.06);
}

.guide-card-body {
  padding: 24px;
}

.guide-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.guide-card-date svg {
  width: 14px;
  height: 14px;
}

.guide-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.guide-card-title a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.guide-card-title a:hover {
  color: var(--primary-light);
}

.guide-card-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- About Summary (homepage) --- */
.about-summary {
  padding: 90px 0;
}

.about-summary-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-summary-text {
  text-align: center;
}

.about-summary-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-summary-text .btn {
  margin-top: 8px;
}

/* --- Hero Overlay (div fallback) --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 35, 64, 0.88) 0%, rgba(30, 58, 95, 0.75) 50%, rgba(37, 99, 235, 0.55) 100%);
  z-index: 1;
}

/* --- FAQ section --- */
.faq {
  padding: 90px 0;
  background: var(--bg-alt);
}

/* ============================================================
   HOMEPAGE RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services,
  .featured-properties,
  .testimonials,
  .guide,
  .about-summary,
  .faq {
    padding: 60px 0;
  }

  .partners.animate-on-scroll {
    padding: 60px 0;
  }

  .cta-banner-title {
    font-size: 1.5rem;
  }

  .cta-banner-desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .counter-card {
    padding: 16px 12px;
  }

  .counter-number {
    font-size: 2rem;
  }

  .cta-banner-title {
    font-size: 1.3rem;
  }

  .partner-logo {
    width: 130px;
    height: 60px;
    font-size: 0.8rem;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* --- Mobile Nav Dropdown Fix --- */
@media (max-width: 768px) {
  .nav-dropdown.active .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: auto;
  }

  .nav-dropdown.active .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .nav-dropdown.active .nav-dropdown-menu a:hover {
    color: #ffffff;
    background: transparent;
  }
}
