@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');


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


:root {
  
  --bg-base:   #06091f;
  --bg-alt:    #0b0f2e;
  --bg-card:   #0e1340;
  --bg-card2:  #101648;
  --bg-input:  #0c1138;
  --bg-form:   #0b0f2e;

  
  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.12);

  
  --yellow:    #FFD600;
  --yellow-h:  #e6c000;
  --green:     #22c55e;
  --white:     #ffffff;
  --muted:     #7c85b8;

  --pill-led:        rgba(59,130,246,0.18);
  --pill-led-txt:    #60a5fa;
  --pill-empena:     rgba(239,68,68,0.18);
  --pill-empena-txt: #f87070;
  --pill-shopping:   rgba(168,85,247,0.18);
  --pill-shopping-txt:#be80fa;
  --pill-elevador:   rgba(34,197,94,0.18);
  --pill-elevador-txt:#44d472;
  --pill-lona:       rgba(249,115,22,0.18);
  --pill-lona-txt:   #fb8f3c;
  --pill-restaurante:rgba(190,18,60,0.2);
  --pill-restaurante-txt:#fb7185;

  
  --grad-led:        linear-gradient(135deg,#140d52,#0d1d6a);
  --grad-empena:     linear-gradient(135deg,#380a0a,#6a1010);
  --grad-shopping:   linear-gradient(135deg,#0d1620,#102244);
  --grad-elevador:   linear-gradient(135deg,#0a2616,#0f4022);
  --grad-lona:       linear-gradient(135deg,#1c0a30,#40104e);
  --grad-restaurante:linear-gradient(135deg,#2d0f1a,#4a0f28);

 
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}


html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


.accent        { color: var(--yellow); }
.eyebrow       { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; color: var(--yellow); text-transform: uppercase; margin-bottom: 0.6rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2.6rem,4.5vw,4.2rem); font-weight: 900; line-height: 0.95; margin-bottom: 1rem; }
.section-sub   { font-family: var(--font-body); font-size: 0.88rem; color: var(--white); max-width: 500px; margin-top: 0.4rem; line-height: 1.6; }


.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.delay-1 { transition-delay: .15s; }
.fade-in.delay-2 { transition-delay: .3s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

 
#navbar {
  position: sticky; top: 0; z-index: 100;
  height: 72px;
  background: rgba(2, 9, 30, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.8rem;
}

.logo {
  display: flex; align-items: center;
  color: var(--white); text-decoration: none;
}
.logo-img {
  max-height: 120px;
  margin-top: 20px; 
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8); text-decoration: none;
  transition: color .18s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.btn-whatsapp {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--white); padding: 0.38rem 1rem;
  border-radius: 7px; font-size: 0.74rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body); transition: border-color .18s;
}
.btn-whatsapp:hover { border-color: rgba(255,255,255,0.5); }

.btn-orcamento {
  background: var(--yellow); color: #000;
  padding: 0.38rem 1.1rem; border-radius: 7px;
  font-size: 0.74rem; font-weight: 900; letter-spacing: 0.06em;
  cursor: pointer; border: none; font-family: var(--font-body);
  transition: background .18s;
}
.btn-orcamento:hover { background: var(--yellow-h); }


.btn-primary {
  background: var(--yellow); color: #000;
  padding: 0.65rem 1.4rem; border-radius: 8px;
  font-weight: 800; font-size: 0.88rem; border: none;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); transition: background .18s, transform .1s;
}
.btn-primary:hover { background: var(--yellow-h); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--white); padding: 0.65rem 1.4rem;
  border-radius: 8px; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; font-family: var(--font-body);
  transition: border-color .18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); }


#hero {
  min-height: calc(100vh - 58px);
  background:
    radial-gradient(ellipse 65% 75% at 72% 38%, #1a2f9e 0%, #0d1655 35%, transparent 70%),
    var(--bg-base);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 2.4rem 2.5rem;
  position: relative; overflow: hidden;
}

#hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 38px 38px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px; padding: 0.28rem 0.85rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1.1rem;
  background: rgba(255,255,255,0.04);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.9; margin-bottom: 1.1rem;
  display: flex; flex-direction: column;
}
.ht-solid  { font-size: clamp(3.8rem,7vw,6.8rem); font-weight: 900; color: var(--white); }
.ht-yellow { font-size: clamp(3.8rem,7vw,6.8rem); font-weight: 900; color: var(--yellow); }
.ht-outline {
  font-size: clamp(3.2rem,6vw,5.8rem); font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
}

.hero-desc { font-size: 0.9rem; line-height: 1.65; color: var(--muted); max-width: 370px; margin-bottom: 1.9rem; }
.hero-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; padding-left: 1.8rem; }

.hero-card {
  background: rgba(14,19,64,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.3rem;
  backdrop-filter: blur(10px);
  transition: transform .2s, border-color .2s;
}
.hero-card:hover { transform: translateY(-3px); border-color: rgba(255,214,0,.28); }
.hc-icon  { font-size: 1.75rem; margin-bottom: 0.65rem; display: block; }
.hc-label { font-size: 0.62rem; letter-spacing: 0.13em; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.hc-pts   { font-family: var(--font-display); font-size: 2rem; font-weight: 900; }
.hc-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); margin-top: 0.5rem; }

.hero-stats {
  grid-column: 1/-1;
  display: flex; gap: 3rem;
  padding-top: 2rem; margin-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hstat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.hstat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }


.ticker {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.62rem 0; overflow: hidden;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ti       { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; padding: 0 1.8rem; color: rgba(255,255,255,0.75); }
.ti.yellow{ color: var(--yellow); }
.ti.sep   { color: rgba(255,255,255,0.25); padding: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }


section { padding: 5.5rem 2.4rem; }


#sobre { background: var(--bg-base); }

.sobre-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem,6vw,5.8rem);
  font-weight: 900; line-height: 0.92;
  margin-bottom: 1.5rem;
}

.sobre-right p {
  font-size: 0.94rem; line-height: 1.75;
  color: rgba(255,255,255,0.72); margin-bottom: 1.1rem;
}
.sobre-right strong { color: var(--white); font-weight: 700; }

.sobre-quote {
  border-left: 3px solid var(--yellow);
  padding-left: 1rem;
  font-style: italic; color: var(--yellow);
  font-size: 1rem; font-weight: 600;
  margin: 1.4rem 0 1.8rem;
}


#orcamento { background: var(--bg-alt); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 4rem; align-items: start; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,4vw,3.6rem);
  font-weight: 900; line-height: 0.95; margin-bottom: 1.1rem;
}
.contact-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.8rem; }

.cd-row { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.cd-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.cd-label { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.cd-value { font-size: 0.87rem; font-weight: 700; }

.form-box {
  background: var(--bg-form);
  border: 1px solid var(--border-md);
  border-radius: 18px; padding: 2.3rem;
}
.form-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.8rem; }
.form-header h3 { font-size: 1.15rem; font-weight: 700; }
.badge-gratis {
  background: var(--yellow); color: #000;
  font-size: 0.62rem; font-weight: 900;
  padding: 0.15rem 0.5rem; border-radius: 4px; letter-spacing: 0.1em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.62rem 0.95rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.87rem;
  outline: none; transition: border-color .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  { border-color: rgba(255,214,0,0.45); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-alt); }
.form-group.full { grid-column: 1/-1; }
textarea { resize: vertical; min-height: 96px; }

.btn-submit {
  width: 100%; background: var(--yellow); color: #000;
  border: none; border-radius: 10px; padding: 0.95rem;
  font-size: 0.86rem; font-weight: 900; letter-spacing: 0.09em;
  cursor: pointer; margin-top: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-body); transition: background .18s;
}
.btn-submit:hover { background: var(--yellow-h); }

.form-note { text-align: center; font-size: 0.7rem; color: var(--muted); margin-top: 0.7rem; }
.form-note a { color: var(--yellow); text-decoration: none; }


#pontos {
  background: var(--bg-base);
  padding-bottom: 4rem;
}

.pontos-header {
  margin-bottom: 2.4rem;
}



.search-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  position: relative;
  z-index: 50;
  overflow: visible;          
}

