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

:root {
  --orange: #E8631A;
  --orange-dark: #D4550F;
  --blue-dark: #0A1E3D;
  --blue-medium: #122D52;
  --blue-hero: #0B2341;
  --teal: #1A6B5C;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F0F1F3;
  --gray-200: #E2E4E8;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #374151;
  --gray-900: #1F2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contMeio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  position: relative;
}

.logo-stairs {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 10px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.logo-icon.white {
  background: var(--orange);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 4px;
}

.logo-tagline {
  font-size: 7px;
  color: var(--gray-400);
  letter-spacing: 1px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

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

.header-phone {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.header-phone:hover {
  background: var(--orange-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--blue-dark);
  cursor: pointer;
}

/* HERO */
.hero {
  background: var(--blue-hero);
  position: relative;
  padding: 50px 0 120px;
  /* overflow: hidden; */
}

.contLinha {
  position: absolute;
  bottom: -23px;
  /* background-color: red; */
  width: 100%;
  left: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?w=1400&h=600&fit=crop') center/cover;
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 30px;
}

.hero-content {
  max-width: 600px;
  color: var(--white);
}

.hero-content h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.highlight-blue {
  color: #5DADE2;
}

.highlight-orange {
  color: var(--orange);
}

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.9);
}

.hero-feature i {
  color: #4ADE80;
  font-size: 14px;
}

.hero-partner-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  min-width: 260px;
  text-align: center;
}

.partner-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 8px;
}

.partner-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  display: block;
}

.hero-partner-card strong {
  font-size: 15px;
  display: block;
  margin: 4px 0 10px;
  line-height: 1.3;
}

.hero-partner-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* SEARCH */
.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
}

.search-tab {
  padding: 12px 24px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.search-tab.active {
  background: var(--white);
  color: var(--orange);
}

.search-tab:hover:not(.active) {
  background: rgba(255,255,255,0.25);
}

.search-bar {
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.search-field {
  flex: 1;
}

.search-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--gray-600);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  appearance: auto;
}

.search-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.search-btn:hover {
  background: var(--orange-dark);
}

.search-advanced {
  font-size: 13px;
  color: var(--gray-600);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
}

.search-advanced:hover {
  color: var(--orange);
}

/* QUICK SERVICES */
.quick-services {
  padding: 65px 0 40px;
}

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

.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  position: relative;
}

.quick-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.quick-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.quick-icon.orange { background: var(--orange); }
.quick-icon.blue { background: #2563EB; }
.quick-icon.darkblue { background: var(--blue-dark); }
.quick-icon.teal { background: var(--teal); }

.quick-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.quick-info p {
  font-size: 12.5px;
  color: var(--gray-400);
}

.quick-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 14px;
  transition: color 0.2s;
}

.quick-card:hover .quick-arrow {
  color: var(--orange);
}

/* PROPERTIES */
.properties {
  padding: 10px 0 50px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header.center {
  flex-direction: column;
  text-align: center;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-all:hover {
  text-decoration: underline;
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 8px;
}

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

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.property-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

.badge {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  z-index: 2;
}

.badge.type-casa { left: 12px; background: var(--blue-dark); }
.badge.type-apto { left: 12px; background: var(--blue-dark); }
.badge.type-terreno { left: 12px; background: var(--blue-dark); }
.badge.type-sobrado { left: 12px; background: var(--blue-dark); }
.badge.status-venda { left: 12px; top: 38px; background: #16A34A; }
.badge.status-alugar { left: 12px; top: 38px; background: var(--orange); }

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  transition: all 0.2s;
}

.fav-btn:hover {
  color: #EF4444;
  background: var(--white);
}

.property-body {
  padding: 16px;
}

.property-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.property-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.property-specs span {
  font-size: 12px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-specs i {
  color: var(--gray-400);
  font-size: 12px;
}

.property-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.property-location {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-location i {
  color: var(--orange);
}

.property-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background 0.2s;
}

.property-btn:hover {
  background: var(--blue-medium);
}

/* SOLUTIONS */
.solutions {
  padding: 50px 0;
  background: var(--gray-50);
}

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

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.solution-card:hover {
  box-shadow: var(--shadow-lg);
}

.solution-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

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

.solution-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 61, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon-large {
  font-size: 42px;
  color: var(--orange);
}

.solution-body {
  padding: 20px;
}

.solution-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.solution-body p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
}

.solution-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--orange);
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.solution-link:hover {
  background: var(--orange);
  color: var(--white);
}

/* ECOSYSTEM */
.ecosystem {
  background: var(--blue-dark);
  padding: 60px 0;
}

.ecosystem-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.eco-content {
  flex: 1;
  color: var(--white);
}

.eco-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.eco-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.eco-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.eco-btn:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.eco-stats {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.eco-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  color: var(--white);
  min-width: 130px;
}

.eco-stat i {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 8px;
}

.eco-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.eco-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* CTA */
.cta-section {
  background: var(--blue-medium);
  padding: 30px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.cta-whatsapp:hover {
  background: #1FB855;
}

.cta-contato {
  background: var(--white);
  color: var(--blue-dark);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.cta-contato:hover {
  background: var(--gray-100);
}

/* FOOTER */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

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

.social-links a:hover {
  background: var(--orange);
}

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

.partner-logos {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.partner-badge {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.partner-slogan {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .properties-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-stats {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
  
  .hero {
    padding: 50px 0 350px;
  }

  .header-phone {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-partner-card {
    min-width: auto;
    width: 100%;
  }

  .search-tabs {
    flex-wrap: wrap;
  }

  .search-tab {
    padding: 10px 16px;
    font-size: 12px;
  }

  .search-bar {
    flex-direction: column;
    gap: 12px;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }

  .search-advanced {
    justify-content: center;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .properties-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-inner {
    flex-direction: column;
  }

  .eco-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cta-whatsapp,
  .cta-contato {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 20px;
  }

  .eco-stats {
    grid-template-columns: 1fr 1fr;
  }

  .eco-stat {
    min-width: auto;
  }

  .section-header h2,
  .eco-content h2 {
    font-size: 22px;
  }

  .cta-text h3 {
    font-size: 17px;
  }
}
