/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== VARIABLES CSS ===== */
:root {
  --header-height: 5.5rem;

  /* ===== Colors ===== */
  --primary-color: #1e3a5f;
  --primary-color-light: #2d4a6b;
  --primary-gradient: linear-gradient(135deg, #4a90e2 0%, #2d4a6b 50%, #1e3a5f 100%);
  --secondary-color: #00d4ff;
  --white-color: #ffffff;
  --text-color: #374151;
  --text-color-light: #6b7280;
  --body-color: #f9fafb;
  --container-color: #ffffff;
  --border-color: #e5e7eb;

  /* ===== Font and typography ===== */
  --body-font: 'Inter', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.875rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /* ===== Font weight ===== */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  /* ===== Margenes Bottom ===== */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /* ===== z index ===== */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive typography */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.875rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

p {
  text-align: justify;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 4rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: var(--mb-0-75);
  font-weight: var(--font-medium);
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(24, 30, 44, 0.1);
  box-shadow: 0 2px 8px rgba(24, 30, 44, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: box-shadow 0.3s;
}
/* ===== NAV ===== */
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 5rem;
  width: auto;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.nav__link:hover {
  color: var(--primary-color-alt);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Mobile Navigation */
@media screen and (max-width: 992px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--white-color);
    box-shadow: -2px 0 24px rgba(24, 30, 44, 0.15);
    padding: 2rem;
    transition: right 0.4s;
    z-index: 1000;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 2rem;
  }

  .nav__link {
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: block;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .nav__toggle {
    display: block;
  }

  /* Show menu */
  .show-menu {
    right: 0;
  }

  /* Adjust logo size for mobile */
  .nav__logo-img {
    height: 3rem;
  }
}k;
}

.nav__link:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Active link */
.active-link {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.nav__toggle,
.nav__close {
  display: none;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Add blur to header */
.blur-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* ===== BANNER ===== */
.banner {
  padding: 0;
  margin-top: var(--header-height);
}

.banner__container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner__img {
  width: 100%;
  height: auto;
  max-width: 1920px;
  object-fit: contain;
  object-position: center;
}

/* ===== SOBRE ===== */
.sobre {
  background-color: var(--white-color);
}

.sobre__title {
  font-size: var(--h1-font-size);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
  line-height: 1.3;
}

.sobre__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-2);
}

.sobre__text p {
  margin-bottom: var(--mb-1-5);
  color: var(--text-color);
  line-height: 1.7;
}

/* ===== SEGURANÇA ===== */
.seguranca {
  background: var(--white-color);
  padding: 2rem 0;
}

.seguranca__image {
  text-align: center;
}

.seguranca__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(24, 30, 44, 0.1);
}

.seguranca__title {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
}

.seguranca__content p {
  margin-bottom: var(--mb-1-5);
  color: var(--white-color);
  line-height: 1.7;
  opacity: 0.95;
}

/* ===== VIATURA ===== */
.viatura {
  background-color: var(--white-color);
}

.viatura__title {
  font-size: var(--h1-font-size);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-bold);
}

.viatura__description {
  text-align: center;
  color: var(--text-color-light);
  margin-bottom: var(--mb-3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.viatura__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.feature {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature__icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.feature__icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.feature__title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.feature__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== DASHBOARD ===== */
.dashboard {
  background: var(--primary-gradient);
  color: var(--white-color);
}

.dashboard__title {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
}

.dashboard__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dashboard__map {
  position: relative;
}

.map-container {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: var(--mb-2);
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__number {
  display: block;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--secondary-color);
}

.stat__label {
  font-size: var(--small-font-size);
  color: var(--white-color);
  opacity: 0.9;
}

.dashboard__viatura-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* ===== SOLUÇÕES ===== */
.solucoes {
  background-color: var(--white-color);
}

.solucoes__title {
  font-size: var(--h1-font-size);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-bold);
}

.solucoes__description {
  text-align: center;
  color: var(--text-color-light);
  margin-bottom: var(--mb-3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solucoes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.solucao {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.solucao:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solucao__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--mb-1);
}

.solucao__title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.solucao__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== CLIENTES ===== */
.clientes {
  background: var(--primary-gradient);
  color: var(--white-color);
}

.clientes__title {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
}

.clientes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.cliente {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, background-color 0.3s;
}

.cliente:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.cliente__brasao {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin: 0 auto var(--mb-1);
  filter: brightness(0) invert(1);
}

.cliente__nome {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  font-weight: var(--font-medium);
  line-height: 1.3;
}

/* ===== CONTATO ===== */
.contato {
  background-color: var(--white-color);
}

.contato__title {
  font-size: var(--h1-font-size);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
}

.contato__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contato__subtitle {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.contato__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.contato__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--mb-1-5);
}

.contato__icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contato__item h4 {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  margin-bottom: 0.25rem;
}

.contato__item p {
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.contato__form {
  background-color: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contato__form-group {
  margin-bottom: var(--mb-1-5);
}

.contato__input,
.contato__textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  background-color: var(--white-color);
  transition: border-color 0.3s;
}

.contato__input:focus,
.contato__textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.contato__textarea {
  resize: vertical;
  min-height: 120px;
}

.contato__button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contato__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-gradient);
  color: var(--white-color);
  padding: 3rem 0 2rem;
}

.footer__container {
  text-align: center;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2);
}