.search-wrap {
  flex: 1;
  min-width: 160px;
  max-width: 320px;
  position: relative;
  flex-shrink: 0;
}
.search-wrap svg {
  position: absolute; left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.search-wrap input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 10px 14px 10px 40px;
  color: var(--white);
  font-family: var(--font-body); font-size: 0.84rem;
  outline: none; transition: border-color .2s;
}
.search-wrap input:focus { border-color: rgba(255,214,0,0.4); }
.search-wrap input::placeholder { color: var(--muted); }



.dropdown-wrapper {
  position: relative;
  z-index: 400;              
  flex-shrink: 0;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.filter-btn:hover { border-color: rgba(255,214,0,0.4); color: var(--yellow); }

.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #0e1340;
  border: 1px solid var(--border-md);
  border-radius: 10px;
  min-width: 200px;
  z-index: 9999;              /* bem acima de tudo */
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
  max-height: 260px; overflow-y: auto;
}
.dropdown-menu.open { display: block; }
.dropdown-menu::-webkit-scrollbar { width: 3px; }
.dropdown-menu::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 2px; }

.dropdown-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 14px; cursor: pointer; font-size: 0.81rem;
  transition: background .15s;
}
.dropdown-item:hover { background: rgba(255,214,0,0.06); }
.dropdown-item input[type="checkbox"] { accent-color: var(--yellow); width: 14px; height: 14px; cursor: pointer; flex-shrink: 0; }
.dropdown-item label { cursor: pointer; color: rgba(255,255,255,0.82); }



.btn-clear {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px; color: var(--muted);
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.btn-clear:hover { border-color: #ef4444; color: #ef4444; }

.btn-yellow {
  background: var(--yellow); color: #000;
  border: none; border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 800;
  cursor: pointer; letter-spacing: 0.04em; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.btn-yellow:hover { background: var(--yellow-h); }

.btn-outline-yellow {
  background: transparent;
  border: 1px solid rgba(255,214,0,0.45);
  border-radius: 8px; color: var(--yellow);
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.btn-outline-yellow:hover { background: rgba(255,214,0,0.08); }


.tabs-section {
  display: flex; align-items: center; gap: 2px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.tabs-section::-webkit-scrollbar { height: 0; }


.filter-tab {
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  transition: color .18s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.filter-tab:hover { color: rgba(255,255,255,0.75); }
.filter-tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.tab-count {
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  border-radius: 20px;
  padding: 1px 7px;
  font-size: 0.68rem; font-weight: 700;
}
.filter-tab.active .tab-count { background: var(--yellow); color: #000; }


.active-filters {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 12px 0 4px;
  min-height: 0;
}

.filter-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem; color: var(--yellow);
}
.filter-tag button {
  background: none; border: none;
  color: rgba(255,214,0,0.7); cursor: pointer;
  font-size: 0.85rem; line-height: 1; padding: 0;
  transition: color .15s;
}
.filter-tag button:hover { color: var(--yellow); }

.results-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  padding: 16px 0 14px;
}
.results-count { font-size: 0.82rem; color: var(--muted); }

.pagination-controls {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 18px;
}
.pagination-buttons {
  display: inline-flex; align-items: center; gap: 10px;
}
.pagination-buttons button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.pagination-buttons button:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}
.pagination-buttons button:disabled {
  opacity: 0.45;
  cursor: default;
}
#pageInfo {
  color: var(--muted);
  font-size: 0.85rem;
}
#toggleShowAll {
  white-space: nowrap;
}
.results-count strong { color: var(--white); font-weight: 700; }

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: 8px; color: var(--white);
  padding: 8px 12px;
  font-family: var(--font-body); font-size: 0.78rem;
  cursor: pointer; outline: none;
}



.pontos-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.scroll-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 204, 0, 0.12);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.scroll-arrow:hover:not(:disabled) {
  background: rgba(255, 204, 0, 0.2);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.scroll-arrow:hover:not(:disabled)::before {
  left: 100%;
}

.scroll-arrow:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.15);
}

.scroll-left {
  order: -1;
}

.scroll-right {
  order: 1;
}

.carousel-wrapper {
  overflow: hidden;
  flex: 1;
}

