/* Formulário RSVP */
#rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 0; /* opcional, mas remove o espaçamento extra */
}

#rsvp-form input[type="text"],
#rsvp-form input[type="email"],
#rsvp-form input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#rsvp-form div {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

#rsvp-form {
    font-weight: 500;
    margin-top: 0.6rem;
    text-align: center;
}

/* Lista de Presentes */
.gift-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gift-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.gift-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gift-card-body {
    padding: 1rem;
}
.gift-card h3 {
    margin-top: 0;
}
.container {
  box-shadow: none;
  border: none;
}