.footer {
    background: var(--bg-purple-dark);
    color: white;
    padding: 64px 20px 32px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* BIBLIA-DE-BOLSO: Responsividade da seção de cadastro */
    .lead-capture-section {
        padding: 60px 20px;
    }

    .lead-capture-card {
        padding: 32px 24px;
    }

    .lead-capture-title {
        font-size: 1.5rem;
    }

    .phone-container {
        max-width: 100%;
        margin: 20px auto;
    }
}

/* REDESIGN: Seção de cadastro */
.lead-capture-section {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 64px 20px;
    border-top: 3px solid var(--primary);
}

.lead-capture-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--border-purple);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.lead-capture-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.lead-capture-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
}

/* REDESIGN: CTAs Roxo */
.btn-whatsapp {
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(95, 36, 159, 0.3);
    transition: all 0.2s ease;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(95, 36, 159, 0.4);
}

.btn-whatsapp:focus {
    outline: 3px solid rgba(95, 36, 159, 0.5);
    outline-offset: 2px;
}

/* BIBLIA-DE-BOLSO: Select com busca para religião */
.religion-select-wrapper {
    position: relative;
}

.religion-select-wrapper input[list] {
    width: 100%;
}

/* BIBLIA-DE-BOLSO: Corrigir largura dos campos de telefone */
.iti {
    width: 100% !important;
    display: block !important;
}

.iti__selected-flag {
    padding: 0 12px;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
}

.iti__selected-dial-code {
    margin-left: 6px;
}

.iti input[type="tel"],
.iti input.tel-input {
    width: 100% !important;
    padding-left: 90px !important;
    height: 48px;
    font-size: 1rem;
}
    


        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3), 0 10px 40px rgba(95, 36, 159, 0.4);
            }
            50% {
                box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.5), 0 10px 50px rgba(95, 36, 159, 0.6);
            }
        }
    


.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.floating-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-social a svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-social a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(95, 36, 159, 0.4);
    transition: all 0.2s ease;
    z-index: 100;
    font-family: 'Inter', sans-serif;
    height: 48px;
    display: inline-flex;
    align-items: center;
}

.floating-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 36, 159, 0.5);
}

@media (max-width: 768px) {
    .floating-social {
        right: 16px;
        bottom: 100px;
        top: auto;
        transform: none;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .floating-social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .floating-social a svg {
        width: 22px;
        height: 22px;
        display: block;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .floating-cta {
        bottom: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 320px;
        text-align: center;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .floating-cta:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* MERCADO PAGO - Botão estilizado */
.mp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #009ee3 0%, #0084c7 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 158, 227, 0.3);
    text-align: center;
}

.mp-button:hover {
    background: linear-gradient(135deg, #0084c7 0%, #006ba3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 158, 227, 0.4);
    color: white;
}

.form-section {
    margin-bottom: 24px;
}

.order-summary {
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seções do formulário */
.form-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(95, 36, 159, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-weight: 700;
    margin-bottom: 16px;
}

/* Labels e inputs melhorados */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-style: italic;
}

/* Select e textarea consistentes */
select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(95, 36, 159, 0.1);
}

/* Modal scrollável */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Scroll suave no modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
    