@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Caveat:wght@600&family=Lato:wght@400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
  background: #f6efe4;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(168, 184, 138, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 90% 85%, rgba(199, 145, 110, 0.10) 0%, transparent 40%);
  margin: 0;
  padding: 30px 20px;
  min-height: 100vh;
}

.main-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #5c6b42;
  margin: 6px 0 18px;
  letter-spacing: 0.3px;
  position: relative;
}

h2::after {
  content: "✦";
  display: block;
  font-size: 13px;
  color: #c7916e;
  margin-top: 8px;
  letter-spacing: 6px;
}

.count-info {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: #a8714f;
  margin-bottom: 10px;
}

.container {
  width: 100%;
  max-width: 550px;
  margin: 20px auto;
  background: #fffcf7;
  padding: 36px 34px;
  border-radius: 18px;
  border: 1px solid #e6d8c3;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 34px rgba(92, 107, 66, 0.10);
  box-sizing: border-box;
  position: relative;
}

.container::before {
  content: "🌿";
  position: absolute;
  top: -16px;
  left: 28px;
  font-size: 26px;
  background: #f6efe4;
  padding: 0 6px;
}

.container-tabela {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  background: #fffcf7;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e6d8c3;
  box-shadow: 0 14px 34px rgba(92, 107, 66, 0.10);
  box-sizing: border-box;
  overflow-x: auto;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  color: #6f7d52;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

form input[type="text"],
form input[type="number"],
form input[type="date"],
form input[type="time"],
form select {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 18px;
  border: 1.5px solid #e0cdb3;
  border-radius: 8px;
  background: #fffefb;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #4a4334;
  box-sizing: border-box;
  transition: 0.25s;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: #8a9a6e;
  box-shadow: 0 0 0 3px rgba(138, 154, 110, 0.18);
  background: #ffffff;
}

form button {
  background: #7c8f5e;
  background-image: linear-gradient(160deg, #8a9a6e, #6f7d52);
  color: #fffdf8;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 6px 16px rgba(111, 125, 82, 0.30);
}

form button:hover {
  background-image: linear-gradient(160deg, #6f7d52, #5c6b42);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(111, 125, 82, 0.38);
}

.mensagem {
  background: #eef2e3;
  color: #5d6e44;
  border: 1px dashed #a8b88a;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fffefb;
  border-radius: 10px;
  overflow: hidden;
}

table th {
  background: #6f7d52;
  color: #fdf8ef;
  padding: 13px 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.6px;
  font-weight: 700;
}

table td {
  padding: 11px 10px;
  text-align: center;
  border-bottom: 1px solid #ecdfca;
  color: #4a4334;
  font-size: 14px;
}

table tr:nth-child(even) {
  background: #faf4e9;
}

table tr:nth-child(odd) {
  background: #fffefb;
}

table tr:hover {
  background: #f1e6d2;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 26px 22px;
  }

  .container-tabela {
    width: 95%;
  }

  table th,
  table td {
    font-size: 11px;
    padding: 8px;
  }
}