/**
 * STYLE.CSS - FÉ HOJE v5.0
 * Estilos profissionais para a plataforma - VERSÃO CORRIGIDA
 */

/* ============================================ */
/* RESET E VARIÁVEIS GLOBAIS */
/* ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #1e3932;
    --leaf: #2d5a4c;
    --gold: #c5a059;
    --fire: #ff4500;
    --bg: #f4f7f6;
    --card-bg: #ffffff;
    --text: #2c3e50;
    --text-light: #666;
    --border: #e0e0e0;
    --shadow: 0 20px 40px rgba(0,0,0,0.02);
    --shadow-hover: 0 30px 60px rgba(0,0,0,0.05);
    --vip-gold: #ffd700;
    --vip-gradient: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
    --whatsapp: #25D366;
    --whatsapp-light: rgba(37, 211, 102, 0.1);
    --pray: #0d6efd;
    --pray-light: rgba(13, 110, 253, 0.1);
    --live-red: #ff4444;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
    overflow-x: hidden;
}

/* ============================================ */
/* HEADER PREMIUM */
/* ============================================ */

.header-premium {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-app {
    height: 40px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.streak-badge {
    background: white;
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--fire);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    font-size: 12px;
}

.streak-badge i {
    font-size: 14px;
}

.vip-badge {
    background: var(--vip-gradient);
    color: #1e3932;
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.5);
}

.vip-badge i {
    font-size: 12px;
}

.instagram-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E1306C;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: scale(1.1);
    background: #E1306C;
    color: white;
}

/* ============================================ */
/* MAIN CONTENT */
/* ============================================ */

.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.view-section { 
    display: none; 
    padding-bottom: 20px; 
    animation: fadeIn 0.3s ease; 
}

.view-active { 
    display: block; 
}

@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

/* Cards */
.card-elite {
    background: var(--card-bg);
    border-radius: 40px;
    padding: 30px 25px;
    margin: 20px 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card-elite:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 24px;
    color: var(--gold);
}

.card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    margin: 0;
}

/* Data Badge */
.date-badge {
    text-align: center;
    margin: 10px 0 25px;
}

.date-badge .day {
    font-size: 36px;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.date-badge .month-year {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Saudação */
.saudacao {
    text-align: center;
    margin-bottom: 20px;
    color: var(--forest);
    font-weight: 600;
    font-size: 18px;
}

/* Prayer Text - CORRIGIDO */
.prayer-text {
    font-family: 'Quicksand', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--forest);
    text-align: left;
    margin: 15px 0;
    font-style: italic;
    white-space: normal;
    word-wrap: break-word;
}

/* ============================================ */
/* AUDIO PLAYER */
/* ============================================ */

.player-box {
    background: #f8faf9;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    border: 1px solid var(--border);
}

.btn-play-elite {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(30,57,50,0.2);
    flex-shrink: 0;
}

.btn-play-elite:hover {
    transform: scale(1.05);
    background: var(--leaf);
}

.btn-play-elite.playing {
    animation: pulse 2s infinite;
}

.btn-play-elite.vip {
    background: var(--vip-gradient);
    color: #1e3932;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30,57,50,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(30,57,50,0); }
    100% { box-shadow: 0 0 0 0 rgba(30,57,50,0); }
}

.player-controls {
    flex: 1;
}

.seek-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.seek-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--forest), var(--gold));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 10px;
}

.seek-fill.vip {
    background: var(--vip-gradient);
}

.time-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================ */
/* SHARE BUTTONS */
/* ============================================ */

.share-btn {
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 14px;
    text-decoration: none;
}

.share-btn i {
    font-size: 20px;
}

.share-btn.whatsapp {
    border-color: var(--whatsapp);
    color: var(--whatsapp);
    background: var(--whatsapp-light);
}

.share-btn.whatsapp:hover {
    background: var(--whatsapp);
    color: white;
}

.share-btn.pray {
    border-color: var(--pray);
    color: var(--pray);
    background: var(--pray-light);
}

.share-btn.pray:hover {
    background: var(--pray);
    color: white;
}

