@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* ===========================
   BARBIE STYLE CSS
   =========================== */

body {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #ff80b5, #ff4d9e, #e91e8c);
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

.main-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin: 0 0 4px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(180, 0, 100, 0.4);
}

h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 16px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ff4d9e;
  text-align: center;
  margin: 0 0 12px;
}

.count-info {
  text-align: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(150, 0, 80, 0.3);
}

/* ===========================
   CONTAINERS
   =========================== */

.container {
  width: 100%;
  max-width: 480px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.97);
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(200, 0, 120, 0.22), 0 2px 0 #ff80b5;
  border: 2px solid #ffb3d9;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4d9e, #ff80b5, #e91e8c, #ff4d9e);
}

.container-tabela {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.97);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(200, 0, 120, 0.18);
  border: 2px solid #ffb3d9;
  box-sizing: border-box;
  overflow-x: auto;
  position: relative;
}

.container-tabela::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4d9e, #ff80b5, #e91e8c, #ff4d9e);
  border-radius: 20px 20px 0 0;
}

/* ===========================
   FORMULÁRIO
   =========================== */

form {
  display: flex;
  flex-direction: column;
}

form label {
  color: #c2185b;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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: 14px;
  border: 2px solid #f8bbd0;
  border-radius: 50px;
  background: #fff7fc;
  box-sizing: border-box;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 14px;
  color: #ad1457;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

form input:focus,
form select:focus {
  border-color: #e91e8c;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
  background: #fff;
}

form button {
  background: linear-gradient(90deg, #e91e8c, #ff4d9e);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 50px;
  width: 100%;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: 'Nunito', Arial, sans-serif;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.45);
}

/* ===========================
   MENSAGEM DE FEEDBACK
   =========================== */

.mensagem {
  background: #fce4ec;
  color: #ad1457;
  border: 1.5px solid #f48fb1;
  padding: 12px 16px;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 14px;
}



table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

table th {
  background: linear-gradient(90deg, #e91e8c, #ff4d9e);
  color: white;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

table th:first-child {
  border-radius: 12px 0 0 0;
}

table th:last-child {
  border-radius: 0 12px 0 0;
}

table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #f8bbd0;
  font-size: 13px;
  color: #880e4f;
  font-weight: 600;
}

table tr:nth-child(even) td {
  background: #fff7fc;
}

table tr:nth-child(odd) td {
  background: #fce4ec;
}

table tr:hover td {
  background: #f8bbd0;
  transition: background 0.2s;
}

/* ===========================
   RESPONSIVO
   =========================== */

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 20px;
  }

  .container-tabela {
    width: 95%;
  }

  table th,
  table td {
    font-size: 11px;
    padding: 8px;
  }
}