.cards-grid {
  display: flex;
  gap: 16px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,204,0,0.3) transparent;
}

.cards-grid::-webkit-scrollbar {
  height: 6px;
}

.cards-grid::-webkit-scrollbar-track {
  background: transparent;
}

.cards-grid::-webkit-scrollbar-thumb {
  background: rgba(255,204,0,0.3);
  border-radius: 3px;
}

.cards-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255,204,0,0.6);
}

.cards-grid .card {
  flex: 0 0 calc((100% - 64px) / 5);
  scroll-snap-align: start;
}

@media (max-width: 1280px) {
  .cards-grid .card {
    flex: 0 0 calc((100% - 48px) / 4);
  }
}

@media (max-width: 992px) {
  .cards-grid .card {
    flex: 0 0 calc((100% - 32px) / 3);
  }
}

@media (max-width: 680px) {
  .cards-grid .card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 520px) {
  .cards-grid .card {
    flex: 0 0 100%;
  }
}

.pagination-controls {
  display: none;
}


.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  cursor: pointer; position: relative;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,214,0,0.25);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}
.card.selected { border-color: rgba(255,214,0,0.55); }

.card-checkbox {
  position: absolute; top: 10px; right: 10px;
  width: 17px; height: 17px;
  accent-color: var(--yellow);
  cursor: pointer; z-index: 2;
}


.card-image {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-image .icon { font-size: 44px; }

.bg-led        { background: var(--grad-led); }
.bg-empena     { background: var(--grad-empena); }
.bg-shopping   { background: var(--grad-shopping); }
.bg-elevador   { background: var(--grad-elevador); }
.bg-lona       { background: var(--grad-lona); }
.bg-restaurante{ background: var(--grad-restaurante); }


.card-body { padding: 12px 14px 14px; }

.card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 7px;
}

.type-pill {
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.06em; border-radius: 4px;
  padding: 2px 7px; text-transform: uppercase;
}
.pill-led        { background: var(--pill-led);        color: var(--pill-led-txt); }
.pill-empena     { background: var(--pill-empena);     color: var(--pill-empena-txt); }
.pill-shopping   { background: var(--pill-shopping);   color: var(--pill-shopping-txt); }
.pill-elevador   { background: var(--pill-elevador);   color: var(--pill-elevador-txt); }
.pill-lona       { background: var(--pill-lona);       color: var(--pill-lona-txt); }
.pill-restaurante{ background: var(--pill-restaurante);color: var(--pill-restaurante-txt); }

.available-badge {
  font-size: 0.65rem; font-weight: 600; color: var(--green);
  display: flex; align-items: center; gap: 4px;
}
.available-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--green); border-radius: 50%; display: inline-block;
}

.card-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; color: var(--white); line-height: 1.3; }

.card-address {
  font-size: 0.71rem; color: var(--muted);
  margin-bottom: 9px;
  display: flex; align-items: flex-start; gap: 3px;
}

.card-specs {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 11px; flex-wrap: wrap;
}
.spec {
  font-size: 0.65rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 2px 7px; border-radius: 4px;
}

.card-footer { display: flex; align-items: center; justify-content: space-between; }
.city-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); }

.btn-details {
  background: var(--yellow); color: #000;
  border: none; border-radius: 5px;
  padding: 6px 12px;
  font-size: 0.66rem; font-weight: 900; letter-spacing: 0.05em;
  cursor: pointer; text-transform: uppercase;
  font-family: var(--font-body); transition: background .15s;
}
.btn-details:hover { background: var(--yellow-h); }


.empty-state {
  grid-column: 1/-1; text-align: center;
  padding: 72px 20px; color: var(--muted);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 14px; }
.empty-state h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.empty-state p  { font-size: 0.82rem; }


#midias { background: var(--bg-alt); }

.midias-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; margin-top: 2.8rem;
}
.midia-card {
  padding: 2.3rem 1.8rem;
  border: 1px solid var(--border);
  background: var(--bg-base);
  transition: background .25s; cursor: pointer; position: relative;
}
.midia-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--yellow);
  transform: scaleX(0); transition: transform .25s;
}
.midia-card:hover,
.midia-card.active { background: var(--bg-card); }
.midia-card:hover::after,
.midia-card.active::after { transform: scaleX(1); }

