/* Progress Bar para Rituais */
.ritual-progress {
    margin: 2em 0;
    padding: 1.5em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ritual-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75em;
    color: white;
    font-weight: 500;
}

.ritual-progress-label {
    font-size: 0.9em;
    opacity: 0.95;
}

.ritual-progress-percentage {
    font-size: 1.1em;
    font-weight: 700;
}

.ritual-progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.ritual-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd89b 0%, #19547b 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .ritual-progress {
        padding: 1em;
    }
    
    .ritual-progress-header {
        flex-direction: column;
        gap: 0.5em;
        align-items: flex-start;
    }
}

/* Seção de Parabéns e Maturidade */
.ritual-celebration {
    margin: 3em 0 2em 0;
    padding: 2.5em;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 50%, #2ecc71 100%);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 3px solid #f1c40f;
}

.ritual-celebration-header {
    text-align: center;
    margin-bottom: 1.5em;
}

.ritual-celebration-title {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.ritual-celebration-subtitle {
    font-size: 1.1em;
    color: #34495e;
    font-weight: 500;
}

.ritual-celebration-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2em;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ritual-celebration-section-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.ritual-celebration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ritual-celebration-list li {
    padding: 0.75em 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: flex-start;
    gap: 0.75em;
}

.ritual-celebration-list li:last-child {
    border-bottom: none;
}

.ritual-celebration-icon {
    font-size: 1.3em;
    flex-shrink: 0;
    margin-top: 0.1em;
}

.ritual-celebration-text {
    flex: 1;
}

.ritual-celebration-label {
    font-weight: 600;
    color: #2c3e50;
}

.ritual-celebration-description {
    color: #7f8c8d;
    font-size: 0.95em;
    margin-top: 0.25em;
}

.ritual-celebration-footer {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 2px solid #f1c40f;
    text-align: center;
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1em;
}

/* Responsividade para Celebration */
@media (max-width: 768px) {
    .ritual-celebration {
        padding: 1.5em;
    }
    
    .ritual-celebration-title {
        font-size: 1.5em;
    }
    
    .ritual-celebration-content {
        padding: 1.25em;
    }
}

/* Assinatura de Benefícios - Header Verde com Folhas */
.benefits-header {
    position: relative;
    display: inline-block;
    margin: 0.5em 0 0.75em 0;
    padding: 0.75em 2em 0.75em 1.5em;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    overflow: visible;
}

/* Decoração de folha no canto superior direito */
.benefits-header::before {
    content: "🌿";
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.8em;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

/* Decoração de folha no canto inferior esquerdo */
.benefits-header::after {
    content: "🍃";
    position: absolute;
    bottom: -8px;
    left: -8px;
    font-size: 1.8em;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsividade para Benefits Header */
@media (max-width: 768px) {
    .benefits-header {
        font-size: 1.2em;
        padding: 0.6em 1.5em 0.6em 1.2em;
    }
    
    .benefits-header::before,
    .benefits-header::after {
        font-size: 1.4em;
    }
}
