/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #f0c040;
  --yellow-dark: #d4a800;
  --navy: #1a2340;
  --navy-light: #243050;
  --dark: #111827;
  --gray-bg: #f7f7f5;
  --gray-light: #f0f0ec;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.highlight { background: var(--yellow); padding: 0 6px; border-radius: 4px; }
.section-sub { text-align: center; color: var(--text-light); max-width: 600px; margin: 0 auto 48px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.13); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo-name { display: block; font-weight: 800; font-size: 14px; color: var(--navy); letter-spacing: .5px; }
.logo-sub { display: block; font-size: 10px; color: var(--text-light); letter-spacing: 1px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text); transition: color var(--transition); }
.nav-links a:hover { color: var(--navy); }

.btn-cta {
  background: var(--yellow); color: var(--navy);
  font-weight: 700; font-size: 13px; letter-spacing: .5px;
  padding: 10px 20px; border-radius: 8px;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 110px 0 70px;
  background: var(--gray-bg);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.hero-text p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); color: var(--navy);
  font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 8px;
  transition: all var(--transition);
}
.btn-whatsapp:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp .fa-whatsapp { font-size: 18px; }

.hero-img img {
  border-radius: var(--radius);
  object-fit: cover; height: 420px; width: 100%;
  box-shadow: var(--shadow);
}

/* ===== SERVIÇOS ===== */
.servicos { padding: 90px 0; background: var(--white); }
.servicos h2 {
  text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--navy); margin-bottom: 12px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  border: 1.5px solid #e8e8e4; border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border-color: var(--yellow);
}

.card-num {
  font-size: 2rem; font-weight: 900; color: var(--yellow);
  display: block; margin-bottom: 10px; line-height: 1;
}
.card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--text-light); line-height: 1.5; }

/* Hover overlay com info extra */
.card-hover-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.card-hover-info i { color: var(--yellow); font-size: 16px; }
.card:hover .card-hover-info { transform: translateY(0); }

/* ===== MAIS SERVIÇOS ===== */
.mais-servicos { padding: 90px 0; background: var(--gray-bg); }
.mais-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.mais-img img {
  border-radius: var(--radius); object-fit: cover;
  height: 460px; width: 100%; box-shadow: var(--shadow);
}
.mais-texto h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; color: var(--navy); margin-bottom: 16px;
}
.mais-texto > p { color: var(--text-light); margin-bottom: 24px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; }
.check-list .fa-circle-check { color: var(--yellow); font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.destaque-box {
  border-left: 4px solid var(--yellow); padding: 14px 18px;
  background: #fffbee; border-radius: 0 8px 8px 0; margin-bottom: 28px;
  font-size: .9rem; color: var(--text);
}

.btn-yellow {
  display: inline-block; background: var(--yellow); color: var(--navy);
  font-weight: 800; font-size: 14px; letter-spacing: .5px;
  padding: 14px 28px; border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

/* ===== VANTAGENS ===== */
.vantagens { padding: 90px 0; background: var(--white); }
.vantagens h2 {
  text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; color: var(--navy); margin-bottom: 48px;
}
.vantagens-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.vantagem-item {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius); border: 1.5px solid #e8e8e4;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.vantagem-item:hover { box-shadow: var(--shadow); border-color: var(--yellow); }
.vantagem-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 16px;
}
.vantagem-item h4 { font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.vantagem-item p { font-size: .88rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--yellow); padding: 52px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 900; color: var(--navy); }
.cta-banner p { color: var(--navy-light); margin-top: 6px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 14px; letter-spacing: .5px;
  padding: 14px 28px; border-radius: 8px; white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-dark .fa-whatsapp { font-size: 18px; }

/* ===== FEEDBACKS ===== */
.feedbacks { padding: 90px 0; background: var(--gray-bg); }
.feedbacks h2 {
  text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; color: var(--navy); margin-bottom: 12px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: flex; flex-direction: column; gap: 16px;
}
.review-card:hover { transform: translateY(-4px); }
.quote-icon { color: var(--yellow); font-size: 24px; }
.review-text { font-size: .93rem; color: var(--text); line-height: 1.6; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  color: var(--white); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--navy); }
.stars { color: var(--yellow); font-size: 13px; letter-spacing: 1px; }

/* ===== ONDE ATENDEMOS ===== */
.atendemos { padding: 90px 0; background: var(--white); }
.atendemos h2 {
  text-align: center; font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; color: var(--navy); margin-bottom: 12px;
}
.bairros-counter {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 20px 32px;
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
  justify-content: center;
}
.counter-num { font-size: 2.5rem; font-weight: 900; color: var(--yellow); }
.counter-label { font-size: 1rem; }
.bairros-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.bairros-grid span {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid #ddd; border-radius: 20px;
  padding: 7px 16px; font-size: .88rem; color: var(--text);
  transition: border-color var(--transition), color var(--transition);
}
.bairros-grid span:hover { border-color: var(--yellow); color: var(--navy); }
.bairros-grid .fa-location-dot { color: var(--yellow); font-size: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-icon { background: rgba(255,255,255,.1); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 14px; }

.footer-links h4, .footer-contato h4 {
  font-size: .85rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.footer-links a, .footer-contato a, .footer-contato p {
  display: block; color: rgba(255,255,255,.7); font-size: .9rem;
  margin-bottom: 10px; transition: color var(--transition);
}
.footer-links a:hover, .footer-contato a:hover { color: var(--white); }
.footer-contato i { margin-right: 8px; color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px; text-align: center;
  color: rgba(255,255,255,.4); font-size: .82rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 90px; right: 30px; z-index: 200;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
  .mais-inner { grid-template-columns: 1fr; }
  .mais-img img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 15px; border-bottom: 1px solid #f0f0f0; }
  .hamburger { display: flex; }
  .btn-cta { font-size: 12px; padding: 8px 14px; }

  .hero { padding: 90px 0 50px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img img { height: 260px; }

  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .vantagens-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vantagens-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.8rem; }
  .bairros-counter { flex-direction: column; text-align: center; gap: 4px; }
}