.m-icon  { font-size: 2.3rem; margin-bottom: 0.9rem; display: block; }
.m-name  { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.m-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.55; margin-bottom: 0.9rem; }
.m-tags  { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.m-tags span {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.06); border-radius: 4px;
  padding: 0.18rem 0.45rem; color: rgba(255,255,255,0.55);
}
.m-arrow { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 0.8rem; color: var(--muted); }


#stats { background: var(--yellow); padding: 4.5rem 2.4rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.snum { font-family: var(--font-display); font-size: clamp(3rem,5vw,5rem); font-weight: 900; color: #000; line-height: 1; }
.sdesc{ font-size: 0.8rem; color: rgba(0,0,0,0.68); margin-top: 0.3rem; line-height: 1.4; }
.ssrc { font-size: 0.62rem; color: rgba(0,0,0,0.45); margin-top: 0.2rem; font-style: italic; }


#clientes { background: var(--bg-alt); }

.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.8rem; }
.tcard {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 13px; padding: 1.7rem;
}
.tstars { color: var(--yellow); font-size: 0.88rem; margin-bottom: 0.9rem; }
.ttext  { font-size: 0.83rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 1.1rem; font-style: italic; }
.tauthor{ display: flex; align-items: center; gap: 0.7rem; }
.tavatar{ width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.88rem; flex-shrink: 0; }
.tname  { font-weight: 700; font-size: 0.83rem; }
.trole  { font-size: 0.7rem; color: var(--muted); }


footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 2.4rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.8rem; }
.footer-brand p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-top: 0.7rem; max-width: 300px; }
.footer-socials { display: flex; gap: 0.45rem; margin-top: 1.1rem; }
.soc {
  width: 33px; height: 33px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; text-decoration: none; transition: background .18s;
}
.soc:hover { background: rgba(255,214,0,0.18); }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.16em; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a  { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 0.55rem; transition: color .18s; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.73rem; color: var(--muted); }
.footer-links    { display: flex; gap: 1.4rem; }
.footer-links a  { font-size: 0.73rem; color: var(--yellow); text-decoration: none; }


.chat-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 200;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; cursor: pointer;
  box-shadow: 0 4px 18px rgba(34,197,94,0.45);
  animation: pulse-float 2.2s ease-in-out infinite;
}
@keyframes pulse-float {
  0%,100% { box-shadow: 0 4px 18px rgba(34,197,94,0.45); }
  50%      { box-shadow: 0 4px 30px rgba(34,197,94,0.15), 0 0 0 10px rgba(34,197,94,0); }
}


@media (max-width: 960px) {
  #hero              { grid-template-columns: 1fr; }
  .hero-cards        { padding-left: 0; grid-template-columns: repeat(2,1fr); margin-top: 2rem; }
  .hero-stats        { flex-wrap: wrap; gap: 1.4rem; }
  .contact-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .midias-grid       { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2,1fr); }
  .testimonials      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  #navbar            { padding: 0 1.2rem; }
  .nav-links         { display: none; }
  section            { padding: 4rem 1.4rem; }
  .cards-grid        { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
}

/* ========== TABLET LANDSCAPE (1024px) ========== */
@media (max-width: 1024px) {
  section { padding: 3.5rem 2rem; }
  .hero-cards { grid-template-columns: repeat(2,1fr); }
  .pontos-carousel { gap: 12px; }
  .scroll-arrow { width: 42px; height: 42px; font-size: 17px; }
}

