
:root {
    /* Cores do botão */
    --btn-gold-start: #C9A85B;
    --btn-gold-end: #B8963C;
    --btn-gold-hover-start: #E5D5A5;
    --btn-gold-hover-end: #C9A85B;
    --btn-shadow: #6A4E2E;
    --btn-shadow-dark: #1A1A1A;
    --btn-success-start: #2E5C4E;
    --btn-success-end: #1E3A3A;
    --btn-error-start: #8B3A3A;
    --btn-error-end: #5A2A2A;
    --btn-disabled-start: #4A4A4A;
    --btn-disabled-end: #2A2A2A;
}

/* ===== BASE ===== */
.submit-btn {
    /* Layout */
    position: relative;
    width: 100%;
    margin-top: 28px;
    padding: 0;
    
    /* Reset */
    border: none;
    background: transparent;
    cursor: pointer;
    
    /* Animação */
    transition: opacity 0.3s ease;
    
    /* Font */
    font-family: var(--font-title, 'Cinzel', serif);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.submit-btn .btn-content {
    /* Layout */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 18px 28px;
    
    /* Visual */
    background: linear-gradient(145deg, var(--btn-gold-start), var(--btn-gold-end));
    color: var(--pure-black, #03070C);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 60px;
    
    /* Tipografia */
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    
    /* Sombra 3D */
    box-shadow: 
        0 10px 0 var(--btn-shadow),
        0 15px 25px -10px rgba(0, 0, 0, 0.6);
    
    /* Transição suave */
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    
    /* Z-index */
    z-index: 3;
}

/* ===== EFEITO GLOW ===== */
.submit-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.4), transparent 80%);
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

