feat: form submission handler with email + WhatsApp notifications

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Gestoría LP
2026-03-02 00:11:42 +00:00
parent aacdcb92f7
commit 0ef344b67a
3 changed files with 158 additions and 0 deletions

View File

@@ -1222,6 +1222,51 @@ select.form-control {
margin-bottom: var(--space-xs);
}
/* ============================================================
Confirmation Page
============================================================ */
.confirmation-section {
display: flex;
align-items: center;
justify-content: center;
min-height: 60vh;
padding-top: 120px;
}
.confirmation-card {
text-align: center;
max-width: 500px;
margin: 0 auto;
padding: var(--space-3xl);
background: var(--color-white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
}
.confirmation-card__icon {
font-size: 4rem;
color: var(--color-success);
margin-bottom: var(--space-lg);
}
.confirmation-card h1 {
color: var(--color-primary);
margin-bottom: var(--space-md);
}
.confirmation-card p {
color: var(--color-gray-600);
margin-bottom: var(--space-sm);
}
.confirmation-card__actions {
margin-top: var(--space-xl);
display: flex;
flex-direction: column;
gap: var(--space-md);
align-items: center;
}
/* ============================================================
Scroll Animations
============================================================ */