/* =============================================================================
   T-FIT 2.0 — STUDENT DASHBOARD DESIGN SYSTEM (FIDELIDADE 1:1 À REFERÊNCIA)
   ============================================================================= */

.tfit-dashboard-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #03070B;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(112, 0, 255, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 100% 40%, rgba(0, 240, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 0% 80%, rgba(112, 0, 255, 0.08) 0%, transparent 50%);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #FFFFFF;
    box-sizing: border-box;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: calc(90px + max(16px, env(safe-area-inset-bottom)));
    overflow-x: hidden;
}

.tfit-dashboard-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Ocultar o header global antigo (.mobile-header) APENAS quando a Dashboard do Aluno estiver ativa */
.dashboard-wrapper:has(.tfit-dashboard-wrapper) > .mobile-header,
body:has(.tfit-dashboard-wrapper) .mobile-header,
body.is-student-dashboard .mobile-header {
    display: none !important;
}

/* -----------------------------------------------------------------------------
   1. HEADER
   ----------------------------------------------------------------------------- */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 8px;
    width: 100%;
}

.dash-menu-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    padding: 0;
}

.dash-menu-btn:active {
    transform: scale(0.92);
    background: rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
}

.dash-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
}

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

.dash-streak-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
}

.dash-notify-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.dash-notify-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00F0FF;
    box-shadow: 0 0 8px #00F0FF;
}

.dash-avatar-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #00F0FF;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    overflow: hidden;
    cursor: pointer;
    background: #0A121E;
}

.dash-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------------------------------------------
   2. GREETING
   ----------------------------------------------------------------------------- */
.dash-greeting-sec {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.dash-greeting-sub {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #00F0FF;
    text-transform: uppercase;
}

.dash-greeting-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

/* -----------------------------------------------------------------------------
   COMMON CARD GLASS DESIGN
   ----------------------------------------------------------------------------- */
.dash-card {
    background: rgba(10, 18, 30, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 16px;
    box-sizing: border-box;
    transition: transform 0.15s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dash-card:active {
    transform: scale(0.985);
}

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

.dash-card-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-icon-circle-sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00F0FF;
    font-size: 12px;
}

.dash-card-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.dash-chevron-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
}

/* -----------------------------------------------------------------------------
   3. DAILY ACTIVITY CARD (LARGE CARD)
   ----------------------------------------------------------------------------- */
.dash-activity-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: center;
}

.dash-steps-ring-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dash-ring-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.dash-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.dash-ring-fill {
    fill: none;
    stroke: #00F0FF;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 70;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6));
    transition: stroke-dashoffset 0.8s ease;
}

.dash-ring-center-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dash-ring-icon {
    font-size: 16px;
    margin-bottom: 2px;
}

.dash-ring-val {
    font-size: 18px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
}

.dash-ring-lbl {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.dash-ring-meta-sub {
    font-size: 11px;
    font-weight: 700;
    color: #00F0FF;
    margin-top: 6px;
}

/* Right Side Metrics */
.dash-metrics-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-metric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dash-metric-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-metric-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.dash-metric-texts {
    display: flex;
    flex-direction: column;
}

.dash-metric-label {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dash-metric-val {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
}

.dash-metric-val span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
}

.dash-sparkline-svg {
    width: 70px;
    height: 24px;
    overflow: visible;
}

/* -----------------------------------------------------------------------------
   4. MIDDLE ROW (TREINO DO DIA & THAYS IA)
   ----------------------------------------------------------------------------- */
.dash-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Treino do Dia Card */
.dash-workout-card {
    border-color: rgba(0, 240, 255, 0.2);
}

.dash-workout-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dash-workout-name {
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
}

.dash-workout-time {
    font-size: 10px;
    font-weight: 700;
    color: #00F0FF;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dash-exercise-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.dash-exercise-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 6px;
}

.dash-exercise-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    background: #111D2D;
    flex-shrink: 0;
}