/* ===== CRUZ DECORATIVA ===== */
.submit-btn .btn-cross {
    position: absolute;
    font-size: 1.8rem;
    color: var(--btn-gold-start);
    opacity: 0.25;
    font-family: var(--font-title, 'Cinzel', serif);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.submit-btn .btn-cross.left {
    top: -16px;
    left: -12px;
    transform: rotate(-10deg);
}

.submit-btn .btn-cross.right {
    bottom: -16px;
    right: -12px;
    transform: rotate(10deg);
}

/* ===== ÍCONES ===== */
.submit-btn i {
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    color: var(--pure-black, #03070C);
}

.submit-btn i:last-child {
    margin-left: 4px;
}

/* ===== ESTADOS ===== */

/* 1. HOVER */
.submit-btn:not(:disabled):hover .btn-content {
    transform: translateY(-4px);
    background: linear-gradient(145deg, var(--btn-gold-hover-start), var(--btn-gold-hover-end));
    box-shadow: 
        0 14px 0 var(--btn-shadow),
        0 22px 30px -12px rgba(0, 0, 0, 0.7);
}

.submit-btn:not(:disabled):hover .btn-glow {
    opacity: 1;
}

.submit-btn:not(:disabled):hover i:last-child {
    transform: translateX(6px);
}

.submit-btn:not(:disabled):hover i:first-child {
    transform: scale(1.15);
}

.submit-btn:not(:disabled):hover .btn-cross.left {
    opacity: 0.5;
    transform: rotate(-15deg) translateX(-3px) translateY(-3px);
}

.submit-btn:not(:disabled):hover .btn-cross.right {
    opacity: 0.5;
    transform: rotate(15deg) translateX(3px) translateY(3px);
}

/* 2. ACTIVE */
.submit-btn:not(:disabled):active .btn-content {
    transform: translateY(6px);
    box-shadow: 
        0 4px 0 var(--btn-shadow),
        0 18px 25px -10px rgba(0, 0, 0, 0.6);
    transition: all 0.1s ease;
}

/* 3. DISABLED */
.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:disabled .btn-content {
    background: linear-gradient(145deg, var(--btn-disabled-start), var(--btn-disabled-end));
    box-shadow: 0 10px 0 #2A2A2A;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn:disabled i {
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.6;
}

.submit-btn:disabled .btn-cross {
    opacity: 0.1;
}

/* 4. FOCUS - Acessibilidade */
.submit-btn:not(:disabled):focus-visible {
    outline: none;
}

.submit-btn:not(:disabled):focus-visible .btn-content {
    box-shadow: 
        0 10px 0 var(--btn-shadow),
        0 0 0 4px rgba(201, 168, 91, 0.35),
        0 18px 25px -10px rgba(0, 0, 0, 0.6);
}

/* ===== VARIAÇÕES ===== */

/* 1. OUTLINE */
.submit-btn.outline .btn-content {
    background: transparent;
    color: var(--btn-gold-start);
    border: 2px solid var(--btn-gold-start);
    box-shadow: 0 10px 0 rgba(106, 78, 46, 0.25);
}

.submit-btn.outline:not(:disabled):hover .btn-content {
    background: rgba(201, 168, 91, 0.08);
    color: var(--btn-gold-hover-start);
    border-color: var(--btn-gold-hover-start);
    box-shadow: 0 14px 0 rgba(106, 78, 46, 0.25);
}

.submit-btn.outline:disabled .btn-content {
    background: transparent;
    border-color: rgba(74, 74, 74, 0.5);
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 0 rgba(42, 42, 42, 0.25);
}

/* 2. TAMANHOS */
.submit-btn.small .btn-content {
    padding: 14px 22px;
    font-size: 1rem;
    letter-spacing: 3px;
    border-radius: 50px;
}

.submit-btn.small i {
    font-size: 1rem;
}

.submit-btn.large .btn-content {
    padding: 22px 32px;
    font-size: 1.4rem;
    letter-spacing: 6px;
    border-radius: 70px;
}

.submit-btn.large i {
    font-size: 1.4rem;
}

/* 3. ÍCONE DUPLO */
.submit-btn.double-icon .btn-content {
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
}

/* ===== ESTADOS ESPECIAIS ===== */

/* 1. LOADING */
.submit-btn.loading .btn-content {
    background: linear-gradient(145deg, var(--btn-disabled-start), var(--btn-disabled-end));
    cursor: wait;
    pointer-events: none;
}

.submit-btn.loading i.fa-spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 2. SUCESSO */
.submit-btn.success .btn-content {
    background: linear-gradient(145deg, var(--btn-success-start), var(--btn-success-end));
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 0 #1A2A2A;
}

.submit-btn.success i {
    color: white;
}

.submit-btn.success .btn-cross {
    color: var(--btn-success-start);
}

/* 3. ERRO */
.submit-btn.error .btn-content {
    background: linear-gradient(145deg, var(--btn-error-start), var(--btn-error-end));
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 0 #3A1A1A;
}

.submit-btn.error i {
    color: white;
}

.submit-btn.error .btn-cross {
    color: var(--btn-error-start);
}

/* ===== ANIMAÇÕES ===== */

/* Pulse - apenas quando ativo e não em estados especiais */
@keyframes softPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 0 var(--btn-shadow), 0 15px 25px -10px rgba(0,0,0,0.6);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 10px 0 var(--btn-shadow), 0 0 20px rgba(201, 168, 91, 0.3), 0 18px 28px -10px rgba(0,0,0,0.6);
    }
}

.submit-btn:not(:disabled):not(.loading):not(.success):not(.error) .btn-content {
    animation: softPulse 2.2s infinite ease-in-out;
}

/* Glow contínuo */
@keyframes softGlow {
    0%, 100% { box-shadow: 0 10px 0 var(--btn-shadow), 0 0 12px rgba(201, 168, 91, 0.2), 0 15px 25px -10px rgba(0,0,0,0.6); }
    50% { box-shadow: 0 10px 0 var(--btn-shadow), 0 0 24px rgba(201, 168, 91, 0.5), 0 18px 28px -10px rgba(0,0,0,0.6); }
}

.submit-btn.highlight .btn-content {
    animation: softGlow 1.8s infinite;
}