.footer__logo-img {
  height: 3rem;
  width: auto;
  margin: 0 auto;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--white-color);
}

.footer__text {
  color: var(--white-color);
  opacity: 0.9;
}

.footer__social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--mb-1);
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.25rem;
  transition: background-color 0.3s, transform 0.3s;
}

.footer__social-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.footer__copy {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  opacity: 0.8;
}

/* ===== SCROLL UP ===== */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--secondary-color);
  opacity: 0.8;
  padding: 0.3rem;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.3s, opacity 0.3s, transform 0.3s;
}

.scrollup:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.scrollup__icon {
  font-size: 1.5rem;
  color: var(--white-color);
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/* ===== BREAKPOINTS ===== */
/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .dashboard__content,
  .contato__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clientes__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white-color);
    padding: 2rem 1.5rem;
    transition: right 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
  }

  .nav__toggle,
  .nav__close {
    display: block;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
  }

  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .banner__container {
    height: 70vh;
  }

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

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

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

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

/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .banner__container {
    height: 60vh;
  }

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


/* ===== BENEFÍCIOS ===== */
.beneficios {
  background: var(--white-color);
  padding: 4rem 0;
}

.beneficios__title {
  font-size: var(--h1-font-size);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.beneficio__pilar {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(24, 30, 44, 0.1);
  border-left: 4px solid var(--primary-color);
}

.pilar__title {
  font-size: var(--h2-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-bold);
  text-align: center;
}

.pilar__lista {
  list-style: none;
  padding: 0;
}

.pilar__lista li {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: var(--mb-0-75);
  padding-left: 1rem;
  position: relative;
}

.pilar__lista li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ===== VIATURA CONTENT ===== */
.viatura__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  margin-top: var(--mb-3);
}

.viatura__image {
  text-align: center;
  width: 100%;
}

.viatura__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(24, 30, 44, 0.1);
}

.viatura__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.feature {
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(24, 30, 44, 0.1);
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.feature__icon {
  margin-bottom: var(--mb-1);
}

.feature__icon img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.feature__title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-0-75);
  font-weight: var(--font-semibold);
}

.feature__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/* ===== MOBILIDADE SGP ===== */
.solucoes__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.solucoes__image {
  text-align: center;
}

.solucoes__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 1rem;
}

.solucoes__text p {
  margin-bottom: var(--mb-1-5);
  color: var(--text-color);
  line-height: 1.7;
}

/* ===== DASHBOARD CSS PURO ===== */
.dashboard {
  background: var(--primary-gradient);
  color: var(--white-color);
  padding: 4rem 0;
}

.dashboard__title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-weight: var(--font-bold);
}

.dashboard__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard__monitor {
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid #333;
}

.dashboard__screen {
  background: #000;
  border-radius: 0.5rem;
  padding: 1.5rem;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  height: 100%;
}

.dashboard__widget {
  background: linear-gradient(135deg, #181e2c 0%, #2a3441 100%);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #00ff88;
  position: relative;
}

.widget__title {
  color: #00ff88;
  font-size: var(--small-font-size);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.widget__value {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  text-align: center;
}

.widget__chart {
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #00ff88 0%, #0099ff  50%, #ff6b6b 100%);
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  opacity: 0.7;
}

.dashboard__map {
  grid-column: span 2;
  background: #0a0a0a;
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.map__brazil {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #181e2c 0%, #2a3441 100%);
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: var(--font-semibold);
}

.map__point {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  position: absolute;
  animation: pulse 2s infinite;
}

.map__point:nth-child(1) { top: 30%; left: 60%; }
.map__point:nth-child(2) { top: 50%; left: 45%; }
.map__point:nth-child(3) { top: 70%; left: 55%; }
.map__point:nth-child(4) { top: 40%; left: 70%; }
.map__point:nth-child(5) { top: 60%; left: 40%; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .viatura__content,
  .solucoes__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .beneficios__grid {
    grid-template-columns: 1fr;
  }
  
  .pilar__lista li {
    font-size: var(--smaller-font-size);
  }
  
  /* Dashboard mobile */
  .dashboard__monitor {
    padding: 1rem;
    margin: 0 1rem;
  }
  
  .dashboard__screen {
    padding: 1rem;
    min-height: 300px;
  }
  
  .dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .dashboard__widget {
    padding: 0.75rem;
  }
  
  .widget__title {
    font-size: var(--smaller-font-size);
  }
  
  .widget__value {
    font-size: var(--h3-font-size);
  }
}

