/* ================================================
   REDESIGN PROFISSIONAL - Inspirado em UI/UX Moderna
   Background gradiente roxo/rosa premium
   ================================================ */

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: #1a202c;
    overflow-x: hidden;
}

/* Container principal com glassmorphism */
.container {
    max-width: 680px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

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

/* Header minimalista e elegante */
.header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.header .subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
    opacity: 0.9;
}

/* Main content com padding consistente */
.main-content {
    padding: 2.5rem 2rem;
}

/* Intro section */
.intro-section {
    margin-bottom: 2.5rem;
}

.intro-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.intro-section h2 .emoji {
    font-size: 1.3rem;
}

.intro-section p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
}

.intro-section p strong {
    color: #e91e63;
    font-weight: 600;
}

/* Prova social redesenhada */
.prova-social {
    background: linear-gradient(135deg, #fff1f2, #fce7f3) !important;
    border-radius: 20px !important;
    padding: 1.75rem 1.5rem !important;
    margin: 2rem 0 !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    position: relative !important;
}

.badge-ao-vivo {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 20px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    animation: pulse 2s infinite !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 1.25rem !important;
}

.stat-item {
    text-align: center !important;
}

.stat-value {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

.stat-value.gradient {
    background: linear-gradient(135deg, #e91e63, #9c27b0) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.stat-value.stars {
    color: #fbbf24 !important;
}

.stat-value.green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.stat-label {
    font-size: 0.8rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.ultimo-relatorio {
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(236, 72, 153, 0.15) !important;
    font-size: 0.8rem !important;
    color: #64748b !important;
    text-align: center !important;
}

.status-dot {
    color: #10b981 !important;
    margin-right: 0.35rem !important;
}

/* Depoimentos modernos */
.depoimentos-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
}

.depoimento-card {
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    border-left: 3px solid #e91e63 !important;
    transition: all 0.3s ease !important;
    cursor: default !important;
}

.depoimento-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15) !important;
}

.depoimento-card:nth-child(2) {
    border-left-color: #9c27b0 !important;
}

.depoimento-card:nth-child(3) {
    border-left-color: #673ab7 !important;
}

.depoimento-header {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
}

.depoimento-avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e91e63, #9c27b0) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.depoimento-info {
    flex: 1 !important;
}

.depoimento-nome {
    font-weight: 600 !important;
    color: #1e293b !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.verificado {
    color: #10b981 !important;
    font-size: 0.85rem !important;
}

.depoimento-stars {
    color: #fbbf24 !important;
    font-size: 0.8rem !important;
}

.depoimento-texto {
    font-style: italic !important;
    color: #475569 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.75rem !important;
}

.depoimento-meta {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
}

/* Formulário limpo e moderno */
.form-card {
    background: linear-gradient(to bottom, #f8fafc, #ffffff) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(102, 126, 234, 0.1) !important;
    margin: 2.5rem 0 !important;
}

.form-card h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    display: block !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
}

.form-group input {
    width: 100% !important;
    padding: 0.95rem 1.1rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #1e293b !important;
}

.form-group input:focus {
    outline: none !important;
    border-color: #e91e63 !important;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1) !important;
    transform: translateY(-1px) !important;
}

.form-group small {
    display: block !important;
    color: #64748b !important;
    font-size: 0.8rem !important;
    margin-top: 0.4rem !important;
}

/* Botão principal premium */
.btn-primary {
    width: 100% !important;
    padding: 1.1rem 2rem !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4) !important;
}

.btn-primary:active {
    transform: translateY(0) !important;
}

.form-privacy {
    margin-top: 1rem !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    color: #64748b !important;
}

/* Features grid minimalista */
.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 1.25rem !important;
    margin-top: 2.5rem !important;
}

.feature-card {
    background: white !important;
    padding: 1.75rem !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.feature-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.2) !important;
}

.feature-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.feature-card h4 {
    color: #1e293b !important;
    margin-bottom: 0.6rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
}

.feature-card p {
    color: #64748b !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* Footer clean */
.footer {
    background: linear-gradient(to top, #f8fafc, #ffffff) !important;
    padding: 2rem !important;
    text-align: center !important;
    color: #64748b !important;
    font-size: 0.85rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.footer p {
    margin: 0.25rem 0 !important;
}

.privacy-note {
    color: #94a3b8 !important;
    font-size: 0.8rem !important;
}

/* Error message elegante */
.error-message {
    background: linear-gradient(135deg, #fee2e2, #fecaca) !important;
    color: #991b1b !important;
    padding: 1rem 1.25rem !important;
    border-radius: 12px !important;
    margin-top: 1rem !important;
    border-left: 4px solid #dc2626 !important;
    font-size: 0.9rem !important;
}

/* Responsivo mobile */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        border-radius: 24px;
    }

    .header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .main-content {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .form-card {
        padding: 1.75rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 0.5rem;
        border-radius: 20px;
    }

    .header h1 {
        font-size: 1.4rem;
    }

    .intro-section h2 {
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.5rem !important;
    }

    .form-card {
        padding: 1.5rem 1.25rem !important;
    }
}

/* Animações suaves */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

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

.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Remove Aurora e Partículas (muito poluído) */
.aurora-overlay,
.particles {
    display: none !important;
}

/* Estilos holográficos removidos (muito exagerado) */
.holographic,
.neon-glow,
.magic-title,
.sparkle-text,
.magic-glow,
.crystal-effect {
    background: none !important;
    text-shadow: none !important;
    animation: none !important;
}
