/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de cores */
:root {
    --primary-green: #10B981;
    --light-green: #D1FAE5;
    --dark-green: #059669;
    --primary-red: #DC2626;
    --light-red: #FEE2E2;
    --dark-red: #B91C1C;
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --gray: #6B7280;
    --dark-gray: #374151;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Estilo base */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container principal */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        padding-bottom: 85px;
    }

/* Layout do Dashboard */
.dashboard-layout {
    display: flex;
    gap: 25px;
            min-height: calc(100vh - 85px);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Menu lateral */
.sidebar {
    width: 300px;
    background: var(--white);
    border-radius: 25px;
    padding: 30px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    z-index: 10;
    flex-shrink: 0;
}

.sidebar-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.sidebar-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    border: 4px solid var(--white);
    position: relative;
}

.sidebar-avatar::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    z-index: -1;
    opacity: 0.2;
}

.sidebar-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.sidebar-title {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sidebar-nav {
    list-style: none;
    margin-top: 10px;
    padding-left: 0;
}

.sidebar-nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 6px;
    list-style: none;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
}

.sidebar-nav a:hover::before {
    left: 100%;
}

.sidebar-nav a:hover {
    background: linear-gradient(135deg, var(--light-green), rgba(209, 250, 229, 0.7));
    color: var(--primary-green);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.sidebar-nav a:active {
    transform: translateX(6px) scale(0.98);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    transform: translateX(12px) scale(1.05);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4), 0 0 30px rgba(16, 185, 129, 0.3);
    border-color: var(--primary-green);
    position: relative;
}

.sidebar-nav a.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.02);
    }
}

.sidebar-nav a.active .icon {
    transform: scale(1.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sidebar-nav .icon {
    font-size: 22px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar-nav a:hover .icon {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.sidebar-nav a.active .icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
}

/* Efeito especial para o botão SOS */
.sidebar-nav a[href="sos.php"] {
    position: relative;
}

.sidebar-nav a[href="sos.php"]:hover {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.sidebar-nav a[href="sos.php"] .icon {
    background: rgba(255, 68, 68, 0.15);
    animation: pulse-sos 2s infinite;
}

@keyframes pulse-sos {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }
}

.sidebar-nav a[href="sos.php"]:hover .icon {
    background: rgba(255, 255, 255, 0.3);
    animation: none;
    transform: scale(1.1) rotate(-5deg);
}

/* Scroll suave na sidebar */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 185, 129, 0.3) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.5);
}

/* Efeito de ripple nos botões */
.sidebar-nav a.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: 1;
}

.sidebar-nav a:active.ripple-effect::after {
    width: 200px;
    height: 200px;
}

/* Conteúdo principal */
.main-content {
    flex: 1;
    min-height: 500px;
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    padding-bottom: 85px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

/* Seções do dashboard */
.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
}

/* Cards de métricas */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

.metric-card {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
}

.metric-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-green);
    display: block;
    margin-bottom: 8px;
}

.metric-label {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

.metric-change {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.metric-change.positive {
    background: #D1FAE5;
    color: #047857;
}

.metric-change.negative {
    background: #FEE2E2;
    color: #DC2626;
}

/* Gráficos */
.chart-container {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.chart-container:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--dark-gray);
}

.chart-period {
    display: flex;
    gap: 10px;
}

.chart-period button {
    padding: 6px 12px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-period button.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.chart-wrapper {
    position: relative;
    height: 300px;
    margin: 20px 0;
}

/* Container da visão geral */
.overview-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin: 30px 0;
    align-items: start;
}

/* Container do devocional */
.devotional-container {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.devotional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.devotional-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.devotional-date {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.devotional-content {
    line-height: 1.7;
}

.devotional-verse {
    background: linear-gradient(135deg, var(--light-green), rgba(254, 226, 226, 0.3));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-green);
}

.devotional-verse p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 0 10px 0;
    font-style: italic;
}

.devotional-verse cite {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

.devotional-reflection {
    margin-bottom: 20px;
}

.devotional-reflection h4 {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.devotional-reflection p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.devotional-action {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.devotional-action .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Seção inferior da visão geral */
.bottom-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.progress-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.progress-header h3 {
    margin: 0;
    color: var(--dark-gray);
    font-size: 18px;
}

.next-title {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

.progress-numbers {
    font-size: 12px;
    color: var(--gray);
    text-align: right;
}

.quick-stats {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    height: fit-content;
}

.quick-stats h3 {
    margin: 0 0 20px 0;
    color: var(--dark-gray);
    font-size: 18px;
}

.quick-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

.stat-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
    min-width: 40px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* Conquistas - Layout Trilha Espiritual */
.conquests-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Linha da trilha central */
.conquests-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        var(--primary-green) 0%,
        var(--primary-green) 30%,
        #e0e0e0 30%,
        #e0e0e0 100%
    );
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* Animação da linha de progresso */
@keyframes progressLine {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 20px;
    }
}

.conquests-grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 30%;
    width: 4px;
    background: linear-gradient(
        45deg,
        var(--primary-green) 25%,
        var(--dark-green) 25%,
        var(--dark-green) 50%,
        var(--primary-green) 50%,
        var(--primary-green) 75%,
        var(--dark-green) 75%
    );
    background-size: 20px 20px;
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 2;
    animation: progressLine 2s linear infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Alinhamento da seção conquistas com o header */
@media (min-width: 769px) {
    #conquests {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        overflow: hidden;
    }

    #conquests h2 {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        font-size: 32px;
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 50px;
        position: relative;
    }

    #conquests h2::after {
        content: '✨';
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        animation: sparkle 2s ease-in-out infinite;
    }

    /* Indicador de progresso da trilha */
    #conquests::before {
        content: '';
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 40px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        border-radius: 20px;
        border: 2px solid rgba(16, 185, 129, 0.2);
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-green);
        backdrop-filter: blur(5px);
    }

    #conquests .conquests-grid {
        max-width: none;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* Efeito de partículas mágicas */
    #conquests::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 40% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
        animation: floatParticles 8s ease-in-out infinite;
    }

    @keyframes floatParticles {
        0%, 100% {
            transform: translateY(0px);
            opacity: 0.7;
        }
        50% {
            transform: translateY(-20px);
            opacity: 1;
        }
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
}

.conquest-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid rgba(16, 185, 129, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 30px 0;
    z-index: 3;
    backdrop-filter: blur(10px);
}

/* Nó da trilha */
.conquest-card::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3),
                0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 4;
    animation: pulseNode 2s ease-in-out infinite;
}

@keyframes pulseNode {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3),
                    0 4px 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2),
                    0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

.conquest-card.unlocked {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.8), var(--white));
    border: 3px solid var(--primary-green);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
}

.conquest-card.unlocked::before {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3),
                0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulseNodeUnlocked 2s ease-in-out infinite;
}

@keyframes pulseNodeUnlocked {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3),
                    0 4px 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2),
                    0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

.conquest-card.locked {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.1), var(--white));
    border: 3px solid rgba(156, 163, 175, 0.3);
    transform: scale(0.95);
}

.conquest-card.locked::before {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
    box-shadow: 0 0 0 4px rgba(156, 163, 175, 0.2),
                0 4px 15px rgba(156, 163, 175, 0.3);
    animation: none;
}

.conquest-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-green);
}

.conquest-card.locked:hover {
    transform: translateY(-5px) scale(0.98);
    box-shadow: 0 10px 30px rgba(156, 163, 175, 0.2);
    border-color: rgba(156, 163, 175, 0.4);
}

/* Brilho especial para conquistas desbloqueadas */
.conquest-card.unlocked::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.conquest-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.conquest-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border: 4px solid var(--white);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.conquest-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.conquest-card:hover .conquest-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.conquest-card:hover .conquest-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.conquest-icon.locked {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
    box-shadow: 0 8px 25px rgba(156, 163, 175, 0.4);
}

