/**
 * Hero Section - Refatoração Completa
 * Design System: Profissional, Equilibrado, Alta Conversão
 */

/* ============================================ */
/* HERO SECTION - 50/50 EQUILIBRADO */
/* ============================================ */

.hero {
    background: linear-gradient(135deg, #5f249f 0%, #7c3aed 100%);
    color: white;
    padding: 48px 20px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    max-height: 117vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Phone Container Responsive */
.phone-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.phone-container {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    max-height: 750px;
    object-fit: contain;
}

.phone-screen {
    overflow: hidden;
    max-height: 100%;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .phone-wrapper {
        max-width: 400px;
    }
    
    .phone-container {
        max-height: 650px;
    }
}

@media (max-width: 768px) {
    .phone-wrapper {
        max-width: 350px;
    }
    
    .phone-container {
        max-height: 600px;
    }
}

@media (max-width: 480px) {
    .phone-wrapper {
        max-width: 300px;
    }
    
    .phone-container {
        max-height: 550px;
    }
    }

    .hero-mockup {
        order: -1; /* Mockup primeiro no mobile */
        margin-top: 40px; /* Menos espaço no mobile */
    }
}

/* ============================================ */
/* HERO TEXTO (ESQUERDA) */
/* ============================================ */

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

/* Badge de Urgência */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    width: fit-content;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Headline Redesign - Equilibrado */
.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);  /* 28-36px */
    font-weight: 900;
    line-height: 1.15;
    margin: 0;
}

.hero-title .highlight {
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 4px;
}

.whatsapp-text {
    color: #25d366 !important;
    text-decoration: none !important;
}

/* Stats Visuais */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;  /* Reduzido de 3rem */
    font-weight: 900;
    line-height: 1;
    color: white;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
    .stat-number {
        font-size: 1.75rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}

/* CTAs Redesign - Roxo/Branco */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 48px;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Enhanced Redesign - Roxo/Branco */
.btn-cta-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: white;
    color: var(--primary);
    position: relative;
    overflow: hidden;
    height: auto;
}

.btn-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 36, 159, 0.1), transparent);
    transition: left 0.5s;
}

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

.cta-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

