/* RESET */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* BODY */
body {
  background: #1f4e79 !important;
  font-family: Arial, sans-serif;
  color: white;
}

/* CONTAINER PRINCIPAL */
.container {
  max-width: 900px;
  margin: 80px auto;
  background: rgba(0,0,0,0.2);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TOPO */
.topo {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  padding: 10px;
  z-index: 1000;
  text-align: center;
}

.logo {
  width: 140px;
  margin: 15px auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

/* GRID */
.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.card {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.02);
}

/* LINHA DO ITEM */
.linha {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* IMAGEM DO PRODUTO */
.img-produto {
  width: 180px;
  height: auto;
  border-radius: 10px;
}

.linha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.info h2 {
  font-size: 22px;
  margin: 0;
}

/* INFO */
.info h2 {
  margin: 0;
}

/* INPUTS E BOTÕES */
input, textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #2ecc71;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

button:hover {
  background: #27ae60;
}

.rodape-versiculo {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  font-size: 18px;
  font-style: italic;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

/* 🔥 CONSULTA DOAÇÃO */

.logo-topo{
  width: 110px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 10px auto;
}

.menu-topo{
  background: #4f6b88;
  text-align: center;
  padding: 20px;
}

.menu-topo h1{
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
}

.menu-links{
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.menu-links a{
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.container-consulta{
  background: #d9d9d9;
  width: 90%;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
}

.container-consulta h2{
  text-align: center;
  margin-bottom: 30px;
  color: black;
}

.form-busca{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.form-busca input{
  width: 300px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #999;
}

.form-busca button{
  background: #2ecc71;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-excel{
    background: #1D6F42;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-excel:hover{
    background: #14532d;
}

/* 🔥 TABELA AJUSTADA */

table{
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

table th{
  background: #ececec;
  padding: 15px;
  color: black;
  font-size: 16px;
  border-bottom: 2px solid #ccc;
}

table td{
  padding: 15px;
  text-align: center;
  border-top: 1px solid #ddd;
  color: black !important;
  font-size: 15px;
  background: white;
}

table tr:hover{
  background: #f5f5f5;
}

table tr:nth-child(even){
  background: #fafafa;
}

table tr:nth-child(even) td{
  background: #fafafa;
}