.conquest-card.locked:hover .conquest-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(156, 163, 175, 0.5);
}

.conquest-info {
    flex: 1;
    text-align: center;
}

.conquest-info h4 {
    margin: 0 0 12px 0;
    color: var(--dark-gray);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.conquest-card.unlocked .conquest-info h4 {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conquest-card.locked .conquest-info h4 {
    color: #6B7280;
}

.conquest-info p {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.conquest-card.locked .conquest-info p {
    color: #9CA3AF;
}

.conquest-progress {
    margin-top: 20px;
}

.conquest-requirements {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.4;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
    padding: 16px 20px;
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    text-align: center;
    margin-top: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.conquest-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    border-radius: 16px 16px 0 0;
}

.conquest-card.locked .conquest-requirements {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.08), rgba(156, 163, 175, 0.04));
    border: 2px solid rgba(156, 163, 175, 0.15);
    color: #6B7280;
}

.conquest-card.locked .conquest-requirements::before {
    background: linear-gradient(90deg, #9CA3AF, #6B7280);
}

.conquest-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    border: 3px solid var(--white);
    z-index: 5;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.conquest-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
    }
}

/* Responsividade da Trilha de Conquistas */
@media (min-width: 769px) and (max-width: 1200px) {
    .conquests-grid {
        max-width: 700px;
        padding: 30px 20px;
    }
    
    .conquest-card {
        max-width: 450px;
        padding: 25px;
        margin: 25px 0;
    }
    
    .conquest-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .conquest-info h4 {
        font-size: 20px;
    }
    
    .conquest-info p {
        font-size: 14px;
    }
    
    .conquest-requirements {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .conquest-badge {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .conquests-grid {
        max-width: 600px;
        padding: 20px;
    }
    
    .conquest-card {
        max-width: 400px;
        padding: 20px;
        margin: 20px 0;
    }
    
    .conquest-header {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .conquest-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .conquest-info h4 {
        font-size: 18px;
    }
    
    .conquest-info p {
        font-size: 14px;
    }
    
    .conquest-requirements {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* Responsividade das Conquistas para Mobile */
@media (max-width: 768px) {
    .conquests-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 20px;
        position: static;
    }
    
    .conquests-grid::before,
    .conquests-grid::after {
        display: none;
    }
    
    .conquest-card {
        max-width: 100%;
        margin: 0;
        padding: 20px;
        border-radius: 16px;
    }
    
    .conquest-card::before {
        display: none;
    }
    
    .conquest-header {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .conquest-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .conquest-info {
        text-align: left;
    }
    
    .conquest-info h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .conquest-info p {
        font-size: 14px;
    }
    
    .conquest-requirements {
        font-size: 12px;
        padding: 12px 16px;
        margin-top: 12px;
    }
    
    .conquest-badge {
        width: 32px;
        height: 32px;
        font-size: 16px;
        top: 16px;
        right: 16px;
    }
}

/* Responsividade do dashboard */
@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        order: 2;
        padding: 20px 15px;
        border-radius: 20px 20px 0 0;
        margin-top: 20px;
    }
    
    .sidebar-header {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .sidebar-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0;
    }
    
    .sidebar-name {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .sidebar-title {
        font-size: 11px;
        padding: 2px 8px;
    }
    
    .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .sidebar-nav li {
        margin-bottom: 0;
        flex: 1;
        min-width: 120px;
    }
    
    .sidebar-nav a {
        padding: 12px 8px;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
        border-radius: 12px;
    }
    
    .sidebar-nav a:hover,
    .sidebar-nav a.active {
        transform: translateY(-3px) scale(1.02);
    }
    
    .sidebar-nav .icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
        margin: 0 auto;
    }
    
    .main-content {
        order: 1;
        padding-bottom: 85px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chart-wrapper {
        height: 250px;
    }
    
    .conquests-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 20px;
        position: static;
    }
    
    .conquests-grid::before,
    .conquests-grid::after {
        display: none;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    
    .chart-container {
        margin-bottom: 30px;
        padding: 18px;
    }
    
    .devotional-container {
        padding: 20px;
    }
    
    .devotional-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .devotional-title {
        font-size: 20px;
    }
    
    .devotional-verse p {
        font-size: 16px;
    }
    
    .bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .progress-card,
    .quick-stats {
        padding: 20px;
    }
    
    .quick-stats-grid {
        gap: 10px;
    }
    
    .quick-stat {
        padding: 12px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 20px;
    }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    border-radius: 0 0 20px 20px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.next-objective {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.objective-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.objective-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.objective-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
}

.objective-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-progress {
    width: 60px;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.objective-percentage {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    min-width: 35px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-green);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 15px;
    list-style: none;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-icon {
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
}

.card-subtitle {
    color: var(--gray);
    font-size: 16px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--gray);
    border: 2px solid var(--gray);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--white);
}

.btn-danger {
    background: var(--primary-red);
    color: var(--white);
    font-size: 18px;
    padding: 15px 40px;
}

.btn-danger:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
    margin-top: 5px;
}

/* Barra de progresso */
.progress-bar {
    background: var(--light-gray);
    border-radius: 25px;
    height: 20px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    height: 100%;
    border-radius: 25px;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    margin-top: 5px;
    color: var(--gray);
    font-size: 14px;
}

/* Títulos/Badges */
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--light-green);
    color: var(--primary-green);
}

.badge-success {
    background: #D1FAE5;
    color: #047857;
}

.badge-warning {
    background: #FEF3C7;
    color: #B45309;
}

/* Devocional */
.devocional {
    background: linear-gradient(135deg, var(--light-green), var(--white));
    border-left: 5px solid var(--primary-green);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.devocional-versiculo {
    font-style: italic;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.4;
}

.devocional-referencia {
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.devocional-reflexao {
    color: var(--gray);
    line-height: 1.6;
}

/* Tabela de Estatísticas */
.stats-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    margin-top: 30px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.stats-table table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.stats-table th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-table td {
    padding: 25px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    border: none;
    background: var(--white);
    transition: all 0.3s ease;
}

.stats-table td:not(:last-child) {
    border-right: 1px solid var(--light-gray);
}

.stats-table tbody tr:hover td {
    background: var(--light-green);
    transform: scale(1.02);
}

/* Devocional Horizontal */
.devotional-horizontal {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-top: 30px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    overflow: hidden;
}

.devotional-horizontal .devotional-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    border-bottom: none;
}

.devotional-horizontal .devotional-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.devotional-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.devotional-horizontal .devotional-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.devotional-content-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.devotional-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.devotional-horizontal .devotional-verse {
    background: var(--light-green);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 0;
    border-left: 4px solid var(--primary-green);
}

.devotional-horizontal .devotional-verse p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 0 15px 0;
    font-style: italic;
    line-height: 1.6;
}

.devotional-horizontal .devotional-verse cite {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

.devotional-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.devotional-horizontal .devotional-reflection {
    margin-bottom: 20px;
}

.devotional-horizontal .devotional-reflection h4 {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.devotional-horizontal .devotional-reflection p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.devotional-horizontal .devotional-action {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.devotional-horizontal .devotional-action .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* Botões vermelhos do header */
.nav-btn-red {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
}

.nav-btn-red:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.nav-btn-red:active {
    transform: translateY(0);
}

/* Responsividade para tabela e devocional */
@media (max-width: 1200px) {
    .devotional-content-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .devotional-left {
        order: 2;
    }
    
    .devotional-right {
        order: 1;
    }
}

@media (max-width: 768px) {
    /* Ocultar seção Status Atual no mobile */
    .status-atual-section {
        display: none !important;
    }
    
    /* Ocultar tabela desktop no mobile */
    .profile-stats-section .stats-table {
        display: none;
    }
    
    /* Mostrar versão mobile das estatísticas */
    .mobile-profile-stats {
        display: block !important;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin-top: 30px;
        border: 1px solid rgba(16, 185, 129, 0.1);
        overflow: hidden;
    }
    
    .mobile-profile-stats-header {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 20px;
        text-align: center;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-profile-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: #e5e7eb;
    }
    
    .mobile-profile-stat-card {
        background: white;
        padding: 18px 16px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-profile-stat-card:hover {
        background: #f8fafc;
        transform: scale(1.02);
    }
    
    .mobile-profile-stat-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #10b981;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-profile-stat-card:hover::before {
        opacity: 1;
    }
    
    .mobile-profile-stat-icon {
        font-size: 20px;
        margin-bottom: 8px;
        display: block;
    }
    
    .mobile-profile-stat-value {
        font-size: 22px;
        font-weight: 700;
        color: #10b981;
        margin-bottom: 4px;
        line-height: 1;
    }
    
    .mobile-profile-stat-label {
        font-size: 11px;
        color: #64748b;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .mobile-profile-stat-card:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }
    
    /* Último card ocupa toda a largura */
    .mobile-profile-stat-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        border-right: none;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 480px) {
    .mobile-profile-stats-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .mobile-profile-stat-card {
        padding: 20px 16px;
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .mobile-profile-stat-card:last-child {
        border-bottom: none;
    }
    
    .mobile-profile-stat-value {
        font-size: 26px;
    }
    
    .mobile-profile-stat-label {
        font-size: 12px;
    }
    
    .mobile-profile-stats-header {
        padding: 18px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .mobile-profile-stat-card {
        padding: 18px 14px;
    }
    
    .mobile-profile-stat-value {
        font-size: 24px;
    }
    
    .mobile-profile-stat-icon {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .devotional-horizontal .devotional-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .devotional-horizontal .devotional-header h3 {
        font-size: 16px;
    }
    
    .devotional-meta {
        gap: 10px;
    }
    
    .devotional-content-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .devotional-horizontal .devotional-verse {
        padding: 20px;
    }
    
    .devotional-horizontal .devotional-verse p {
        font-size: 16px;
    }
    
    .nav-btn-red {
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* ====================================================
   FRASE DO DIA - NOVA SEÇÃO
   ==================================================== */

/* Frase do Dia - Desktop */
.daily-quote-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.daily-quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
}

.daily-quote-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.daily-quote-date {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.daily-quote-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.daily-quote-text {
    flex: 1;
    background: #f0f4f8;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #10b981;
    position: relative;
}

.daily-quote-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: #10b981;
    opacity: 0.3;
    font-family: serif;
}

.daily-quote-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    margin: 0 0 15px 0;
    font-style: italic;
}

.daily-quote-text cite {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
    font-style: normal;
}

.devotional-status {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.devotional-status-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.devotional-title {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 500;
}

.devotional-points {
    margin-bottom: 20px;
}

.points-earned {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 8px;
    background: #f0fdf4;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
}

.points-available {
    color: #d97706;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 8px;
    background: #fffbeb;
    border-radius: 6px;
    border: 1px solid #fed7aa;
}

.devotional-action {
    text-align: center;
}

.devotional-action .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
}

.devotional-action .btn-success {
    background: #059669;
    color: white;
    border: none;
}

.devotional-action .btn-success:hover {
    background: #047857;
    transform: translateY(-2px);
}

.devotional-action .btn-primary {
    background: #10b981;
    color: white;
    border: none;
}

.devotional-action .btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Frase do Dia - Mobile */
@media (max-width: 768px) {
    .mobile-daily-quote {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
        margin-bottom: 20px;
        border: 1px solid rgba(16, 185, 129, 0.1);
        overflow: hidden;
    }

    .mobile-daily-quote-header {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-daily-quote-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .mobile-daily-quote-meta {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-daily-quote-date {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    .mobile-daily-quote-content {
        padding: 20px;
    }

    .mobile-daily-quote-text {
        background: #f0f4f8;
        padding: 15px;
        border-radius: 10px;
        border-left: 3px solid #10b981;
        margin-bottom: 20px;
        position: relative;
    }

    .mobile-daily-quote-text::before {
        content: '"';
        position: absolute;
        top: -5px;
        left: 10px;
        font-size: 2.5rem;
        color: #10b981;
        opacity: 0.3;
        font-family: serif;
    }

    .mobile-daily-quote-text p {
        font-size: 14px;
        line-height: 1.5;
        color: #2d3748;
        margin: 0 0 10px 0;
        font-style: italic;
    }

    .mobile-daily-quote-text cite {
        font-size: 12px;
        color: #10b981;
        font-weight: 600;
        font-style: normal;
    }

    .mobile-devotional-status {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
    }

    .mobile-devotional-status-info h4 {
        font-size: 14px;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-devotional-title {
        font-size: 13px;
        color: #4a5568;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .mobile-devotional-points {
        margin-bottom: 15px;
    }

    .mobile-devotional-action {
        text-align: center;
    }

    .mobile-btn-success {
        background: #059669;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        min-width: 120px;
        transition: all 0.3s ease;
    }

    .mobile-btn-success:hover {
        background: #047857;
        transform: translateY(-1px);
    }

    .daily-quote-content {
        flex-direction: column;
        gap: 20px;
    }

    .daily-quote-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .daily-quote-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .daily-quote-header h3 {
        font-size: 1.2rem;
    }

    .daily-quote-text {
        margin-bottom: 20px;
        padding: 20px;
    }

    .daily-quote-text p {
        font-size: 1rem;
    }

    .devotional-status {
        padding: 20px;
    }

    .devotional-action .btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Estilos SOS */
.sos-main-card {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.sos-header {
    margin-bottom: 30px;
}

.sos-header h2 {
    color: var(--primary-green);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sos-header p {
    color: var(--gray);
    font-size: 18px;
    margin: 0;
}

.sos-verse {
    background: linear-gradient(135deg, var(--light-green), rgba(220, 252, 231, 0.6));
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-green);
}

.sos-verse p {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 0 15px 0;
    font-style: italic;
    line-height: 1.6;
}

.sos-verse cite {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

.sos-action {
    margin: 40px 0;
}

.sos-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sos-form {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.sos-help-btn, .sos-fall-btn {
    width: 100%;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sos-help-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.sos-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, var(--dark-red), #7f1d1d);
}

.sos-fall-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.sos-fall-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.sos-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.sos-footer p {
    color: var(--gray);
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.5;
    text-align: left;
}

.sos-footer p strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.sos-stats-section {
    margin-bottom: 30px;
}

.sos-stats-section h3 {
    color: var(--dark-gray);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.sos-reminder {
    background: var(--light-red);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-red);
}

.sos-reminder p {
    color: var(--dark-gray);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Dicas de Prevenção - Design Minimalista */
.prevention-section {
    background: #fafafa;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    animation: fadeInUp 0.6s ease-out;
}

.prevention-header {
    text-align: center;
    margin-bottom: 28px;
}

.prevention-header h3 {
    color: var(--dark-gray);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.prevention-header p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.prevention-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.prevention-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.prevention-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
    transform: translateY(-1px);
}

.prevention-card:hover::before {
    transform: scaleX(1);
}

.prevention-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.prevention-content {
    flex: 1;
}

.prevention-content h4 {
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 0.2px;
}

.prevention-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.tip-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    margin-top: 6px;
    transition: all 0.2s ease;
}

.prevention-card:hover .tip-dot {
    background: #34d399;
    transform: scale(1.5);
}

/* Estilo adicional para mobile das dicas de prevenção */
@media (max-width: 480px) {
    .prevention-section {
        padding: 16px;
        border-radius: 12px;
    }
    
    .prevention-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }
    
    .prevention-icon {
        font-size: 32px;
        align-self: center;
    }
    
    .prevention-content {
        text-align: left;
    }
    
    .prevention-content h4 {
        text-align: center;
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .tip-item {
        font-size: 13px;
        text-align: left;
    }
}

/* Trilha do Livramento */
.liberation-trail {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.trail-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.trail-header h2 {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trail-header p {
    color: var(--gray);
    font-size: 16px;
    margin: 0;
}

.trail-step {
    background: var(--white);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trail-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
}

.step-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.step-content {
    padding: 25px;
}

.scripture-verse {
    background: linear-gradient(135deg, var(--light-green), rgba(220, 252, 231, 0.6));
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary-green);
}

.scripture-verse p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 0 15px 0;
    font-style: italic;
    line-height: 1.6;
}

.scripture-verse cite {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

.step-content.reflection {
    background: var(--light-green);
}

.step-content.reflection ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.step-content.reflection li {
    color: var(--dark-gray);
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.step-content.reflection li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 16px;
}

.action-suggestions {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.suggestion-item {
    background: var(--light-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.suggestion-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary-green);
    transform: translateX(10px);
}

.step-content.prayer {
    background: linear-gradient(135deg, var(--light-green), rgba(255, 255, 255, 0.8));
}

.prayer-text {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.prayer-text p {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.trail-completion {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.completion-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.completion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.completion-note {
    color: var(--gray);
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* Responsividade SOS */
@media (max-width: 768px) {
    .sos-main-card {
        padding: 25px;
    }
    
    .sos-header h2 {
        font-size: 24px;
    }
    
    .sos-header p {
        font-size: 16px;
    }
    
    .sos-verse {
        padding: 20px;
    }
    
    .sos-verse p {
        font-size: 16px;
    }
    
    .sos-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .sos-form {
        min-width: 250px;
        max-width: 100%;
    }
    
    .sos-help-btn, .sos-fall-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .prevention-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .prevention-header {
        margin-bottom: 20px;
    }
    
    .prevention-header h3 {
        font-size: 18px;
    }
    
    .prevention-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .prevention-card {
        padding: 16px;
        gap: 12px;
    }
    
    .prevention-icon {
        font-size: 24px;
    }
    
    .prevention-content h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .tip-item {
        font-size: 13px;
    }
    
    .liberation-trail {
        padding: 20px;
    }
    
    .trail-header h2 {
        font-size: 24px;
    }
    
    .step-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .step-header h3 {
        font-size: 16px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .scripture-verse {
        padding: 20px;
    }
    
    .scripture-verse p {
        font-size: 16px;
    }
    
    .completion-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Estilos do Perfil */
.profile-header {
    background: linear-gradient(135deg, var(--white), var(--light-green));
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border: 4px solid var(--white);
    position: relative;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    z-index: -1;
    opacity: 0.3;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 10px 0;
}

.profile-title {
    margin-bottom: 20px;
}

.title-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.profile-stats {
    display: flex;
    gap: 30px;
}

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

.stat-item .stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.details-section {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.details-section h3 {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.info-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

.info-value {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 14px;
}

.title-highlight {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}

.profile-stats-section {
    margin-bottom: 30px;
}

.profile-stats-section h3 {
    color: var(--dark-gray);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.achievements-section {
    margin-bottom: 30px;
}

.achievements-section h3 {
    color: var(--dark-gray);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.stats-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green)) !important;
    color: var(--white) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 20px !important;
    text-align: center !important;
    border-radius: 20px 20px 0 0 !important;
    border: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.empty-achievements-cell,
.empty-history-cell {
    padding: 0 !important;
    border: none !important;
}

.achievements-cell {
    padding: 20px !important;
    border: none !important;
}

.achievements-cell .achievements-grid {
    margin: 0;
    gap: 15px;
}

.empty-achievements,
.empty-history {
    background: var(--light-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px dashed rgba(16, 185, 129, 0.3);
}

.empty-achievements-cell .empty-achievements,
.empty-history-cell .empty-history {
    border-radius: 0 0 20px 20px;
    border: none;
    margin: 0;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-achievements h4,
.empty-history h4 {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-achievements p,
.empty-history p {
    color: var(--gray);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.achievement-icon {
    font-size: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.1));
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.achievement-description {
    color: var(--gray);
    font-size: 14px;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.achievement-date {
    font-size: 12px;
    color: var(--gray);
}

.achievement-date span {
    display: block;
    margin-bottom: 2px;
}

.achievement-date strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.achievement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.history-section {
    margin-bottom: 30px;
}

.history-table-container {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.history-table-container .stats-table table tbody tr.completed {
    background: rgba(16, 185, 129, 0.05);
}

.history-table-container .stats-table table tbody tr.pending {
    background: rgba(249, 115, 22, 0.05);
}

.status-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
}

.status-icon.completed {
    background: #10B981;
    color: var(--white);
}

.status-icon.pending {
    background: #F59E0B;
    color: var(--white);
}

.points-cell {
    font-weight: 600;
    color: var(--primary-green);
}

/* Responsividade do Perfil */
@media (max-width: 1200px) {
    .profile-details {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* Melhorias gerais para mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    .stats-table {
        box-shadow: 0 2px 15px rgba(16, 185, 129, 0.1);
    }
    
    .profile-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-btn-red {
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .profile-name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .profile-stats {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-item .stat-value {
        font-size: 20px;
    }
    
    .stat-item .stat-label {
        font-size: 12px;
    }
    
    .details-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .details-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .info-row {
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-label {
        font-size: 13px;
        color: var(--primary-green);
        font-weight: 600;
    }
    
    .info-value {
        font-size: 13px;
        font-weight: 500;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .achievement-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .achievement-title {
        font-size: 16px;
    }
    
    .achievement-description {
        font-size: 13px;
    }
    
    .achievement-badge {
        position: static;
        margin-top: 10px;
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .history-table-container {
        max-height: 250px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .history-table-container .stats-table {
        min-width: 100%;
    }
    
    .stats-header {
        font-size: 16px !important;
        padding: 15px !important;
    }
    
    .stats-table table {
        font-size: 14px;
    }
    
    .stats-table th {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .stats-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .empty-achievements,
    .empty-history {
        padding: 25px 15px;
    }
    
    .empty-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .empty-achievements h4,
    .empty-history h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .empty-achievements p,
    .empty-history p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Melhorias para toque */
    .stats-table table {
        touch-action: pan-y;
    }
    
    .achievement-card {
        touch-action: manipulation;
    }
    
    .nav-btn-red {
        touch-action: manipulation;
        min-height: 44px;
    }
    
    /* Botão SOS Mobile */
    .sos-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 14px;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 10px;
        gap: 10px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .nav-btn-red {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .profile-header {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .avatar-circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .title-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .profile-stats {
        gap: 10px;
    }
    
    .stat-item .stat-value {
        font-size: 18px;
    }
    
    .stat-item .stat-label {
        font-size: 11px;
    }
    
    .details-section {
        padding: 12px;
    }
    
    .details-section h3 {
        font-size: 15px;
    }
    
    .stats-header {
        font-size: 14px !important;
        padding: 12px !important;
    }
    
    .stats-table table {
        font-size: 12px;
    }
    
    .stats-table th {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .stats-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .achievement-card {
        padding: 12px;
    }
    
    .achievement-icon {
        font-size: 28px;
    }
    
    .achievement-title {
        font-size: 15px;
    }
    
    .achievement-description {
        font-size: 12px;
    }
    
    .status-icon {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 10px;
    }
    
    .points-cell {
        font-size: 12px;
    }
    
    .badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .empty-achievements,
    .empty-history {
        padding: 20px 10px;
    }
    
    .empty-icon {
        font-size: 40px;
    }
    
    .empty-achievements h4,
    .empty-history h4 {
        font-size: 16px;
    }
    
    .empty-achievements p,
    .empty-history p {
        font-size: 13px;
    }
    
    .sos-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 8px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header-content {
        padding: 0 8px;
        gap: 8px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-btn-red {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .profile-header {
        padding: 12px;
    }
    
    .avatar-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .profile-stats {
        gap: 8px;
    }
    
    .stat-item .stat-value {
        font-size: 16px;
    }
    
    .stat-item .stat-label {
        font-size: 10px;
    }
    
    .details-section {
        padding: 10px;
    }
    
    .stats-header {
        font-size: 13px !important;
        padding: 10px !important;
    }
    
    .stats-table table {
        font-size: 11px;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 6px 4px;
        font-size: 11px;
    }
    
    .achievement-card {
        padding: 10px;
    }
    
    .achievement-icon {
        font-size: 24px;
    }
    
    .achievement-title {
        font-size: 14px;
    }
    
    .achievement-description {
        font-size: 11px;
    }
    
    .sos-button {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
        font-size: 12px;
    }
}

/* Layout Mobile */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Desktop com Menu Flutuante */
@media (min-width: 769px) {
    .mobile-bottom-menu {
        display: none !important;
    }
    
    .mobile-header {
        display: none !important;
    }
    
    .mobile-layout {
        display: none !important;
    }
    
    .sidebar {
        display: none !important;
    }
    
    .dashboard-layout {
        display: flex !important;
        flex-direction: column !important;
        position: static !important;
        z-index: auto !important;
    }
    
    .main-content {
        flex: 1 !important;
        padding: 20px !important;
        margin-bottom: 85px !important;
        position: static !important;
        z-index: auto !important;
    }
    
    .header {
        position: relative !important;
        z-index: 100 !important;
    }
    
    /* Menu Flutuante Desktop */
    .desktop-bottom-menu {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 25px;
        padding: 12px 16px;
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    
    .desktop-menu-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }
    
    .desktop-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666;
        transition: all 0.3s ease;
        padding: 10px 16px;
        border-radius: 14px;
        min-width: 64px;
        position: relative;
        background: transparent;
        border: none;
        box-sizing: border-box;
    }
    
    .desktop-menu-item:hover:not(.desktop-sos) {
        background: rgba(16, 185, 129, 0.08);
        color: #10b981;
        transform: translateY(-2px);
    }
    
    .desktop-menu-item.active {
        color: #10b981;
        background: rgba(16, 185, 129, 0.1);
        border: none;
        font-weight: 600;
    }
    
    .desktop-menu-item.desktop-sos {
        background: #dc2626;
        color: white;
        border-radius: 14px;
        padding: 10px 16px;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        border: none;
        min-width: 64px;
        position: relative;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .desktop-menu-item.desktop-sos::before {
        display: none;
    }
    
    .desktop-menu-item.desktop-sos:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }
    
    .desktop-menu-item.desktop-sos:hover::before {
        display: none;
    }
    
    .desktop-menu-icon {
        font-size: 20px;
        margin-bottom: 4px;
        transition: transform 0.3s ease;
    }
    
    .desktop-menu-item.active .desktop-menu-icon {
        transform: scale(1.1);
    }
    
    .desktop-menu-item.desktop-sos .desktop-menu-icon {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .desktop-menu-label {
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        line-height: 1.2;
    }
    
    .desktop-menu-item.desktop-sos .desktop-menu-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Container mobile */
    .container {
        padding: 0;
        max-width: 100%;
    }
    
    /* Header Mobile */
    .mobile-header {
        background: var(--white);
        padding: 15px 20px;
        box-shadow: 0 2px 10px var(--shadow);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .mobile-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-header-buttons-left,
    .mobile-header-buttons-right {
        width: 50px;
        display: flex;
        justify-content: center;
    }
    
    .mobile-header-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--light-green), rgba(254, 226, 226, 0.7));
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: 1px solid rgba(16, 185, 129, 0.2);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    }
    
    .mobile-header-btn:hover {
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    }
    
    .mobile-header-btn:hover .mobile-header-icon {
        filter: brightness(0) invert(1);
    }
    
    .mobile-header-icon {
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .mobile-profile-btn {
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.2);
        color: var(--primary-green);
    }
    
    .mobile-profile-btn:hover {
        background: rgba(16, 185, 129, 0.2);
        border-color: rgba(16, 185, 129, 0.3);
    }
    
    .mobile-logo {
        font-size: 28px;
        font-weight: 800;
        color: var(--primary-green);
        text-decoration: none;
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        flex: 1;
        text-align: center;
    }
    
    .mobile-logout-btn {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        color: white;
        padding: 8px 16px;
        border-radius: 12px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        border: none;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
        transition: all 0.3s ease;
    }
    
    .mobile-logout-btn:hover {
        background: linear-gradient(135deg, #b91c1c, #991b1b);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    }
    
    .mobile-header-progress {
        background: linear-gradient(135deg, var(--light-green), rgba(254, 226, 226, 0.7));
        border-top: 1px solid rgba(16, 185, 129, 0.2);
        padding: 12px 20px;
    }
    
    .mobile-header-objective {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-header-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-header-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-green);
        flex: 1;
        text-align: center;
    }
    
    .mobile-header-percentage {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary-green);
        background: rgba(16, 185, 129, 0.1);
        padding: 4px 8px;
        border-radius: 8px;
        min-width: 40px;
        text-align: center;
    }
    
    /* Layout Mobile */
    .mobile-layout {
        padding: 20px;
        padding-bottom: 85px; /* Espaço para menu inferior */
    }
    
    /* Próxima Conquista Mobile */
    .mobile-next-objective {
        background: linear-gradient(135deg, var(--white), var(--light-green));
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
        border: 2px solid rgba(16, 185, 129, 0.1);
    }
    
    .mobile-objective-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .mobile-objective-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-objective-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-green);
    }
    
    .mobile-objective-progress {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-progress-bar {
        flex: 1;
        height: 8px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 20px;
        overflow: hidden;
    }
    
    .mobile-progress-fill {
        height: 100%;
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        border-radius: 20px;
        transition: width 0.3s ease;
    }
    
    .mobile-objective-percentage {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-green);
        min-width: 35px;
    }
    
    /* Devocional Mobile */
    .mobile-devotional {
        background: var(--white);
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px var(--shadow);
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .mobile-devotional-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light-gray);
    }
    
    .mobile-devotional-header h3 {
        color: var(--dark-gray);
        font-size: 18px;
        margin: 0;
    }
    
    .mobile-devotional-meta {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-devotional-date {
        font-size: 12px;
        color: var(--gray);
        font-weight: 500;
    }
    
    .mobile-devotional-content {
        text-align: left;
    }
    
    .mobile-devotional-verse {
        margin-bottom: 15px;
    }
    
    .mobile-devotional-verse p {
        font-style: italic;
        font-size: 16px;
        color: var(--primary-green);
        margin-bottom: 5px;
        line-height: 1.5;
    }
    
    .mobile-devotional-verse cite {
        font-size: 14px;
        color: var(--gray);
        font-weight: 600;
    }
    
    .mobile-devotional-reflection h4 {
        color: var(--dark-gray);
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .mobile-devotional-reflection p {
        color: var(--gray);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Visão Geral Mobile */
    .mobile-overview {
        margin-bottom: 20px;
    }
    
    .mobile-section-title {
        color: var(--dark-gray);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
    }
    
    /* Métricas Mobile */
    .mobile-metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-metric-card {
        background: var(--white);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 15px var(--shadow);
        border: 1px solid rgba(16, 185, 129, 0.1);
        transition: transform 0.2s ease;
    }
    
    .mobile-metric-card:hover {
        transform: translateY(-2px);
    }
    
    .mobile-metric-value {
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 5px;
    }
    
    .mobile-metric-label {
        font-size: 12px;
        color: var(--gray);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    
    .mobile-metric-change {
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 10px;
        background: rgba(16, 185, 129, 0.1);
        color: #10B981;
        font-weight: 500;
    }
    
    /* Tabela Mobile */
    .mobile-stats {
        margin-bottom: 20px;
    }
    
    .mobile-stats-table {
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12);
        border: 2px solid rgba(16, 185, 129, 0.08);
        margin-bottom: 25px;
    }
    
    .mobile-stats-header {
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        color: var(--white);
        font-size: 18px;
        font-weight: 800;
        padding: 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-stats-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s infinite;
    }
    
    @keyframes shimmer {
        0% { left: -100%; }
        50% { left: 100%; }
        100% { left: 100%; }
    }
    
    .mobile-stats-table table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
    }
    
    .mobile-stats-table th {
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        padding: 16px 12px;
        font-size: 13px;
        font-weight: 700;
        color: var(--dark-gray);
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid rgba(16, 185, 129, 0.1);
        position: relative;
    }
    
    .mobile-stats-table th::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        border-radius: 1px;
    }
    
    .mobile-stat-icon {
        font-size: 18px;
        display: block;
        margin-bottom: 8px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    .mobile-stats-table td {
        padding: 25px 12px;
        text-align: center;
        font-weight: 900;
        font-size: 28px;
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        border-bottom: 1px solid rgba(16, 185, 129, 0.08);
        position: relative;
        transition: all 0.3s ease;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-stats-table td::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(16, 185, 129, 0.08));
        border-radius: 50%;
        z-index: -1;
        transition: all 0.3s ease;
        border: 1px solid rgba(16, 185, 129, 0.1);
    }
    
    .mobile-stats-table td::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(16, 185, 129, 0.05));
        border-radius: 50%;
        z-index: -1;
        transition: all 0.3s ease;
    }
    
    .mobile-stats-table tbody tr:hover td {
        transform: scale(1.05);
        background: linear-gradient(135deg, #ff6b6b, var(--primary-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .mobile-stats-table tbody tr:hover td::before {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.15));
        border: 2px solid rgba(16, 185, 129, 0.2);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    }
    
    .mobile-stats-table tbody tr:hover td::after {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.1));
    }
    
    .mobile-stats-table tbody tr:last-child td {
        border-bottom: none;
        padding-bottom: 25px;
    }

    /* Estatísticas Detalhadas Mobile */
    .mobile-detailed-stats {
        margin: 25px 0 30px 0;
        padding: 0 5px;
    }

    .mobile-detailed-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .mobile-detailed-stat-card {
        background: var(--white);
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid var(--light-gray);
        transition: all 0.3s ease;
    }

    .mobile-detailed-stat-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .mobile-detailed-stat-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--light-green), rgba(254, 226, 226, 0.7));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-detailed-stat-info {
        flex: 1;
        text-align: left;
    }

    .mobile-detailed-stat-title {
        font-size: 12px;
        color: var(--gray);
        font-weight: 500;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .mobile-detailed-stat-value {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-green);
        line-height: 1.1;
        margin-bottom: 2px;
    }

    .mobile-detailed-stat-subtitle {
        font-size: 10px;
        color: var(--light-gray);
        font-weight: 400;
        line-height: 1.2;
    }

    /* Seções Mobile com melhor espaçamento */
    .mobile-section {
        margin-bottom: 35px !important;
    }

    .mobile-section:last-child {
        margin-bottom: 100px !important;
    }

    /* Resumo Semanal Minimalista */
    .mobile-weekly-summary {
        margin: 25px 0 35px 0;
        padding: 0 5px;
    }

    .mobile-weekly-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-weekly-card {
        background: linear-gradient(135deg, var(--white) 0%, rgba(16, 185, 129, 0.02) 100%);
        border-radius: 16px;
        padding: 20px;
        border: 1px solid rgba(16, 185, 129, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .mobile-weekly-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-color: rgba(16, 185, 129, 0.2);
    }

    .mobile-weekly-metric {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .mobile-weekly-icon {
        font-size: 20px;
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-weekly-info {
        flex: 1;
    }

    .mobile-weekly-label {
        font-size: 14px;
        color: var(--gray);
        font-weight: 500;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .mobile-weekly-value {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-green);
        line-height: 1.1;
    }

    /* Responsividade para dispositivos pequenos */
    @media (max-width: 480px) {
        .mobile-stats-table {
            margin: 0 10px 25px 10px;
        }
        
        .mobile-stats-header {
            font-size: 16px;
            padding: 18px 15px;
        }
        
        .mobile-stats-table th {
            padding: 14px 8px;
            font-size: 11px;
        }
        
        .mobile-stat-icon {
            font-size: 16px;
            margin-bottom: 6px;
        }
        
        .mobile-stats-table td {
            padding: 22px 8px;
            font-size: 24px;
        }
        
        .mobile-stats-table td::before {
            width: 60px;
            height: 60px;
        }
        
        .mobile-stats-table td::after {
            width: 45px;
            height: 45px;
        }
        
        .mobile-stats-table tbody tr:hover td::before {
            width: 70px;
            height: 70px;
        }
        
        .mobile-stats-table tbody tr:hover td::after {
            width: 55px;
            height: 55px;
        }

        .mobile-detailed-stats {
            margin: 20px 0 25px 0;
            padding: 0 3px;
        }

        .mobile-detailed-stats-grid {
            gap: 15px;
        }

        .mobile-detailed-stat-card {
            padding: 14px;
            gap: 10px;
        }

        .mobile-detailed-stat-icon {
            font-size: 20px;
            width: 36px;
            height: 36px;
        }

        .mobile-detailed-stat-value {
            font-size: 18px;
        }

        .mobile-weekly-summary {
            margin: 20px 0 30px 0;
            padding: 0 3px;
        }

        .mobile-weekly-card {
            padding: 16px;
        }

        .mobile-weekly-icon {
            font-size: 18px;
            width: 32px;
            height: 32px;
        }

        .mobile-weekly-label {
            font-size: 13px;
        }

        .mobile-weekly-value {
            font-size: 16px;
        }
    }
    
    /* Responsividade para cards muito pequenos */
    @media (max-width: 360px) {
        .mobile-detailed-stats-grid {
            grid-template-columns: 1fr;
        }
        
        .mobile-detailed-stat-card {
            padding: 12px;
        }
        
        .mobile-detailed-stat-icon {
            font-size: 20px;
            width: 36px;
            height: 36px;
        }
        
        .mobile-detailed-stat-value {
            font-size: 18px;
        }
        
        .mobile-stats-table {
            margin: 0 5px 25px 5px;
        }
        
        .mobile-stats-header {
            font-size: 15px;
            padding: 16px 12px;
        }
        
        .mobile-stats-table th {
            padding: 12px 6px;
            font-size: 10px;
        }
        
        .mobile-stat-icon {
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .mobile-stats-table td {
            padding: 20px 6px;
            font-size: 22px;
        }
        
        .mobile-stats-table td::before {
            width: 55px;
            height: 55px;
        }
        
        .mobile-stats-table td::after {
            width: 40px;
            height: 40px;
        }

        .mobile-detailed-stats {
            margin: 18px 0 22px 0;
            padding: 0 2px;
        }

        .mobile-weekly-summary {
            margin: 18px 0 25px 0;
            padding: 0 2px;
        }

        .mobile-weekly-card {
            padding: 14px;
        }

        .mobile-weekly-icon {
            font-size: 16px;
            width: 30px;
            height: 30px;
        }

        .mobile-weekly-label {
            font-size: 12px;
        }

        .mobile-weekly-value {
            font-size: 15px;
        }
    }
    
    /* Botões Mobile */
    .mobile-btn {
        display: inline-block;
        padding: 12px 20px;
        border: none;
        border-radius: 15px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 15px;
    }
    
    .mobile-btn-primary {
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        color: var(--white);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
    
    .mobile-btn-danger {
        background: linear-gradient(135deg, #EF4444, #DC2626);
        color: var(--white);
    }
    
    .mobile-btn-secondary {
        background: var(--light-gray);
        color: var(--dark-gray);
    }
    
    /* Menu Inferior Mobile - Fixo e Melhorado */
    .mobile-bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
        backdrop-filter: blur(25px);
        border-top: 1px solid rgba(16, 185, 129, 0.12);
        padding: 8px 16px 12px;
        z-index: 1000;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12), 0 -2px 8px rgba(16, 185, 129, 0.08);
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
    
    /* Garantir espaço para o menu em todas as páginas mobile */
    .container {
        padding-bottom: 85px !important;
    }
    
    .main-content {
        padding-bottom: 85px !important;
    }
    
    .mobile-layout {
        padding-bottom: 85px !important;
    }
    
    /* Espaçamento específico para formulários e checklists */
    .checklist-container {
        padding-bottom: 85px !important;
    }
    
    .form-container {
        padding-bottom: 85px !important;
    }
    
    .mobile-menu-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 420px;
        margin: 0 auto;
        gap: 8px;
    }
    
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #6b7280;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 8px 6px;
        border-radius: 12px;
        min-width: 50px;
        position: relative;
        flex: 1;
        background: transparent;
        border: none;
        box-sizing: border-box;
        cursor: pointer;
    }
    
    .mobile-menu-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 14px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .mobile-menu-item.active {
        color: #10b981;
        font-weight: 600;
        transform: translateY(-2px);
    }
    
    .mobile-menu-item.active::before {
        opacity: 1;
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    }
    
    .mobile-menu-item.mobile-sos {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        border-radius: 12px;
        padding: 8px 6px;
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        border: none;
        position: relative;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        min-width: 50px;
        animation: sosGlow 2s ease-in-out infinite alternate;
    }
    
    @keyframes sosGlow {
        0% { box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4); }
        100% { box-shadow: 0 8px 28px rgba(220, 38, 38, 0.6); }
    }
    
    .mobile-menu-item.mobile-sos::before {
        display: none;
    }
    
    .mobile-menu-item.mobile-sos:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5);
    }
    
    .mobile-menu-item.mobile-sos:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    }
    
    .mobile-menu-icon {
        font-size: 18px;
        margin-bottom: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }
    
    .mobile-menu-item.active .mobile-menu-icon {
        transform: scale(1.1);
        filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
    }
    
    .mobile-menu-item:hover:not(.mobile-sos):not(.active) {
        color: #10b981;
        transform: translateY(-1px);
    }
    
    .mobile-menu-item:hover:not(.mobile-sos):not(.active)::before {
        opacity: 0.6;
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-item:hover:not(.mobile-sos):not(.active) .mobile-menu-icon {
        transform: scale(1.05);
    }
    
    .mobile-menu-item.mobile-sos .mobile-menu-icon {
        font-size: 18px;
        margin-bottom: 3px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-label {
        font-size: 9px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.2;
        margin-top: 1px;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-item.active .mobile-menu-label {
        opacity: 1;
        text-shadow: 0 1px 2px rgba(16, 185, 129, 0.2);
    }
    
    .mobile-menu-item.mobile-sos .mobile-menu-label {
        font-weight: 700;
        opacity: 1;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    /* Animação de toque/clique */
    .mobile-menu-item:active:not(.mobile-sos) {
        transform: scale(0.95);
    }
    
    /* Ajustes para telas muito pequenas */
    @media (max-width: 375px) {
        .mobile-menu-container {
            gap: 4px;
        }
        
        .mobile-menu-item {
            min-width: 46px;
            padding: 7px 5px;
        }
        
        .mobile-menu-icon {
            font-size: 16px;
        }
        
        .mobile-menu-label {
            font-size: 8px;
        }
    }
    
    @media (max-width: 320px) {
        .mobile-bottom-menu {
            padding: 6px 12px 10px;
        }
        
        .mobile-menu-item {
            min-width: 42px;
            padding: 6px 4px;
        }
        
        .mobile-menu-icon {
            font-size: 14px;
        }
        
        .mobile-menu-label {
            font-size: 7px;
            letter-spacing: 0.3px;
        }
    }
    
    /* Seções Mobile */
    .mobile-section {
        background: var(--white);
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px var(--shadow);
    }
    
    /* Devocional Completo Mobile */
    .mobile-devotional-full {
        background: var(--white);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 4px 20px var(--shadow);
    }
    
    .mobile-devotional-full h4 {
        color: var(--primary-green);
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* Ações Rápidas Mobile */
    .mobile-quick-actions {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 2px solid var(--light-gray);
    }
    
    .mobile-quick-actions h4 {
        color: var(--dark-gray);
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .mobile-actions-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .mobile-action-btn {
        padding: 12px 8px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    /* Conquistas Mobile - Layout Grid Compacto */
    .mobile-conquests-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mobile-conquest-card {
        background: var(--white);
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(16, 185, 129, 0.1);
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    
    .mobile-conquest-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-conquest-card.unlocked {
        background: linear-gradient(135deg, rgba(254, 226, 226, 0.3), var(--white));
        border: 1px solid var(--primary-green);
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    }
    
    .mobile-conquest-card.unlocked::before {
        opacity: 1;
    }
    
    .mobile-conquest-card.locked {
        opacity: 0.7;
        background: linear-gradient(135deg, rgba(156, 163, 175, 0.05), var(--white));
        border: 1px solid rgba(156, 163, 175, 0.2);
    }
    
    .mobile-conquest-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
        border-color: var(--primary-green);
    }
    
    .mobile-conquest-card.locked:hover {
        box-shadow: 0 6px 20px rgba(156, 163, 175, 0.15);
        border-color: rgba(156, 163, 175, 0.3);
    }
    
    .mobile-conquest-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(135deg, #10B981, #059669);
        color: var(--white);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        border: 2px solid var(--white);
        z-index: 2;
    }
    
    .mobile-conquest-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
    }
    
    .mobile-conquest-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--white);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        border: 2px solid var(--white);
        flex-shrink: 0;
    }
    
    .mobile-conquest-icon.locked {
        background: linear-gradient(135deg, #9CA3AF, #6B7280);
        box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3);
    }
    
    .mobile-conquest-info {
        flex: 1;
    }
    
    .mobile-conquest-info h4 {
        color: var(--primary-green);
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 4px 0;
        line-height: 1.2;
    }
    
    .mobile-conquest-card.locked .mobile-conquest-info h4 {
        color: #6B7280;
    }
    
    .mobile-conquest-info p {
        color: var(--gray);
        font-size: 13px;
        margin: 0;
        line-height: 1.3;
    }
    
    .mobile-conquest-progress {
        margin-top: 10px;
    }
    
    .mobile-conquest-requirements {
        font-size: 11px;
        color: var(--gray);
        line-height: 1.3;
        background: rgba(16, 185, 129, 0.05);
        padding: 6px 10px;
        border-radius: 8px;
        border: 1px solid rgba(16, 185, 129, 0.1);
        text-align: center;
        margin-top: 6px;
    }
    
    .mobile-conquest-card.locked .mobile-conquest-requirements {
        background: rgba(156, 163, 175, 0.05);
        border: 1px solid rgba(156, 163, 175, 0.1);
        color: #6B7280;
    }

    /* Responsividade extra para telas pequenas */
    @media (max-width: 480px) {
        .mobile-conquest-card {
            padding: 14px;
            border-radius: 12px;
        }
        
        .mobile-conquest-header {
            gap: 12px;
            margin-bottom: 10px;
        }
        
        .mobile-conquest-icon {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
        
        .mobile-conquest-info h4 {
            font-size: 15px;
        }
        
        .mobile-conquest-info p {
            font-size: 12px;
        }
        
        .mobile-conquest-requirements {
            font-size: 10px;
            padding: 5px 8px;
        }
        
        .mobile-conquest-badge {
            width: 22px;
            height: 22px;
            font-size: 11px;
            top: 8px;
            right: 8px;
        }
    }

    @media (max-width: 360px) {
        .mobile-conquest-card {
            padding: 12px;
        }
        
        .mobile-conquest-icon {
            width: 36px;
            height: 36px;
            font-size: 18px;
        }
        
        .mobile-conquest-info h4 {
            font-size: 14px;
        }
        
        .mobile-conquest-info p {
            font-size: 11px;
        }
        
        .mobile-conquest-requirements {
            font-size: 9px;
            padding: 4px 6px;
        }
    }
}

/* Alertas */
.alert {
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background: #D1FAE5;
    color: #047857;
    border-color: #10B981;
}

.alert-warning {
    background: #FEF3C7;
    color: #B45309;
    border-color: #F59E0B;
}

.alert-danger {
    background: var(--light-red);
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Login/Register */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--gray);
    font-size: 16px;
}

/* Botão SOS */
.sos-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-sos-float 2s infinite;
}

.sos-button:hover {
    background: linear-gradient(135deg, var(--dark-red), #7f1d1d);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
}

@keyframes pulse-sos-float {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
    }
}

@keyframes sos-pulse-desktop {
    0%, 100% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4), 
                    0 4px 15px rgba(255, 107, 107, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6),
                    0 6px 20px rgba(255, 107, 107, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes sos-pulse-mobile {
    0%, 100% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4),
                    0 2px 10px rgba(255, 107, 107, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6),
                    0 3px 15px rgba(255, 107, 107, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes sos-shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Estatísticas Detalhadas Desktop */
@media (min-width: 769px) {
    .desktop-detailed-stats {
        margin-top: 20px;
    }

    .desktop-detailed-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .desktop-detailed-stat-card {
        background: var(--white);
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 15px;
        border: 1px solid var(--light-gray);
        transition: all 0.3s ease;
    }

    .desktop-detailed-stat-card:hover {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.12);
        transform: translateY(-3px);
        border-color: rgba(16, 185, 129, 0.2);
    }

    .desktop-detailed-stat-icon {
        font-size: 32px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--light-green), rgba(254, 226, 226, 0.7));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 1px solid rgba(16, 185, 129, 0.1);
    }

    .desktop-detailed-stat-info {
        flex: 1;
        text-align: left;
    }

    .desktop-detailed-stat-title {
        font-size: 14px;
        color: var(--gray);
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .desktop-detailed-stat-value {
        font-size: 28px;
        font-weight: 800;
        color: var(--primary-green);
        line-height: 1.1;
        margin-bottom: 3px;
    }

    .desktop-detailed-stat-subtitle {
        font-size: 12px;
        color: var(--gray);
        font-weight: 500;
        line-height: 1.2;
    }
}

/* Responsividade para as estatísticas desktop */
@media (min-width: 769px) and (max-width: 1200px) {
    .desktop-detailed-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .desktop-detailed-stat-card {
        padding: 16px;
    }
    
    .desktop-detailed-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .desktop-detailed-stat-value {
        font-size: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .desktop-detailed-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-detailed-stats {
        display: none !important;
    }
}

/* Ocultar o botão SOS flutuante no desktop */
@media (min-width: 769px) {
    .sos-button {
        display: none !important;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .next-objective {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }
    
    .objective-info {
        text-align: center;
    }
    
    .objective-progress {
        justify-content: center;
    }
    
    .nav-links {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .sos-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    }
    
    .sos-button:hover {
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
    }
}

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

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

/* Utilitários */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
} 

@media (max-width: 768px) {
    .devocional-parabens {
        margin-bottom: 18px !important;
    }
}

@media (max-width: 768px) {
    .devocional-parabens {
        display: flex;
        align-items: center;
        gap: 14px;
        background: linear-gradient(120deg, #d1fae5 0%, #f0fdf4 100%);
        border: 2px solid #10b981;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(16, 185, 129, 0.10), 0 1.5px 8px rgba(16, 185, 129, 0.08);
        padding: 18px 16px;
        margin-bottom: 22px !important;
        animation: parabensShine 2.5s linear infinite;
        position: relative;
        overflow: hidden;
    }
    .parabens-icone {
        font-size: 2.2rem;
        filter: drop-shadow(0 2px 6px #10b98133);
        animation: parabensBounce 1.2s infinite alternate;
        flex-shrink: 0;
    }
    .parabens-conteudo {
        flex: 1;
    }
    .parabens-titulo {
        font-size: 1.1rem;
        font-weight: 700;
        color: #059669;
        margin-bottom: 4px;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 0 #fff;
    }
    .parabens-mensagem {
        font-size: 0.98rem;
        color: #065f46;
        font-weight: 500;
        line-height: 1.4;
    }
    @keyframes parabensBounce {
        0% { transform: scale(1) rotate(-6deg);}
        100% { transform: scale(1.13) rotate(6deg);}
    }
    @keyframes parabensShine {
        0% { box-shadow: 0 4px 24px #10b98122, 0 1.5px 8px #10b98114; }
        50% { box-shadow: 0 8px 32px #10b98133, 0 2.5px 12px #10b98122; }
        100% { box-shadow: 0 4px 24px #10b98122, 0 1.5px 8px #10b98114; }
    }
}

@media (max-width: 768px) {
    .devocional-parabens {
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(90deg, #e0f7ef 60%, #f0fdf4 100%);
        border: 1.5px solid #10b981;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(16,185,129,0.07);
        padding: 8px 14px;
        margin-bottom: 16px !important;
        font-size: 1rem;
        color: #065f46;
        font-weight: 500;
        min-height: 38px;
        animation: parabensFadeIn 0.7s;
    }
    .parabens-icone {
        font-size: 1.4em;
        animation: parabensPulse 1.2s infinite alternate;
        filter: drop-shadow(0 1px 2px #10b98133);
        flex-shrink: 0;
        margin-right: 2px;
    }
    @keyframes parabensPulse {
        0% { transform: scale(1) rotate(-5deg);}
        100% { transform: scale(1.18) rotate(5deg);}
    }
    @keyframes parabensFadeIn {
        from { opacity: 0; transform: translateY(-10px);}
        to { opacity: 1; transform: translateY(0);}
    }
}

@media (min-width: 769px) {
    .devocional-parabens {
        display: flex;
        align-items: center;
        gap: 18px;
        background: linear-gradient(90deg, #e0f7ef 60%, #f0fdf4 100%);
        border: 2px solid #10b981;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(16,185,129,0.10), 0 1.5px 8px rgba(16,185,129,0.08);
        padding: 14px 28px;
        margin-bottom: 28px;
        font-size: 1.08rem;
        color: #065f46;
        font-weight: 500;
        min-height: 48px;
        animation: parabensFadeInDesktop 0.7s;
        position: relative;
        overflow: hidden;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .devocional-parabens .parabens-icone {
        font-size: 2.1rem;
        animation: parabensPulseDesktop 1.2s infinite alternate;
        filter: drop-shadow(0 2px 6px #10b98133);
        flex-shrink: 0;
        margin-right: 2px;
    }
    @keyframes parabensPulseDesktop {
        0% { transform: scale(1) rotate(-5deg);}
        100% { transform: scale(1.13) rotate(5deg);}
    }
    @keyframes parabensFadeInDesktop {
        from { opacity: 0; transform: translateY(-10px);}
        to { opacity: 1; transform: translateY(0);}
    }
}