.cta-main {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.cta-sub strong {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 640px) {
    .btn-cta-enhanced {
        padding: 14px 20px;
    }

    .cta-icon {
        font-size: 1.25rem;
    }

    .cta-main {
        font-size: 0.9375rem;
    }

    .cta-sub {
        font-size: 0.6875rem;
    }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

@media (max-width: 640px) {
    .btn {
        width: 100%;
    }
}

/* ============================================ */
/* HERO MOCKUP - WHATSAPP 3D */
/* ============================================ */

.hero-mockup {
    position: relative;
    padding-bottom: 40px;
    margin-top: 60px;
}

.phone-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    transform: perspective(1200px) rotateY(-35deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-container:hover {
    transform: perspective(1200px) rotateY(-15deg) rotateX(0deg);
}

@media (max-width: 968px) {
    .phone-container {
        max-width: 280px;
        transform: none;
    }
}

.phone {
    background: #1f2937;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #374151,
        0 20px 40px rgba(0,0,0,0.3),
        0 0 100px rgba(102, 126, 234, 0.3);
}

.phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.wa-header {
    background: #075e54;
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.wa-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.wa-info p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.wa-chat {
    background: #e5ddd5;
    padding: 20px 12px;
    height: 540px;
    overflow-y: auto;
    scroll-behavior: smooth;
    position: relative;
}

@media (max-width: 968px) {
    .wa-chat {
        height: 480px;
    }
}

.wa-chat::-webkit-scrollbar {
    width: 8px;
}

.wa-chat::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

.wa-chat::-webkit-scrollbar-thumb {
    background: rgba(95, 36, 159, 0.5);
    border-radius: 4px;
}

.wa-chat::-webkit-scrollbar-thumb:hover {
    background: rgba(95, 36, 159, 0.8);
}

.scroll-indicator {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(95, 36, 159, 0.95);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: fadeInOut 3s infinite;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    height: 32px;
}

.scroll-arrow {
    font-size: 1.25rem;
    animation: bounceArrow 1.5s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.wa-message {
    margin-bottom: 12px;
    display: flex;
    animation: slideIn 0.3s ease;
}

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

.wa-message.user {
    justify-content: flex-end;
}

.wa-bubble {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    color: #111827;
}

.wa-message.user .wa-bubble {
    background: #d9fdd3;
    border-bottom-right-radius: 2px;
    color: #1f2937;
    border: 1px solid #d1f4cc;
}

.wa-message.bot .wa-bubble {
    background: white;
    border-bottom-left-radius: 2px;
    color: #1f2937;
    border: 1px solid #ECECEC;
}

.wa-time {
    font-size: 11px;
    color: #667781;
    margin-top: 4px;
    text-align: right;
}

.wa-verse {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.wa-text {
    font-style: italic;
    color: #374151;
    margin-bottom: 8px;
}

/* WhatsApp Input Area */
.wa-input-area {
    background: #f0f0f0;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #e0e0e0;
}

.wa-attach-btn,
.wa-emoji-btn,
.wa-send-btn {
    background: transparent;
    border: none;
    color: #54656f;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}

.wa-attach-btn:hover,
.wa-emoji-btn:hover,
.wa-send-btn:hover {
    background: rgba(0,0,0,0.05);
}

.wa-send-btn {
    color: var(--primary);
}

.wa-send-btn:hover {
    background: rgba(95, 36, 159, 0.1);
}

.wa-message-input {
    flex: 1;
    background: white;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    font-family: 'Inter', -apple-system, sans-serif;
    outline: none;
    transition: box-shadow 0.2s;
}

.wa-message-input:focus {
    box-shadow: 0 0 0 2px rgba(95, 36, 159, 0.2);
}

.wa-message-input::placeholder {
    color: #8696a0;
}

/* ============================================ */
/* CITAÇÃO BÍBLICA SECTION */
/* ============================================ */

.quote-section {
    background: white;
    padding: 80px 20px;
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #1f2937;
    line-height: 1.8;
    margin: 0 0 24px 0;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 3rem;
    color: #5f249f;
    opacity: 0.3;
}

.quote-reference {
    font-size: 1.125rem;
    font-weight: 800;
    color: #5f249f;
    margin: 0;
}

@media (max-width: 640px) {
    .quote-card {
        padding: 32px 24px;
    }

    .quote-text {
        font-size: 1.25rem;
    }
}

/* ============================================ */
/* PREÇO SECTION REDESIGN */
/* ============================================ */

.pricing-section {
    background: white;
    padding: 64px 20px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Card Destaque (Preço) Redesign */
.pricing-card-highlight {
    background: linear-gradient(135deg, #5f249f, #7c3aed);
    border-color: var(--primary);
    color: white;
    transform: scale(1.02);
}

.pricing-card-highlight:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 12px 28px rgba(95, 36, 159, 0.25);
}

@media (max-width: 968px) {
    .pricing-card-highlight {
        transform: scale(1);
    }

    .pricing-card-highlight:hover {
        transform: translateY(-2px);
    }
}

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(95, 36, 159, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary);
}

.pricing-card-highlight .pricing-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.pricing-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-primary);
}

.pricing-card-highlight .pricing-title {
    color: white;
}

.pricing-value {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 8px 0;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.pricing-card-highlight .pricing-value {
    color: white;
}

.pricing-description {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-card-highlight .pricing-description {
    color: rgba(255,255,255,0.9);
}

/* ============================================ */
/* BENEFÍCIOS SECTION REDESIGN */
/* ============================================ */

.benefits-section {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 64px 20px;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);  /* 24-30px */
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin: 0 0 48px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(95, 36, 159, 0.12);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(95, 36, 159, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.benefit-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================ */
/* RESPONSIVIDADE ADICIONAL REDESIGN */
/* ============================================ */

@media (max-width: 480px) {
    .hero {
        padding: 40px 16px;
    }

    .quote-section,
    .pricing-section,
    .benefits-section {
        padding: 48px 16px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .pricing-value {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* ============================================ */
/* BOTÃO FLUTUANTE WHATSAPP */
/* ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulse-whatsapp 2s infinite;
    z-index: -1;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}
