/* 🔥 Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f4f6f8;
  color: #333;
}

/* 🔥 Navbar Premium */
.navbar {
  background-color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar .logo {
  color: #0077ff;
  font-weight: 700;
  font-size: 20px;
}

.navbar-right {
  display: flex;
  gap: 30px;
}

.navbar-right a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.navbar-right a:hover {
  background-color: #0077ff;
  color: white;
}

.navbar-right a.active {
  background-color: #0077ff;
  color: white;
}

/* 🔥 Container Principal */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 🔥 Títulos */
h1 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
}

/* 🔥 Inputs e Textareas */
input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

/* 🔥 Botões */
button {
  background-color: #0077ff;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #005fcc;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #00a8ff;
  color: white;
}

table a {
  color: #0077cc;
}

@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    display: none;
  }

  td {
    border: none;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-left: 50%;
  }

  td:before {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
  }

  td:nth-of-type(1):before { content: "Nome"; }
  td:nth-of-type(2):before { content: "Endereço"; }
  td:nth-of-type(3):before { content: "Telefone"; }
  td:nth-of-type(4):before { content: "Site"; }
  td:nth-of-type(5):before { content: "Rating"; }
  td:nth-of-type(6):before { content: "Maps"; }
  td:nth-of-type(7):before { content: "Ações"; }
}
.esqueci {
    margin-top: 10px;
    text-align: center;
}

.esqueci a {
    color: #00a8ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.esqueci a:hover {
    color: #007fcc;
    text-decoration: underline;
}

.cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
}

.card h3 {
    margin: 0;
    color: #00a8ff;
}

.card p {
    font-size: 2em;
    margin: 10px 0 0;
}

canvas {
    margin-bottom: 40px;
    width: 100% !important;
    max-width: 800px;
}
.dashboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