/* Shake - para erro */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.submit-btn.shake .btn-content {
    animation: shake 0.5s ease;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 768px) {
    .submit-btn .btn-content {
        padding: 16px 24px;
        font-size: 1.1rem;
        letter-spacing: 3px;
        box-shadow: 0 8px 0 var(--btn-shadow), 0 12px 20px -8px rgba(0,0,0,0.6);
    }
    
    .submit-btn.large .btn-content {
        padding: 20px 28px;
        font-size: 1.3rem;
        letter-spacing: 5px;
    }
    
    .submit-btn .btn-cross {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .submit-btn {
        margin-top: 22px;
    }
    
    .submit-btn .btn-content {
        padding: 14px 20px;
        font-size: 0.95rem;
        letter-spacing: 2px;
        gap: 10px;
        border-radius: 50px;
        box-shadow: 0 7px 0 var(--btn-shadow), 0 10px 18px -6px rgba(0,0,0,0.6);
    }
    
    .submit-btn.large .btn-content {
        padding: 16px 22px;
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
    
    .submit-btn i {
        font-size: 0.95rem;
    }
    
    .submit-btn.large i {
        font-size: 1.1rem;
    }
    
    .submit-btn .btn-cross {
        font-size: 1.3rem;
    }
    
    .submit-btn .btn-cross.left {
        top: -14px;
        left: -10px;
    }
    
    .submit-btn .btn-cross.right {
        bottom: -14px;
        right: -10px;
    }
    
    /* Ajuste de animação para mobile */
    .submit-btn:not(:disabled):not(.loading):not(.success):not(.error) .btn-content {
        animation: none;
    }
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    .submit-btn .btn-content {
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .submit-btn.outline .btn-content {
        border-color: var(--btn-gold-start);
    }
}

/* ===== OTIMIZAÇÕES DE PERFORMANCE ===== */
.submit-btn .btn-content,
.submit-btn i,
.submit-btn .btn-cross {
    will-change: transform, opacity, box-shadow;
}

.submit-btn:not(:disabled):hover .btn-content {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.registration-form {
    margin-bottom: 40px;
    background: rgba(3, 7, 12, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 35px;
    border: 1px solid rgba(201, 168, 91, 0.15);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Título do formulário */
.form-title {
    font-family: var(--font-title, 'Cinzel', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white, #FFFFFF);
    margin-bottom: 25px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-title i {
    color: var(--sacred-gold, #C9A85B);
    font-size: 1.6rem;
}

.form-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--sacred-gold, #C9A85B), transparent);
    opacity: 0.3;
}

/* Grid do formulário */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 10px;
}

/* Campo com ícone */
.input-with-icon {
    position: relative;
    transition: all 0.3s ease;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sacred-gold, #C9A85B);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
    text-shadow: 0 0 10px rgba(201, 168, 91, 0.3);
}

/* Input field */
.form-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: rgba(3, 7, 12, 0.6);
    border: 1.5px solid rgba(201, 168, 91, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--off-white, #F5F7FA);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-input::placeholder {
    color: rgba(226, 230, 236, 0.5);
    font-weight: 300;
    font-size: 0.95rem;
}

.form-input:hover {
    border-color: rgba(201, 168, 91, 0.4);
    background: rgba(3, 7, 12, 0.8);
}

.form-input:focus {
    outline: none;
    border-color: var(--sacred-gold, #C9A85B);
    background: rgba(3, 7, 12, 0.9);
    box-shadow: 
        0 0 0 3px rgba(201, 168, 91, 0.1),
        0 8px 20px -8px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* Efeito de foco no ícone */
.input-with-icon:focus-within i {
    color: var(--gold-light, #E5D5A5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    text-shadow: 0 0 15px rgba(201, 168, 91, 0.6);
}

/* Campo de texto completo */
.form-input-full {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .form-input-full {
        grid-column: span 1;
    }
}

/* Textarea */
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(3, 7, 12, 0.6);
    border: 1.5px solid rgba(201, 168, 91, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--off-white, #F5F7FA);
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--sacred-gold, #C9A85B);
    background: rgba(3, 7, 12, 0.9);
    box-shadow: 0 0 0 3px rgba(201, 168, 91, 0.1);
}

/* Select dropdown */
.form-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(3, 7, 12, 0.6);
    border: 1.5px solid rgba(201, 168, 91, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--off-white, #F5F7FA);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23C9A85B'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-select option {
    background: var(--deep-blue, #0B1A2E);
    color: var(--off-white, #F5F7FA);
}

/* Checkbox estilizado */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0 20px;
    padding: 15px 20px;
    background: rgba(3, 7, 12, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 91, 0.15);
    transition: all 0.3s ease;
}

.form-checkbox:hover {
    background: rgba(3, 7, 12, 0.5);
    border-color: rgba(201, 168, 91, 0.3);
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(3, 7, 12, 0.8);
    border: 2px solid rgba(201, 168, 91, 0.5);
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
}

.form-checkbox input[type="checkbox"]:hover {
    border-color: var(--sacred-gold, #C9A85B);
    box-shadow: 0 0 15px rgba(201, 168, 91, 0.3);
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--sacred-gold, #C9A85B);
    border-color: var(--gold-light, #E5D5A5);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--pure-black, #03070C);
    font-size: 0.9rem;
    font-weight: 900;
}

.form-checkbox label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    color: var(--off-white, #F5F7FA);
    cursor: pointer;
    line-height: 1.5;
    flex: 1;
}

.form-checkbox label strong {
    color: var(--gold-light, #E5D5A5);
    font-weight: 600;
}

/* Botão de submit */
.submit-btn {
    width: 100%;
    position: relative;
    margin-top: 25px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.submit-btn .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(145deg, var(--sacred-gold, #C9A85B), #B8963C);
    color: var(--pure-black, #03070C);
    font-family: var(--font-title, 'Cinzel', serif);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 
        0 8px 0 #6A4E2E,
        0 15px 25px -8px rgba(255, 255, 255, 0.6);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover .btn-content {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 0 #6A4E2E,
        0 20px 30px -8px rgba(255, 255, 255, 0.7);
    background: linear-gradient(145deg, var(--gold-light, #E5D5A5), var(--sacred-gold, #C9A85B));
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn i {
    transition: transform 0.3s ease;
    color: var(--pure-black, #03070C);
}

.submit-btn:active .btn-content {
    transform: translateY(5px);
    box-shadow: 
        0 3px 0 #6A4E2E,
        0 15px 25px -8px rgba(0,0,0,0.6);
}

.submit-btn:disabled .btn-content {
    background: linear-gradient(145deg, #5A5A5A, #3A3A3A);
    box-shadow: 0 8px 0 #2A2A2A;
    border-color: rgba(255,255,255,0.1);
    color: #CCCCCC;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Divisor decorativo */
.form-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: rgba(201, 168, 91, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 91, 0.3), transparent);
}

/* Mensagens de erro/validação */
.form-error {
    color: #FF6B6B;
    font-size: 0.85rem;
    margin-top: 6px;
    padding-left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-error i {
    color: #FF6B6B;
    font-size: 0.9rem;
}

/* Input com erro */
.form-input.error {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

/* Helper text */
.form-helper {
    color: rgba(226, 230, 236, 0.6);
    font-size: 0.8rem;
    margin-top: 6px;
    padding-left: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    .registration-form {
        padding: 25px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-grid {
        gap: 18px;
    }
    
    .submit-btn .btn-content {
        padding: 16px 20px;
        font-size: 1rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .registration-form {
        padding: 20px;
        border-radius: 24px;
    }
    
    .form-title {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
    
    .form-input {
        padding: 14px 14px 14px 45px;
        font-size: 0.95rem;
    }
    
    .form-checkbox {
        padding: 12px 16px;
    }
    
    .submit-btn .btn-content {
        padding: 14px 18px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

/* Animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-form {
    animation: slideIn 0.6s ease-out;
}

/* Estado de loading */
.submit-btn.loading .btn-content {
    background: linear-gradient(145deg, #5A5A5A, #3A3A3A);
    cursor: wait;
}

.submit-btn.loading i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



 
        
        :root {
            --deep-blue: #0B1A2E;
            --darker-blue: #07111F;
            --pure-black: #03070C;
            --sacred-gold: #C9A85B;
            --gold-light: #E5D5A5;
            --pure-white: #FFFFFF;
            --off-white: #F5F7FA;
            --gray-mist: #E2E6EC;
            
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            
            --font-title: 'Cinzel', 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background: var(--pure-black);
            color: var(--off-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

     
      .hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image:
        linear-gradient(
            135deg,
            rgba(3, 7, 12, 0.85) 0%,
            rgba(11, 26, 46, 0.75) 50%,
            rgba(3, 7, 12, 0.9) 100%
        ),
        url('/assets/img/hero.png');

    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    overflow: hidden;
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 40%, rgba(201, 168, 91, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '†';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 35vw;
            font-family: var(--font-title);
            color: rgba(201, 168, 91, 0.03);
            pointer-events: none;
            z-index: 1;
            animation: crossBreathing 8s ease-in-out infinite;
        }

        .features {
    list-style: none;
    margin-bottom: 45px;
    background: rgba(3, 7, 12, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 10px 25px;
    border: 1px solid rgba(201, 168, 91, 0.15);
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.4);
}

.feature-item {
    padding: 22px 5px;
    border-bottom: 1px solid rgba(201, 168, 91, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(145deg, var(--sacred-gold), #B8963C);
    color: var(--pure-black);
    border-color: var(--pure-white);
    box-shadow: 0 0 20px rgba(201, 168, 91, 0.4);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(11, 26, 46, 0.8), rgba(3, 7, 12, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sacred-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 91, 0.3);
    box-shadow: 0 8px 16px -6px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-text {
    font-weight: 400;
    line-height: 1.7;
    color: var(--off-white);
    font-size: 1.05rem;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.feature-text strong {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(201, 168, 91, 0.2);
}

/* ============================================ */
/* COMMITMENT CARD - DESIGN PREMIUM */
/* ============================================ */

.commitment-card {
    position: relative;
    background: linear-gradient(165deg, 
        rgba(11, 26, 46, 0.85), 
        rgba(3, 7, 12, 0.95)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 32px;
    margin: 30px 0 20px;
    border: 1px solid rgba(201, 168, 91, 0.25);
    box-shadow: 
        0 20px 40px -15px rgba(0,0,0,0.7),
        inset 0 0 0 1px rgba(255,255,255,0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Efeito de brilho interno */
.commitment-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(201, 168, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Efeito de cruz ao fundo */
.commitment-card::before {
    content: '✠';
    position: absolute;
    bottom: -20px;
    right: -15px;
    font-size: 120px;
    opacity: 0.04;
    color: var(--sacred-gold);
    font-family: var(--font-title);
    transform: rotate(15deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.commitment-card:hover::before {
    opacity: 0.08;
    transform: rotate(20deg) scale(1.1);
}

/* Header do card */
.commitment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.commitment-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, 
        rgba(201, 168, 91, 0.15), 
        rgba(11, 26, 46, 0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sacred-gold);
    font-size: 1.6rem;
    border: 1px solid rgba(201, 168, 91, 0.3);
    box-shadow: 0 8px 16px -6px rgba(0,0,0,0.5);
}

.commitment-badge {
    background: linear-gradient(145deg, var(--sacred-gold), #B8963C);
    color: var(--pure-black);
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Versículo */
.commitment-verse {
    text-align: center;
    margin-bottom: 28px;
    padding: 20px 0 15px;
    border-bottom: 1px solid rgba(201, 168, 91, 0.15);
    /* border-top: 1px solid rgba(201, 168, 91, 0.15); */
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-light);
    font-style: italic;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(201, 168, 91, 0.2);
    position: relative;
}

.quote-mark {
    color: var(--sacred-gold);
    font-size: 2.2rem;
    font-family: serif;
    opacity: 0.5;
    margin: 0 5px;
}

.commitment-verse small {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-mist);
    margin-top: 8px;
    letter-spacing: 2px;
    font-style: normal;
    opacity: 0.7;
}

/* Wrapper do Checkbox */
.checkbox-wrapper {
    background: rgba(3, 7, 12, 0.4);
    border-radius: 24px;
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 168, 91, 0.15);
    transition: all 0.3s ease;
}

.checkbox-wrapper:hover {
    background: rgba(3, 7, 12, 0.6);
    border-color: rgba(201, 168, 91, 0.3);
}

/* Checkbox customizado */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.checkbox-container input[type="checkbox"] {
    width: 26px;
    height: 26px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(3, 7, 12, 0.8);
    border: 2px solid rgba(201, 168, 91, 0.5);
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.checkbox-container input[type="checkbox"]:hover {
    border-color: var(--sacred-gold);
    box-shadow: 0 0 15px rgba(201, 168, 91, 0.3);
}

.checkbox-container input[type="checkbox"]:checked {
    background: var(--sacred-gold);
    border-color: var(--gold-light);
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--pure-black);
    font-size: 1rem;
    font-weight: 900;
}

.checkbox-container label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--off-white);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text strong {
    color: var(--gold-light);
    font-weight: 700;
    position: relative;
    /* display: inline-block; */
}

.checkbox-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--sacred-gold), transparent);
}

.checkbox-emoji {
    font-size: 1.3rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
    display: inline-block;
}

.checkbox-wrapper:hover .checkbox-emoji {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}

/* Divider decorativo */
.commitment-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 25px;
    position: relative;
}

.commitment-divider::before,
.commitment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 91, 0.3), transparent);
}

.divider-icon {
    margin: 0 20px;
    color: var(--sacred-gold);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* BOTÃO CTA - VERSÃO PREMIUM */
.btn-commitment {
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(145deg, var(--sacred-gold), #B8963C);
    color: var(--pure-black);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 
        0 8px 0 #6A4E2E,
        0 15px 25px -8px rgba(0,0,0,0.6);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

/* Efeito de brilho no botão */
.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3), transparent 70%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Estado HOVER - ativado */
.btn-commitment:not(:disabled):hover .btn-content {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 0 #6A4E2E,
        0 20px 30px -8px rgba(0,0,0,0.7);
    background: linear-gradient(145deg, var(--gold-light), var(--sacred-gold));
}

.btn-commitment:not(:disabled):hover .btn-glow {
    opacity: 1;
}

.btn-commitment:not(:disabled):hover i:last-child {
    transform: translateX(8px);
}

.btn-commitment:not(:disabled):hover i:first-child {
    transform: translateX(-3px);
}

/* Estado ACTIVE */
.btn-commitment:not(:disabled):active .btn-content {
    transform: translateY(5px);
    box-shadow: 
        0 3px 0 #6A4E2E,
        0 15px 25px -8px rgba(0,0,0,0.6);
}

/* Estado DISABLED */
.btn-commitment:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-commitment:disabled .btn-content {
    background: linear-gradient(145deg, #5A5A5A, #3A3A3A);
    box-shadow: 0 8px 0 #2A2A2A;
    border-color: rgba(255,255,255,0.1);
    color: #CCCCCC;
}

.btn-commitment:disabled i {
    opacity: 0.5;
}

/* Ícones do botão */
.btn-content i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: var(--pure-black);
}

.btn-content i:last-child {
    margin-left: 5px;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Mensagem de confirmação */
.commitment-confirmation {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(46, 92, 78, 0.2);
    border: 1px solid rgba(201, 168, 91, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    animation: slideUp 0.5s ease;
}

.commitment-confirmation i {
    font-size: 1.3rem;
    color: #2E5C4E;
}

/* Classe ativada via JS */
.commitment-card.confirmed .btn-commitment {
    opacity: 0.9;
}

.commitment-card.confirmed .commitment-confirmation {
    display: flex;
}

/* Animações */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Quando checkbox marcado, botão ganha animação */
#agree:checked ~ .btn-commitment:not(:disabled) .btn-content {
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .commitment-card {
        padding: 28px;
    }
    
    .commitment-verse {
        font-size: 1.3rem;
    }
    
    .checkbox-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .checkbox-container label {
        flex-wrap: wrap;
    }
    
    .btn-content {
        padding: 16px 20px;
        font-size: 1rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .commitment-card {
        padding: 24px;
    }
    
    .commitment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .commitment-badge {
        align-self: flex-start;
    }
    
    .commitment-verse {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .quote-mark {
        font-size: 1.8rem;
    }
    
    .checkbox-wrapper {
        padding: 16px;
    }
    
    .btn-content {
        padding: 14px 18px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .btn-content i {
        font-size: 1rem;
    }
}

/* Dark mode suave */
@media (prefers-color-scheme: dark) {
    .commitment-card {
        background: linear-gradient(165deg, #0A1A2A, #020408);
    }
}

        @keyframes crossBreathing {
            0%, 100% { opacity: 0.03; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.06; transform: translate(-50%, -50%) scale(1.05); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            padding: var(--space-lg) var(--space-md);
            margin: 0 auto;
            animation: fadeInUp 1.2s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        
        .main-title {
            font-family: var(--font-title);
            font-size: clamp(2.8rem, 12vw, 5.2rem);
            font-weight: 900;
            line-height: 1.1;
            color: var(--pure-white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 30px rgba(201, 168, 91, 0.2);
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
        }

        .main-title span {
            color: var(--sacred-gold);
            display: inline-block;
            position: relative;
        }

        .main-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
        }

        .hero-subtitle {
            font-family: var(--font-title);
            font-size: clamp(1.1rem, 4vw, 1.6rem);
            font-weight: 600;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--gold-light);
            background: rgba(11, 26, 46, 0.3);
            backdrop-filter: blur(4px);
            display: inline-block;
            padding: 0.6rem 1.8rem;
            border: 1px solid rgba(201, 168, 91, 0.3);
            border-radius: 40px;
            margin-bottom: var(--space-md);
        }

        .hero-description {
            font-family: var(--font-body);
            font-size: clamp(1rem, 3vw, 1.3rem);
            font-weight: 300;
            color: var(--gray-mist);
            max-width: 700px;
            margin: 0 auto var(--space-lg);
            padding: 0 var(--space-md);
        }

   
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(145deg, var(--sacred-gold), #B8963C);
            color: var(--pure-black);
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.3);
            border: 1px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s ease;
        }

        .btn-gold:hover {
            background: linear-gradient(145deg, var(--gold-light), var(--sacred-gold));
            transform: translateY(-3px);
            box-shadow: 0 20px 35px -8px rgba(0,0,0,0.6), 0 0 0 2px rgba(201, 168, 91, 0.5), inset 0 1px 0 rgba(255,255,255,0.5);
        }

        .btn-gold:hover::before {
            left: 100%;
        }

        .btn-gold i {
            transition: transform 0.3s ease;
        }

        .btn-gold:hover i {
            transform: translateX(5px);
        }

        .btn-gold:disabled {
            background: #4A4A4A;
            cursor: not-allowed;
            opacity: 0.6;
        }

        
        .info-section {
            background: linear-gradient(180deg, var(--darker-blue) 0%, var(--pure-black) 100%);
            padding: var(--space-xl) var(--space-md);
            position: relative;
            overflow: hidden;
        }

        .info-section::before {
            content: '✠';
            position: absolute;
            bottom: -50px;
            right: -30px;
            font-size: 300px;
            color: rgba(201, 168, 91, 0.03);
            font-family: var(--font-title);
            transform: rotate(15deg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .section-title {
            font-family: var(--font-title);
            font-size: clamp(2rem, 6vw, 3.2rem);
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: var(--space-sm);
            letter-spacing: 2px;
        }

        .section-title i {
            color: var(--sacred-gold);
            font-size: 0.9em;
            margin: 0 15px;
        }

        .section-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
            margin: var(--space-md) auto;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-lg);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-lg);
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-lg);
        }

        .spiritual-card {
            background: rgba(11, 26, 46, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201, 168, 91, 0.15);
            border-radius: 24px;
            padding: var(--space-lg) var(--space-md);
            text-align: center;
            transition: all 0.5s ease;
        }

        .spiritual-card:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 168, 91, 0.4);
            background: rgba(11, 26, 46, 0.6);
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6);
        }

        .card-icon {
            font-size: 2.6rem;
            color: var(--sacred-gold);
            margin-bottom: var(--space-md);
        }

        .card-title {
            font-family: var(--font-title);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: var(--space-sm);
        }

        .card-text {
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--gray-mist);
            line-height: 1.8;
            font-weight: 300;
        }

        .highlight-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--sacred-gold);
            display: block;
            margin-top: var(--space-sm);
            font-family: var(--font-title);
        }

        
        .commitment-section {
            background: var(--deep-blue);
            padding: var(--space-xl) var(--space-md);
            border-top: 1px solid rgba(201, 168, 91, 0.2);
            border-bottom: 1px solid rgba(201, 168, 91, 0.2);
        }

        .commitment-box {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(3, 7, 12, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(201, 168, 91, 0.25);
            border-radius: 32px;
            padding: var(--space-lg);
            text-align: center;
        }

        .verse-text {
            font-family: var(--font-title);
            font-size: clamp(1.4rem, 5vw, 2rem);
            font-weight: 600;
            color: var(--gold-light);
            margin-bottom: var(--space-md);
            font-style: italic;
            position: relative;
            display: inline-block;
        }

        .verse-text::before,
        .verse-text::after {
            content: '“';
            font-size: 3rem;
            color: var(--sacred-gold);
            opacity: 0.5;
            position: absolute;
        }

        .verse-text::before {
            top: -15px;
            left: -30px;
        }

        .verse-text::after {
            content: '”';
            bottom: -35px;
            right: -30px;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: var(--space-lg) 0 var(--space-md);
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 26px;
            height: 26px;
            cursor: pointer;
            accent-color: var(--sacred-gold);
            border-radius: 6px;
            border: 2px solid var(--sacred-gold);
            transition: all 0.2s ease;
        }

        .checkbox-wrapper label {
            font-family: var(--font-body);
            font-size: 1.1rem;
            color: var(--off-white);
            cursor: pointer;
        }

       
        .footer {
            background: var(--pure-black);
            padding: var(--space-xl) var(--space-md) var(--space-lg);
            text-align: center;
            border-top: 1px solid rgba(201, 168, 91, 0.15);
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: var(--font-title);
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--pure-white);
            letter-spacing: 6px;
            margin-bottom: var(--space-md);
        }

        .footer-logo span {
            color: var(--sacred-gold);
        }

        .footer-text {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: #9AA5B5;
            margin-bottom: var(--space-md);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            margin: var(--space-lg) 0;
        }

        .social-link {
            color: rgba(255,255,255,0.5);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(201, 168, 91, 0.05);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .social-link:hover {
            color: var(--sacred-gold);
            background: rgba(201, 168, 91, 0.1);
            border-color: var(--sacred-gold);
            transform: translateY(-5px);
        }

        .copyright {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.3);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: var(--space-lg);
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }
        .mt-1 { margin-top: var(--space-xs); }
        .mt-2 { margin-top: var(--space-sm); }
        .mt-3 { margin-top: var(--space-md); }
        .mt-4 { margin-top: var(--space-lg); }
        .mt-5 { margin-top: var(--space-xl); }
        .mb-1 { margin-bottom: var(--space-xs); }
        .mb-2 { margin-bottom: var(--space-sm); }
        .mb-3 { margin-bottom: var(--space-md); }
        .mb-4 { margin-bottom: var(--space-lg); }
        .mb-5 { margin-bottom: var(--space-xl); }
        .p-1 { padding: var(--space-xs); }
        .p-2 { padding: var(--space-sm); }
        .p-3 { padding: var(--space-md); }
        .p-4 { padding: var(--space-lg); }
        .p-5 { padding: var(--space-xl); }
        .w-100 { width: 100%; }

        .fade-in {
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

     
        @media (max-width: 768px) {
            :root {
                --space-xl: 4rem;
                --space-lg: 3rem;
            }
            .hero-content { padding: var(--space-lg) var(--space-sm); }
            .main-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
            .btn-gold { padding: 1rem 2rem; font-size: 1rem; }
            .grid-2, .grid-3, .grid-4 { gap: var(--space-md); }
            .verse-text::before, .verse-text::after { display: none; }
            .checkbox-wrapper { flex-direction: column; align-items: flex-start; }
        }

        @media (max-width: 480px) {
            .hero-subtitle { letter-spacing: 3px; padding: 0.4rem 1.2rem; }
            .spiritual-card { padding: var(--space-md); }
            .commitment-box { padding: var(--space-md); }
            .btn-gold { width: 100%; }
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--pure-black);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--sacred-gold);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-light);
        }

   