/* ========== TABLET PORTRAIT (768px) ========== */
@media (max-width: 768px) {
  section { padding: 3rem 1.8rem; }
  #navbar { padding: 0 1rem; }
  .nav-links { display: none; }
  #hero { padding: 2.5rem 1.8rem 1.5rem; }
  .hero-title .ht-solid { font-size: clamp(2.5rem, 5vw, 4rem); }
  .hero-title .ht-yellow { font-size: clamp(2.5rem, 5vw, 4rem); }
  .hero-cards { grid-template-columns: 1fr; gap: 1rem; padding: 0; }
  .hero-card { padding: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pontos-carousel { gap: 10px; }
  .scroll-arrow { width: 40px; height: 40px; font-size: 16px; }
  .cards-grid { gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========== MOBILE LANDSCAPE (667px) ========== */
@media (max-width: 667px) {
  html { font-size: 15px; }
  section { padding: 2.5rem 1.5rem; }
  .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
  .section-sub { font-size: 0.8rem; max-width: 100%; }
  .hero-badge { font-size: 0.65rem; padding: 0.25rem 0.75rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas button { width: 100%; }
  .btn-primary, .btn-ghost { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .search-section { flex-wrap: wrap; gap: 8px; }
  .filter-btn { font-size: 0.7rem; padding: 0.5rem 0.8rem; }
  .pontos-carousel { gap: 8px; }
  .scroll-arrow { width: 38px; height: 38px; font-size: 15px; }
  .cards-grid { gap: 12px; }
  .card { border-radius: 10px; }
}

/* ========== MOBILE (520px e menor) ========== */
@media (max-width: 520px) {
  html { font-size: 14px; }
  body { overflow-x: hidden; }
  section { padding: 2rem 1.2rem; }
  #navbar { height: 60px; padding: 0 0.8rem; }
  .logo-img { max-height: 100px; margin-top: 15px; }
  .nav-actions { gap: 0.4rem; }
  .btn-orcamento { padding: 0.3rem 0.8rem; font-size: 0.65rem; }
  .btn-whatsapp { padding: 0.3rem 0.7rem; font-size: 0.65rem; }
  
  #hero { padding: 2rem 1.2rem 1rem; min-height: calc(100vh - 60px); }
  .hero-left { gap: 0.8rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.2rem 0.6rem; }
  .hero-title .ht-solid { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 0.3rem; }
  .hero-title .ht-yellow { font-size: clamp(2rem, 4vw, 3.5rem); }
  .hero-title .ht-outline { font-size: clamp(1.8rem, 3.5vw, 3rem); }
  .hero-desc { font-size: 0.8rem; max-width: 100%; margin-bottom: 1.2rem; }
  .hero-ctas { gap: 0.6rem; }
  .hero-cards { grid-template-columns: 1fr; gap: 0.8rem; padding: 0; }
  .hero-card { padding: 0.8rem; border-radius: 10px; }
  .hc-label { font-size: 0.8rem; margin: 0.4rem 0; }
  .hc-pts { font-size: 1.2rem; }
  .hc-icon { font-size: 1.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hstat { min-width: auto; }
  .hstat-num { font-size: 1.8rem; }
  .hstat-lbl { font-size: 0.7rem; }
  
  .search-section { flex-direction: column; gap: 8px; }
  .search-wrap { width: 100%; }
  .filter-btn, .btn-clear, .btn-yellow, .btn-outline-yellow { font-size: 0.7rem; padding: 0.4rem 0.6rem; }
  .dropdown-wrapper { width: 100%; }
  
  .tabs-section { flex-wrap: wrap; gap: 6px; }
  .filter-tab { font-size: 0.7rem; padding: 0.5rem 0.8rem; }
  
  .pontos-carousel { gap: 6px; }
  .scroll-arrow { width: 36px; height: 36px; font-size: 14px; }
  .cards-grid { gap: 12px; }
  .cards-grid .card { flex: 0 0 100%; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.1; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .form-group { margin-bottom: 0.8rem; }
  .form-group label { font-size: 0.75rem; margin-bottom: 0.4rem; }
  .form-group input, .form-group select, .form-group textarea { font-size: 0.9rem; padding: 0.6rem 0.8rem; }
  .btn-submit { font-size: 0.8rem; padding: 0.6rem 1.2rem; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .sblock { padding: 1.2rem 1rem; }
  .snum { font-size: 2rem; margin-bottom: 0.4rem; }
  
  .testimonials { grid-template-columns: 1fr; }
  .tcard { padding: 1rem; border-radius: 10px; }
  .ttext { font-size: 0.8rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 2rem 1.2rem 1rem; }
  .footer-brand p { font-size: 0.75rem; max-width: 100%; }
  .footer-links a { font-size: 0.8rem; }
}