.dash-exercise-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dash-exercise-title {
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-exercise-meta {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.dash-btn-workout-cta {
    width: 100%;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    padding: 8px;
    font-size: 10px;
    font-weight: 800;
    color: #00F0FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    letter-spacing: 0.5px;
}

/* Thays IA Card */
.dash-thays-card {
    background: linear-gradient(160deg, rgba(30, 15, 60, 0.85) 0%, rgba(10, 18, 30, 0.85) 100%);
    border-color: rgba(112, 0, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dash-thays-avatar-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 6px 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-thays-avatar-box .tfit-hub-btn {
    position: relative;
    pointer-events: none;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.dash-thays-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.5);
}

.dash-thays-sub {
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.dash-thays-desc {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    margin-bottom: 12px;
}

.dash-btn-thays-cta {
    width: 100%;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.4) 0%, rgba(0, 240, 255, 0.2) 100%);
    border: 1px solid rgba(112, 0, 255, 0.5);
    border-radius: 12px;
    padding: 8px;
    font-size: 10px;
    font-weight: 800;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 12px rgba(112, 0, 255, 0.3);
}

/* -----------------------------------------------------------------------------
   5. QUICK ACTION CARDS (3 COLUMNS)
   ----------------------------------------------------------------------------- */
.dash-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dash-quick-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    padding: 10px;
}

.dash-quick-title {
    font-size: 10px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.dash-quick-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.dash-quick-icon {
    font-size: 20px;
}

.dash-circle-arrow-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* -----------------------------------------------------------------------------
   6. LOWER ROW (WAZE FITNESS & ÁREA DA ASSINATURA)
   ----------------------------------------------------------------------------- */
.dash-grid-lower {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
}

.dash-waze-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90px;
    padding: 10px;
}

.dash-sub-card {
    background: linear-gradient(135deg, rgba(30, 15, 60, 0.7) 0%, rgba(10, 18, 30, 0.85) 100%);
    border-color: rgba(112, 0, 255, 0.3);
    height: 90px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(112, 0, 255, 0.2);
    border: 1px solid rgba(112, 0, 255, 0.4);
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 800;
    color: #a855f7;
    width: fit-content;
}

/* -----------------------------------------------------------------------------
   7. FIXED BOTTOM NAVIGATION WITH ELEVATED THAYS ORB
   ----------------------------------------------------------------------------- */
.dash-bottom-nav-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.dash-bottom-nav-bar {
    width: calc(100% - 24px);
    max-width: 440px;
    background: rgba(10, 18, 30, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 28px;
    margin-bottom: max(10px, env(safe-area-inset-bottom));
    padding: 6px 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
}

.dash-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 700;
    transition: color 0.2s ease;
    cursor: pointer;
}

.dash-nav-link.active {
    color: #00F0FF;
}

.dash-nav-icon {
    font-size: 18px;
}

.dash-thays-center-orb {
    position: relative;
    top: -14px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7000FF 0%, #00F0FF 100%);
    box-shadow: 0 0 18px rgba(112, 0, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #03070B;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-thays-center-orb:active {
    transform: scale(0.92) translateY(-14px);
}

.dash-thays-center-orb img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

/* Manter a Bottom Nav global original do T-FIT com a Esfera Animada */
.bottom-nav {
    display: flex !important;
}

/* =============================================================================
   T-FIT 2.0 — TELA ATIVIDADE DIÁRIA PREMIUM (FIDELIDADE 1:1 À IMAGEM 3)
   ============================================================================= */
.tfit-activity-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #03070B;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(112, 0, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 100% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 0% 70%, rgba(112, 0, 255, 0.08) 0%, transparent 50%);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #FFFFFF;
    box-sizing: border-box;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: calc(90px + max(16px, env(safe-area-inset-bottom)));
    overflow-x: hidden;
}

.tfit-activity-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header da Atividade */
.act-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 8px;
    width: 100%;
}

.act-back-btn, .act-cal-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.act-back-btn:active, .act-cal-btn:active {
    transform: scale(0.92);
    background: rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
}

.act-header-title {
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.3px;
}

/* Hero Card (Passos Hoje) */
.act-hero-card {
    background: rgba(14, 18, 27, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.act-hero-ring-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.act-hero-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.act-hero-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.act-hero-ring-fill {
    fill: none;
    stroke: #00F0FF;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.8s ease-in-out;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.act-hero-ring-center {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
}

.act-hero-shoe-icon {
    font-size: 22px;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

.act-hero-val {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.5px;
}

.act-hero-lbl {
    font-size: 10px;
    font-weight: 800;
    color: #00F0FF;
    letter-spacing: 1.5px;
}

.act-hero-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.act-hero-subtitle b {
    color: #00F0FF;
    font-weight: 800;
}

/* Grid de Métricas 2x2 */
.act-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.act-metric-card {
    background: rgba(14, 18, 27, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-height: 100px;
}

.act-metric-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.act-metric-icon {
    font-size: 16px;
}

.act-metric-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.act-metric-val {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
}

.act-metric-val span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.act-metric-sparkline {
    width: 100%;
    height: 24px;
}

/* Tabs */
.act-tabs {
    display: flex;
    background: rgba(14, 18, 27, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 4px;
    gap: 4px;
}

.act-tab-btn {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.act-tab-btn.active {
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
}

/* Gráfico por Hora */
.act-chart-card {
    background: rgba(14, 18, 27, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.act-chart-title {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.act-bars-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding-top: 10px;
    gap: 6px;
}

.act-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 6px;
}

.act-bar-fill {
    width: 100%;
    max-width: 14px;
    background: linear-gradient(180deg, #00F0FF 0%, rgba(0, 240, 255, 0.2) 100%);
    border-radius: 6px 6px 2px 2px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    transition: height 0.5s ease;
    min-height: 4px;
}

.act-bar-lbl {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

/* Card de Meta Diária */
.act-goal-card {
    background: rgba(14, 18, 27, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.act-goal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.act-goal-title {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.act-goal-edit-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: #00F0FF;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.act-goal-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.act-goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7000FF 0%, #00F0FF 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.act-goal-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.act-goal-desc b {
    color: #00F0FF;
}

/* Card de Caminhada Ao Vivo */
.act-walk-card {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2) 0%, rgba(0, 240, 255, 0.1) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.act-walk-card:active {
    transform: scale(0.98);
}

.act-walk-text {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
}

.act-walk-text small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #00F0FF;
    margin-top: 2px;
}

.act-walk-arrow {
    font-size: 20px;
    color: #00F0FF;
    font-weight: 800;
}

/* Botão Conectar Saúde */
.act-connect-cta {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    background: linear-gradient(135deg, #7000FF 0%, #00F0FF 100%);
    border: none;
    border-radius: 16px;
    padding: 14px;
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.act-connect-cta:active {
    transform: scale(0.98);
}