/* ============================================ */
/* VIP CALL TO ACTION */
/* ============================================ */

.vip-cta {
    background: linear-gradient(135deg, #1e3932, #2d5a4c);
    border-radius: 30px;
    padding: 25px;
    margin-bottom: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vip-cta-content {
    flex: 1;
}

.vip-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-cta h3 i {
    color: var(--gold);
}

.vip-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 15px;
}

.vip-cta-button {
    background: var(--vip-gradient);
    color: #1e3932;
    border: none;
    border-radius: 40px;
    padding: 12px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.vip-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

.vip-cta-badge {
    background: var(--gold);
    color: #1e3932;
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ============================================ */
/* MODO SONO ACCORDION */
/* ============================================ */

.sono-card {
    background: linear-gradient(135deg, #0a192f, #1a2f3f);
    border-radius: 30px;
    margin-bottom: 25px;
    overflow: hidden;
    color: white;
}

.sono-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sono-header:hover {
    background: rgba(255,255,255,0.05);
}

.sono-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
}

.sono-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.sono-info p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.sono-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: rgba(255,255,255,0.3);
}

.sono-chevron.rotated {
    transform: rotate(90deg);
}

.sono-content {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.sono-content.open {
    max-height: 1000px;
    padding: 0 25px 30px;
    opacity: 1;
}

.sono-item {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.sono-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.sono-play.vip {
    background: var(--vip-gradient);
    color: #1e3932;
}

.sono-item-info {
    flex: 1;
}

.sono-item-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.sono-item-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ============================================ */
/* RÁDIO FÉ HOJE */
/* ============================================ */

.radio-card {
    background: linear-gradient(135deg, #1e3932, #2d5a4c);
    color: white;
}

.radio-card .card-header h2 {
    color: white;
}

.radio-card .card-header {
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 0;
}

.radio-card .card-header:hover {
    background: rgba(255,255,255,0.05);
}

.radio-player {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.radio-play-btn {
    background: var(--gold);
    color: #1e3932;
}

.radio-play-btn.playing {
    animation: pulse-radio 2s infinite;
}

@keyframes pulse-radio {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.radio-seek-fill {
    background: var(--gold);
}

.radio-time-info {
    color: rgba(255,255,255,0.8);
}

.radio-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

#volumeControl {
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    gap: 5px;
}

#volumeControl input[type=range] {
    -webkit-appearance: none;
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    outline: none;
}

#volumeControl input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

/* ============================================ */
/* MURAL DE GRATIDÃO */
/* ============================================ */

.gratidao-item {
    background: #f8faf9;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.gratidao-item.blurred {
    filter: blur(4px);
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.gratidao-item.blurred::after {
    content: '🔒 Faça login para ver mais';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

.gratidao-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.gratidao-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.gratidao-meta {
    flex: 1;
}

.gratidao-nome {
    font-weight: 600;
    color: var(--forest);
    display: block;
}

.gratidao-data {
    font-size: 11px;
    color: var(--text-light);
}

.gratidao-mensagem {
    font-style: italic;
    color: var(--text);
    margin: 0;
    padding-left: 52px;
    line-height: 1.6;
}

.btn-more {
    background: transparent;
    border: 2px dashed var(--border);
    border-radius: 50px;
    padding: 12px;
    width: 100%;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
}

.btn-more:hover {
    border-color: var(--forest);
    color: var(--forest);
}

.btn-more.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-more.loading i {
    animation: spin 1s linear infinite;
}

.gratidao-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.gratidao-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.gratidao-input:focus {
    outline: none;
    border-color: var(--forest);
}

.gratidao-submit {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.gratidao-submit:hover {
    background: var(--leaf);
    transform: scale(1.05);
}

/* ============================================ */
/* PEDIDOS DE ORAÇÃO */
/* ============================================ */

.oracao-form-container {
    margin-bottom: 30px;
    width: 100%;
}

.oracao-textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8faf9;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 15px;
}

.oracao-textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: white;
    box-shadow: 0 5px 20px rgba(30,57,50,0.1);
}

.oracao-item {
    background: white;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.oracao-item.blurred {
    filter: blur(4px);
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.oracao-item.blurred::after {
    content: '🔒 Faça login para ver mais';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
}

.oracao-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.oracao-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.oracao-nome {
    font-weight: 600;
    color: var(--forest);
}

.oracao-data {
    font-size: 11px;
    color: var(--text-light);
}

.oracao-pedido {
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 57px;
}

.oracao-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 57px;
}

.btn-orar {
    background: #f0f7f4;
    color: var(--forest);
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-orar:hover {
    background: var(--forest);
    color: white;
}

.btn-orar.active {
    background: var(--forest);
    color: white;
}

.apoios-count {
    color: var(--text-light);
    font-size: 13px;
}

.apoios-count i {
    color: #ff6b6b;
    margin-right: 5px;
}

/* ============================================ */
/* BÍBLIA - VERSÃO CORRIGIDA */
/* ============================================ */

.bible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.book-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 12px 5px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 13px;
    width: 100%;
}

.book-btn:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-2px);
}

.book-btn.lido {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.chapter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
    gap: 8px;
    margin: 20px 0;
}

.bible-chapter {
    background: white;
    border-radius: 30px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    width: 100%;
}

.chapter-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    font-family: 'Outfit', sans-serif;
}

.verses-container {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.verse-item {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #f8faf9;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.verse-item:hover {
    background: #f0f7f4;
    transform: translateX(5px);
}

.verse-number {
    display: inline-block;
    min-width: 32px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(197,160,89,0.1);
    padding: 2px 6px;
    border-radius: 6px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.verse-text {
    display: inline;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    flex: 1;
}

.chapter-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.nav-chapter-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.nav-chapter-btn:hover {
    background: var(--forest);
    color: white;
}

.back-to-books {
    background: var(--forest);
    color: white;
}

/* ============================================ */
/* PERFIL */
/* ============================================ */

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-edit-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    cursor: pointer;
}

.vip-profile-badge {
    display: inline-block;
    background: var(--vip-gradient);
    color: #1e3932;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    margin-top: 10px;
    font-size: 14px;
}

.medalhas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.medal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    transition: all 0.3s ease;
    cursor: help;
    position: relative;
}

.medal.active {
    background: #fff;
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(197,160,89,0.3);
    border: 2px solid var(--gold);
}

.medal:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

.progresso-leitura {
    background: #f8faf9;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.progresso-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.progresso-valor {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.progresso-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.vip-extra-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.vip-extra-links h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.vip-links-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vip-link {
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 25px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.vip-link:hover {
    background: var(--gold);
    color: #1e3932;
    transform: translateY(-2px);
}

/* ============================================ */
/* FEATURE BLOQUEADA */
/* ============================================ */

.locked-feature {
    position: relative;
    filter: blur(1px);
    pointer-events: none;
    opacity: 0.7;
    cursor: default;
}

.locked-feature::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 10;
    opacity: 1;
    pointer-events: none;
}

[onclick*="openLoginModal"] {
    cursor: pointer !important;
}

/* ============================================ */
/* MODAIS */
/* ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 50px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    animation: modalSlideUp 0.4s ease;
    position: relative;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ============================================ */
/* QR CODE */
/* ============================================ */

.qr-code-container {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    margin: 20px 0;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.qr-code i {
    color: var(--forest);
}

.pix-info {
    background: #f8faf9;
    padding: 15px;
    border-radius: 15px;
    margin: 15px 0;
    font-size: 14px;
}

.pix-copy {
    background: var(--forest);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ============================================ */
/* PROMESSA FLUTUANTE */
/* ============================================ */

.promessa-float {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(197,160,89,0.4);
    cursor: pointer;
    z-index: 1500;
    border: 3px solid white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ============================================ */
/* LOADING STATES */
/* ============================================ */

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.loading i {
    animation: spin 1s linear infinite;
    color: var(--gold);
    margin-bottom: 15px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================ */
/* BOTTOM NAVIGATION */
/* ============================================ */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0 25px;
    border-top: 1px solid var(--border);
    z-index: 2000;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.03);
}

.nav-item {
    text-align: center;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-item i {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.nav-item.active {
    color: var(--forest);
}

/* ============================================ */
/* RESPONSIVIDADE */
/* ============================================ */

@media (max-width: 768px) {
    .bible-chapter {
        padding: 15px;
    }
    
    .chapter-title {
        font-size: 18px;
    }
    
    .verse-number {
        font-size: 12px;
        min-width: 28px;
    }
    
    .verse-text {
        font-size: 13px;
    }
    
    .chapter-navigation {
        flex-direction: column;
    }
    
    .nav-chapter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .oracao-pedido {
        padding-left: 0;
    }
    
    .oracao-actions {
        padding-left: 0;
        flex-direction: column;
        gap: 10px;
    }
    
    .vip-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .vip-links-container {
        flex-direction: column;
    }
    
    .vip-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .card-elite {
        padding: 20px;
    }
    
    .prayer-text {
        font-size: 1rem;
    }
    
    .player-box {
        flex-direction: column;
        text-align: center;
    }
    
    .verse-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .verse-number {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .bible-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chapter-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gratidao-mensagem {
        padding-left: 0;
    }
    
    .oracao-actions {
        padding-left: 0;
    }
}
/* ============================================ */
/* BÍBLIA - ESTILOS CORRIGIDOS */
/* ============================================ */

.bible-text-display {
    background: white;
    border-radius: 25px;
    padding: 25px;
    text-align: left;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text);
}

.bible-text-display p {
    margin-bottom: 12px;
}

.verse-num {
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    min-width: 35px;
}

.bible-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.chapter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.book-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 12px 5px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--forest);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.book-btn:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .bible-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chapter-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* ============================================ */
/* ESTILOS DO PERFIL */
/* ============================================ */

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #f0f0f0;
}

.btn-edit-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit-photo:hover {
    transform: scale(1.1);
    background: var(--forest);
}

.profile-header h3 {
    color: var(--forest);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.vip-profile-badge {
    display: inline-block;
    background: var(--vip-gradient);
    color: #1e3932;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

.progresso-leitura {
    background: #f8faf9;
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}

.progresso-leitura h4 {
    color: var(--forest);
    margin-bottom: 15px;
    font-size: 16px;
}

.progresso-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.progresso-valor {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.progresso-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.medalhas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.medal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    transition: all 0.3s ease;
    cursor: help;
    position: relative;
}

.medal.active {
    background: #fff;
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(197,160,89,0.3);
    border: 2px solid var(--gold);
}

.medal:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

#formPerfil {
    margin: 20px 0;
}

#formPerfil > div {
    margin-bottom: 20px;
}

#formPerfil label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--forest);
    font-size: 13px;
}

#formPerfil input,
#formPerfil select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

#formPerfil input:focus,
#formPerfil select:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

#formPerfil .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

#formPerfil button {
    width: 100%;
    padding: 14px;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#formPerfil button:hover {
    background: var(--leaf);
    transform: translateY(-2px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats > div > div:first-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--forest);
}

.stats > div > div:last-child {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.vip-extra-links {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.vip-extra-links h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.vip-links-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vip-link {
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 25px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.vip-link:hover {
    background: var(--gold);
    color: #1e3932;
    transform: translateY(-2px);
}

.logout-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.logout-btn:hover {
    background: #dc3545;
    color: white;
}

.btn-register {
    display: inline-block;
    background: linear-gradient(135deg, #1e3932, #2d5a4c);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(30,57,50,0.2);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30,57,50,0.3);
}

.btn-login-link {
    display: inline-block;
    background: transparent;
    color: var(--forest);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--forest);
}

.btn-login-link:hover {
    background: var(--forest);
    color: white;
}

@media (max-width: 600px) {
    #formPerfil .row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .vip-links-container {
        flex-direction: column;
    }
    
    .vip-link {
        width: 100%;
        justify-content: center;
    }
    
    .btn-register,
    .btn-login-link {
        width: 100%;
        text-align: center;
    }
}
