/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fafafa;
}

.wrapper {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
}

/* Cabeçalho */
.site-header {
  background: #004058;
  color: #fff;
  padding: 1rem 0;
}

.logo {
  display: inline-block;
  font-size: 1.5rem;
}

.main-nav {
  float: right;
}

.main-nav .nav-link {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: bold;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0;
  background: #e8f1f2;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.buttons .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 0.5rem;
  font-weight: bold;
}

.btn.primary {
  background: linear-gradient(135deg, #007acc, #004058);
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn.secondary {
  background: transparent;
  color: #007acc;
  border: 2px solid #007acc;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Rodapé */
.site-footer {
  background: #333;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
.nav-link.small {
  font-size: 0.875rem;
  color: #ccc;
  margin-top: 0.5rem;
  display: inline-block;
}
.nav-link.small:hover {
  text-decoration: underline;
  color: #fff;
}

/* Seção de exclusão */
.deletion {
  padding: 2rem 0;
}

.deletion h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.deletion-form input,
.deletion-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.deletion-form button {
  margin-top: 1rem;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.feedback-form button.btn.primary {
  background: linear-gradient(135deg, #007acc, #004058);
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feedback-form button.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Estilo para a caixa de seleção de aplicativo */
.feedback-form select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background: #fff;
  appearance: none; /* remove flecha padrão em alguns navegadores */
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

.feedback-form select:focus {
  border-color: #007acc;
  box-shadow: 0 0 0 2px rgba(0,122,204,0.2);
  outline: none;
}


