/*
Theme Name: VeoTrack Oficial
Theme URI: https://veotrack.com.br
Author: VeoTrack
Description: Tema institucional da VeoTrack para rastreamento e monitoramento veicular.
Version: 1.1.6
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: veotrack
*/

:root {
  --bg: #050708;
  --panel: #0d1214;
  --panel-soft: #10191b;
  --text: #f6fbff;
  --muted: #aab7bd;
  --green: #51ff1c;
  --blue: #0aa8ff;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(5, 7, 8, 0.9);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  width: min(340px, 48vw);
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.top-action,
.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 900;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-action {
  padding: 0 18px;
}

.panel-action {
  color: #f6fbff;
  background: var(--blue);
}

.whatsapp-action {
  color: #041006;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 78px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero > picture,
.hero > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 18%, #000 42%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 18%, #000 42%, #000 100%);
}

.hero > picture > img {
  object-fit: cover;
  object-position: center 72%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 34%, rgba(0, 0, 0, 0.18) 76%),
    linear-gradient(0deg, rgba(5, 7, 8, 0.74), rgba(5, 7, 8, 0.02) 48%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: min(1180px, calc(100% - 36px));
  min-height: min(790px, calc(100vh - 78px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero-content {
  width: min(670px, 100%);
}

.hero-logo {
  display: block;
  width: min(540px, 100%);
  height: auto;
  margin: 0 0 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 580px;
  color: #d7e4e8;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: #041006;
  background: var(--green);
  box-shadow: 0 0 38px rgba(81, 255, 28, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.intro,
.services,
.benefits,
.coverage {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  padding: 76px 0 48px;
}

.intro h2,
.section-heading h2,
.coverage h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro p:last-child,
.coverage p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.services,
.benefits {
  padding: 44px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 220px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--green);
  font-weight: 900;
  border: 1px solid rgba(81, 255, 28, 0.55);
  border-radius: 8px;
  background: rgba(81, 255, 28, 0.08);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.62;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.benefit-list div {
  display: grid;
  gap: 12px;
  min-height: 164px;
  padding: 28px;
  background: #090d0f;
}

.benefit-list strong {
  color: var(--green);
  font-size: 1.1rem;
}

.benefit-list span {
  color: var(--muted);
  line-height: 1.6;
}

.coverage {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: stretch;
  padding: 50px 0 76px;
}

.coverage-text,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(10, 168, 255, 0.17), transparent 36%),
    radial-gradient(circle at bottom right, rgba(81, 255, 28, 0.12), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.coverage-text {
  padding: clamp(28px, 5vw, 48px);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.contact-link {
  width: 100%;
  margin-top: 12px;
  color: #041006;
  background: var(--green);
}

.channel-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  color: var(--text);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.site-link {
  margin-top: 20px;
  color: var(--blue);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
    gap: 12px;
    min-height: auto;
    padding: 10px 14px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto !important;
    overflow: visible !important;
    background:
      radial-gradient(circle at top right, rgba(81, 255, 28, 0.16), transparent 34%),
      radial-gradient(circle at bottom left, rgba(10, 168, 255, 0.18), transparent 36%),
      var(--bg) !important;
  }

  .hero > picture,
  .hero > picture > img {
    display: none !important;
  }

  .hero::after {
    display: none !important;
  }

  .hero-overlay {
    align-items: flex-start;
    min-height: auto !important;
    padding: 44px 0 50px;
  }

  .intro,
  .coverage {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 155px;
  }

  .brand img {
    height: 38px;
  }

  .nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .top-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .top-actions {
    width: 100%;
    gap: 8px;
  }

  .top-actions .top-action {
    flex: 1;
  }

  .hero {
    min-height: auto !important;
  }

  .hero-overlay {
    min-height: auto !important;
    padding-top: 38px;
  }

  .hero-logo {
    width: 100%;
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
/* Página /app — instalação e configuração do Traccar Manager */
.app-guide__logo {
  display: block;
  width: min(720px, 100%);
  height: auto;
  margin: 0 auto 26px;
}

.app-guide{background:#070a0f;color:#f4f8fc;min-height:70vh;padding:72px 22px 90px}.app-guide__hero,.app-guide__steps,.app-guide__help{width:min(100%,980px);margin:0 auto}.app-guide__hero{text-align:center;padding:42px 0 64px}.app-guide .eyebrow{display:inline-block;color:#65ef35;font-weight:800;letter-spacing:.08em;text-transform:uppercase;font-size:.78rem}.app-guide h1{font-size:clamp(2.2rem,6vw,4.6rem);line-height:1.02;max-width:900px;margin:16px auto 22px}.app-guide h2{font-size:clamp(1.8rem,4vw,3rem);margin:10px 0 28px}.app-guide h3{font-size:1.25rem;margin:0 0 8px}.app-guide p{color:#b5c0cf;font-size:1.05rem}.app-guide__hero>p{max-width:680px;margin:0 auto}.app-guide__store-actions{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin:32px 0 16px}.store-button{display:flex;align-items:center;gap:12px;min-width:220px;border:1px solid #334258;border-radius:16px;padding:15px 20px;color:#fff;background:#111824;text-decoration:none;text-align:left;transition:.2s ease}.store-button:hover,.store-button:focus-visible{border-color:#67ef35;transform:translateY(-2px);box-shadow:0 10px 35px #52d82726}.store-button>span:first-child{font-size:2rem}.store-button span:last-child{font-size:1.1rem;font-weight:800}.store-button small{display:block;color:#9eabbb;font-size:.72rem;font-weight:600}.device-android .store-button--android,.device-ios .store-button--ios{border-color:#67ef35;box-shadow:0 0 0 3px #67ef3526}.app-guide__detected{min-height:26px;font-size:.9rem!important;color:#7fdfff!important}.app-guide__steps{background:#0d131d;border:1px solid #243144;border-radius:28px;padding:clamp(24px,5vw,52px)}.section-heading{text-align:center}.setup-step{display:grid;grid-template-columns:48px 1fr;gap:18px;padding:26px 0;border-top:1px solid #273447}.setup-step__number{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,#63eb25,#12c5dd);color:#06100b;font-weight:900;font-size:1.15rem}.setup-step--server{align-items:start}.server-copy{display:flex;align-items:stretch;gap:10px;flex-wrap:wrap;margin-top:16px}.server-copy code{flex:1;min-width:240px;display:flex;align-items:center;background:#05080d;border:1px solid #36465c;border-radius:13px;padding:14px;color:#7ee8ff;font-size:clamp(.86rem,3vw,1.05rem);overflow-wrap:anywhere}.server-copy button{border:0;border-radius:13px;padding:13px 20px;background:#62e72c;color:#071008;font-weight:900;cursor:pointer}.copy-feedback{min-height:24px;color:#8df5ad!important;font-size:.9rem!important}.app-guide__help{text-align:center;padding:62px 0 0}.app-guide__help p{max-width:680px;margin:0 auto}.app-guide__help-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:26px}.app-guide .button{display:inline-flex;align-items:center;justify-content:center;min-height:52px;border-radius:14px;padding:13px 22px;text-decoration:none;font-weight:850}.app-guide .button--primary{background:#63e72f;color:#061007}.app-guide .button--secondary{border:1px solid #3b4a5f;color:#f4f8fc;background:#111824}.app-guide__noscript{width:min(100%,980px);margin:24px auto;padding:14px;border:1px solid #7b6435;background:#322915;border-radius:12px}@media(max-width:620px){.app-guide{padding:36px 15px 64px}.app-guide__hero{padding:24px 0 44px}.store-button{width:100%;min-width:0}.setup-step{grid-template-columns:40px 1fr;gap:12px}.setup-step__number{width:36px;height:36px}.server-copy button{width:100%}.app-guide__help-actions .button{width:100%}}
