/* ===========================
   RESET & VARIABLES
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1b2a;
  --navy2:   #112236;
  --navy3:   #162840;
  --blue:    #2563eb;
  --blue-dk: #1d4ed8;
  --orange:  #e85c0d;
  --orange-dk: #d14d00;
  --gray-bg: #f3f4f6;
  --white:   #ffffff;
  --text:    #111827;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --star:    #f59e0b;
  --radius:  12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
svg { display: block; flex-shrink: 0; }
img { max-width: 100%; display: block; }

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn-blue   { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dk); border-color: var(--blue-dk); }

.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

.btn-white-outline { background: transparent; color: #fff; border-color: #fff; font-weight: 700; }
.btn-white-outline:hover { background: #fff; color: var(--orange); }

.btn-white-blue { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); font-weight: 700; }
.btn-white-blue:hover { background: rgba(255,255,255,.12); }

.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: #0a1520; }

.btn-full { width: 100%; justify-content: center; padding: 15px 24px; }

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.logo { flex: none; }
.logo-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
}
.logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav a:hover { color: #fff; }

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-tel svg { width: 15px; height: 15px; }
.btn-tel:hover { background: var(--blue-dk); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a {
  padding: 15px 24px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-menu.open { display: flex; }
.mobile-tel { color: var(--blue) !important; font-weight: 600; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('back.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,16,26,.88) 0%,
    rgba(10,16,26,.75) 55%,
    rgba(10,16,26,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 660px;
}

.hero-content h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.3px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-btns .btn { font-size: 15px; padding: 14px 26px; }

.hero-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* ===========================
   URGÊNCIA
   =========================== */
.urgencia {
  background: #e85c0d;
  padding: 72px 24px;
  text-align: center;
}

.urgencia-inner { max-width: 700px; margin: 0 auto; }

.urgencia-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.25);
}
.urgencia-badge svg { width: 15px; height: 15px; }

.urgencia h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.urgencia p {
  font-size: 16px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
}
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,.6); }
.blue-p { color: var(--blue) !important; }

/* ===========================
   SERVIÇOS
   =========================== */
.servicos {
  padding: 88px 0;
  background: var(--gray-bg);
}

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

.servico-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.servico-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; color: #fff; }

.servico-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.servico-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===========================
   PORQUÊ ESCOLHER-NOS
   =========================== */
.porque {
  padding: 88px 0;
  background: #fff;
}

.porque-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.porque-item {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 8px 8px;
}

.pq-icon {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pq-icon svg { width: 28px; height: 28px; color: #fff; }

.porque-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.porque-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===========================
   SOBRE
   =========================== */
.sobre {
  padding: 88px 0;
  background: var(--navy);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.sobre-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.sobre-text p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 14px;
}
.sobre-text p:last-child { margin-bottom: 0; }

.sobre-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

/* ===========================
   TESTEMUNHOS
   =========================== */
.testemunhos {
  padding: 88px 0;
  background: var(--navy);
}

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

.test-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.test-quote { color: var(--blue); margin-bottom: 12px; }
.test-quote svg { width: 28px; height: 20px; }

.test-stars {
  font-size: 18px;
  color: var(--star);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.test-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.test-author span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ===========================
   CONTACTO
   =========================== */
.contacto {
  padding: 88px 0;
  background: var(--gray-bg);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contacto-info h3,
.contacto-form-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.info-card:last-child { margin-bottom: 0; }

.info-icon {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--blue); }

.info-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.info-card span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}
.tap-link {
  display: block;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin-top: 3px;
}
.tap-link:hover { text-decoration: underline; }

.contacto-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 20px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--blue); }

.form-group input,
.form-group textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }

/* ===========================
   MAPA
   =========================== */
.mapa {
  padding: 48px 0;
  background: var(--gray-bg);
}

.mapa-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.mapa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mapa-header svg { width: 18px; height: 18px; color: var(--blue); }

.mapa-embed { line-height: 0; }

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 88px 0;
  background: #fff;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q svg { width: 18px; height: 18px; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ===========================
   CTA FINAL
   =========================== */
.cta-final {
  padding: 72px 0;
  background: var(--blue);
  text-align: center;
}

.cta-final-inner { max-width: 700px; margin: 0 auto; }

.cta-final h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-final p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btns .btn { font-size: 15px; padding: 14px 28px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer-inner strong { font-size: 16px; color: #fff; font-weight: 700; }
.footer-inner span   { font-size: 13px; color: rgba(255,255,255,.5); }
.copy { font-size: 12px !important; color: rgba(255,255,255,.3) !important; margin-top: 4px; }

/* ===========================
   FIXED CTA
   =========================== */
.fixed-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(232,92,13,.45);
  transition: background .2s, transform .2s;
}
.fixed-cta svg { width: 16px; height: 16px; }
.fixed-cta:hover { background: var(--orange-dk); transform: translateY(-2px); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid     { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner   { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-placeholder { height: 280px; }
  .contacto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .btn-tel { display: none; }
  .hamburger { display: flex; }

  .porque-grid { gap: 24px; }
  .porque-item { max-width: 160px; }

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

  .hero-content { padding: 60px 0; }
  .hero-btns .btn { font-size: 14px; padding: 13px 20px; }

  .fixed-cta span { display: none; }
  .fixed-cta { padding: 16px; border-radius: 50%; }
  .fixed-cta svg { width: 20px; height: 20px; }
}

@media (max-width: 600px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .porque-grid   { flex-direction: column; align-items: center; }
  .porque-item   { max-width: 100%; text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .pq-icon       { flex-shrink: 0; margin: 0; }
  .hero-btns     { flex-direction: column; }
  .cta-btns      { flex-direction: column; align-items: center; }
}
