body {
  min-height: 100vh;
  background: linear-gradient(to bottom, #eafcf1 0%, #ffffff 60%);
  font-family: 'Inter', sans-serif;
}

.logo-heart { font-size: 3rem; color: #05A951; }

.card-custom {
    max-width: 420px;
    margin: 0 16px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: #ffffff;
    padding: 2rem;
}

.btn-main {
    background-color: #037a3a; /* antes: #05A951 */
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}
.btn-main:hover {
    background-color: #026632; /* hover mais escuro */
}


.btn-outline-custom {
    border: 1px solid #037a3a; /* antes: #05A951 */
    color: #037a3a;
    font-weight: 500;
    border-radius: 10px;
}
.btn-outline-custom:hover {
    border: 1px solid #026632;
    color: #026632;
    font-weight: bold;
}

.footer-text {
    font-size: 0.85rem;
    color: #444; /* antes: #666 */
    margin-top: 1rem;
}

/* Efeito de elevação no hover (opcional) */
.card.elevate { transition: box-shadow .2s, transform .2s; }
.card.elevate:hover { box-shadow: var(--bs-box-shadow-lg); transform: translateY(-2px); }